scut 0.7.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/dist/_scut.scss +10 -1
  3. data/lib/scut.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 89ad484b4586156d1895a2a56ac1a81422f587e2
4
- data.tar.gz: ad230a5c6db948f0ec3c2b3ed9cc8236e9178cc4
3
+ metadata.gz: a2446663014fd2384fb27bca2543db7515aa02b9
4
+ data.tar.gz: c82d40e2478cc13b5462298ed941ac29ece61a4e
5
5
  SHA512:
6
- metadata.gz: 309407020ce4d0053f411bc9bc3b8cee8b9b7ab21a007f58e73579ee3f00c978309b746493bf9ad6b8426bd825599e0ef955ace16000184e367866c36b8a7339
7
- data.tar.gz: 44a4ed55aaa60e2acc10624d358b550c424797b0f6f112a1c4d2604b9132ffb7538a1fd7e94af6887bff415fa00e0bc50e7048b6a0720d69bfe0658aa573f4c0
6
+ metadata.gz: 3a9e54ca31669dfa05159a156cff2a95f21961ec36beba070e0c173a91c05ac7c4adf7b64a0016b4516ec6f2490dd115d157f5fd52ae0161443e8a1edeb2159a
7
+ data.tar.gz: b5e20e5952b00044b731c16e6021f0462c68d6c515762388013d8b362c72d623f770e5ecd260c047d0313e737c5e12757184a43df38f6c009189f79fac7d4da2
data/dist/_scut.scss CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * Scut, a collection of Sass utilities to ease and improve our implementations of common style-code patterns.
3
- * v0.7.0
3
+ * v0.7.1
4
4
  * Docs at http://davidtheclark.github.io/scut
5
5
  */
6
6
 
@@ -1226,6 +1226,15 @@ $scut-em-base: 16 !default;
1226
1226
  @include scut-vcenter-td;
1227
1227
  }
1228
1228
 
1229
+ @mixin scut-vcenter-tt() {
1230
+ @include scut-center-transform(y);
1231
+ }
1232
+
1233
+ %scut-vcenter-tt {
1234
+ @include scut-vcenter-tt;
1235
+ }
1236
+
1237
+
1229
1238
  // SCUT V-CENTER: TRANSFORM
1230
1239
  // http://davidtheclark.github.io/scut/#v-center_transform
1231
1240
 
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 = "0.7.0"
8
+ VERSION = "0.7.1"
9
9
  DATE = "2013-12-08"
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Clark