scut 1.2.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/dist/_scut.scss +15 -1
  3. data/lib/scut.rb +2 -2
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bd0bebc2e41acf8e1f0fbf7c5814131b35915854
4
- data.tar.gz: 10c08c4c7baf29a6817e77cac5322db8ad9b3a18
3
+ metadata.gz: 62f4b54247d8d410f5938dfbd82db0828ff08d15
4
+ data.tar.gz: 624919743ec9d67ffd9507e7d74db4dfac8873f5
5
5
  SHA512:
6
- metadata.gz: 0cd5d5cd086e426a0f4b16a438630c402d5e9e27407fc26a4f54fa4cbc8be44399c7c45f405551795ef624e1654603524273e276408117e1ff2a5d925d5b0cbe
7
- data.tar.gz: 5ec9f9b62f741c37cbb09e9e2c3e446a092752303f57cb79ae1013db8226ac5b9afa7e756e70805a90fe0a7d338df79d677dec78496f31f27d41ee11ce3a431a
6
+ metadata.gz: 06222fb90bc36692c8152f178529c00f488bdd1cf7a3c338e1d695447a4e03c64178c904e79e09c7546a09359c10c57e05a754c9c6ec18721cf1feb15df469af
7
+ data.tar.gz: 10168d86943402c0e1e4996f835f689bbeaf51ef67944c5569b73a00ad4dc41cf0ea45974a0bbb3036bc8a5e89a9e987769f087daa01b2160c09de58e86671f4
data/dist/_scut.scss CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  * Scut, a collection of Sass utilities
3
3
  * to ease and improve our implementations of common style-code patterns.
4
- * v1.2.1
4
+ * v1.3.0
5
5
  * Docs at http://davidtheclark.github.io/scut
6
6
  */
7
7
 
@@ -1419,6 +1419,20 @@ $scut-swhitesquare: "\25ab";
1419
1419
  %scut-link-bb {
1420
1420
  @include scut-link-bb;
1421
1421
  }
1422
+ // SCUT LINK UNSTYLED
1423
+ // http://davidtheclark.github.io/scut/#link-unstyled
1424
+
1425
+ @mixin scut-link-unstyled() {
1426
+
1427
+ text-decoration: none;
1428
+ color: inherit;
1429
+
1430
+ }
1431
+
1432
+ %scut-link-unstyled {
1433
+ @include scut-link-unstyled();
1434
+ }
1435
+
1422
1436
  @mixin scut-reverse-italics (
1423
1437
  $elements: null
1424
1438
  ) {
data/lib/scut.rb CHANGED
@@ -5,6 +5,6 @@ stylesheets_dir = File.join(base_directory, 'dist')
5
5
  Compass::Frameworks.register('Scut', :stylesheets_directory => stylesheets_dir)
6
6
 
7
7
  module Scut
8
- VERSION = "1.2.1"
9
- DATE = "2015-07-30"
8
+ VERSION = "1.3.0"
9
+ DATE = "2015-10-31"
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scut
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Clark
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-30 00:00:00.000000000 Z
11
+ date: 2015-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
61
  version: '0'
62
62
  requirements: []
63
63
  rubyforge_project: scut
64
- rubygems_version: 2.4.5
64
+ rubygems_version: 2.4.5.1
65
65
  signing_key:
66
66
  specification_version: 4
67
67
  summary: Sass utilities for the frontend laborer.