semantic-ui-sass 0.12.0.0 → 0.12.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eabd932f7975fc97862e1cc6022a0d37ac1495b5
4
- data.tar.gz: b35cacc8df7eb6470d30f2ddd5016725f08953b7
3
+ metadata.gz: 6a3c534d74773621ef3dd07ed54debb9e8187c90
4
+ data.tar.gz: 4efc5e9569e00e480cf763423d24149c7dc2ae16
5
5
  SHA512:
6
- metadata.gz: 3521dda09ac0074e78edeb25cf8c8d4438fa2fc31fdf9717a2b76669063b2e0877b310ea4f42449cbc197cd27481d5afa4e6991f745799995a3a2631a1ece5ab
7
- data.tar.gz: 590638915066fcf616a418305e485c001a2e3032a8adc862f4bb3686dffb1eb70d2a4bc8b63fba21e16054f6f8c1f6aa86189dfd595748b10db51a6280c560c1
6
+ metadata.gz: 824f2fc59c4e2333b8685b3354f75876df264e3d917b21a1a1ba18713988a056f9bb0800ec0553c065267c350f57ce98680f6fb1ee7b6ba11b94e6674cbea40f
7
+ data.tar.gz: a5f0a22def897f4c9a0df8202e27293c77e534af045678ba89dd370c09d1ce71b5b31de19c6b043a91f770d6cedc0ed2baf24cd0105039037bcd26b552202e2c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.12.1.0
2
+
3
+ * Update Semantic UI to 0.12.1
4
+
1
5
  ## 0.12.0.0
2
6
 
3
7
  * Update Semantic UI to 0.12.0
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # Semantic UI for Sass
2
2
 
3
- `semantic-ui-sass` is an Sass-powered version of [Semantic UI](https://github.com/jlukic/Semantic-UI) and ready to drop into Rails & Compass.
3
+ `semantic-ui-sass` is an Sass-powered version of [Semantic UI](https://github.com/Semantic-Org/Semantic-UI) and ready to drop into Rails & Compass.
4
4
 
5
5
  ## Installation and Usage
6
6
 
7
7
  ```ruby
8
- gem 'semantic-ui-sass', '~> 0.12.0.0'
8
+ gem 'semantic-ui-sass', '~> 0.12.1.0'
9
9
  ```
10
10
  or
11
11
 
@@ -148,6 +148,7 @@ $.fn.transition = function() {
148
148
 
149
149
  reset: function() {
150
150
  module.debug('Resetting animation to beginning conditions');
151
+ $module.off(animationEnd);
151
152
  module.restore.conditions();
152
153
  module.hide();
153
154
  module.remove.animating();
@@ -159,6 +160,7 @@ $.fn.transition = function() {
159
160
  $module
160
161
  .one(animationEnd, function() {
161
162
  instance.queuing = false;
163
+ module.repaint();
162
164
  module.animate.apply(this, settings);
163
165
  })
164
166
  ;
@@ -759,7 +761,7 @@ $.fn.transition.settings = {
759
761
  name : 'Transition',
760
762
 
761
763
  // debug content outputted to console
762
- debug : false,
764
+ debug : true,
763
765
 
764
766
  // verbose debug output
765
767
  verbose : true,
@@ -808,4 +810,4 @@ $.fn.transition.settings = {
808
810
  };
809
811
 
810
812
 
811
- })( jQuery, window , document );
813
+ })( jQuery, window , document );
@@ -79,22 +79,22 @@
79
79
  /* Text Color */
80
80
 
81
81
  .ui.menu .item,
82
- .ui.menu .item > a {
82
+ .ui.menu .item > a:not(.button) {
83
83
  color: rgba(0, 0, 0, 0.75);
84
84
  }
85
85
 
86
86
  .ui.menu .item .item,
87
- .ui.menu .item .item > a {
87
+ .ui.menu .item .item > a:not(.button) {
88
88
  color: rgba(30, 30, 30, 0.7);
89
89
  }
90
90
 
91
91
  .ui.menu .item .item .item,
92
- .ui.menu .item .item .item > a {
92
+ .ui.menu .item .item .item > a:not(.button) {
93
93
  color: rgba(30, 30, 30, 0.6);
94
94
  }
95
95
 
96
96
  .ui.menu .dropdown.item .menu .item,
97
- .ui.menu .dropdown.item .menu .item a {
97
+ .ui.menu .dropdown.item .menu .item a:not(.button) {
98
98
  color: rgba(0, 0, 0, 0.75);
99
99
  }
100
100
 
@@ -107,14 +107,14 @@
107
107
  color: rgba(0, 0, 0, 0.85);
108
108
  }
109
109
 
110
- .ui.menu .dropdown.item .menu .item a:hover {
110
+ .ui.menu .dropdown.item .menu .item a:not(.button):hover {
111
111
  color: rgba(0, 0, 0, 0.85);
112
112
  }
113
113
 
114
114
  /* Active */
115
115
 
116
116
  .ui.menu .active.item,
117
- .ui.menu .active.item a {
117
+ .ui.menu .active.item a:not(.button) {
118
118
  color: rgba(0, 0, 0, 0.85);
119
119
  border-radius: 0px;
120
120
  }
@@ -206,8 +206,6 @@
206
206
  padding-bottom: 0.55em;
207
207
  padding-top: 0.55em;
208
208
  font-size: 0.875em;
209
- -webkit-box-shadow: none;
210
- box-shadow: none;
211
209
  }
212
210
 
213
211
  /*--------------
@@ -215,11 +213,12 @@
215
213
  ---------------*/
216
214
 
217
215
  .ui.menu:not(.vertical) .item > .input {
218
- margin-top: -0.83em;
219
- margin-bottom: -0.83em;
216
+ margin-top: -0.85em;
217
+ margin-bottom: -0.85em;
220
218
  padding-top: 0.3em;
221
219
  padding-bottom: 0.3em;
222
220
  width: 100%;
221
+ vertical-align: top;
223
222
  }
224
223
 
225
224
  .ui.menu .item > .input input {
@@ -237,6 +236,39 @@
237
236
  padding-top: 0.63em;
238
237
  }
239
238
 
239
+ /* Action Input */
240
+
241
+ .ui.menu:not(.vertical) .item > .button.labeled > .icon {
242
+ padding-top: 0.6em;
243
+ }
244
+
245
+ .ui.menu:not(.vertical) .item .action.input > .button {
246
+ font-size: 0.8em;
247
+ padding: 0.55em 0.8em;
248
+ }
249
+
250
+ /* Resizes */
251
+
252
+ .ui.small.menu:not(.vertical) .item > .input input {
253
+ padding-top: 0.4em;
254
+ padding-bottom: 0.4em;
255
+ }
256
+
257
+ .ui.large.menu:not(.vertical) .item > .input input {
258
+ top: -0.125em;
259
+ padding-bottom: 0.6em;
260
+ padding-top: 0.6em;
261
+ }
262
+
263
+ .ui.large.menu:not(.vertical) .item .action.input > .button {
264
+ font-size: 0.8em;
265
+ padding: 0.9em;
266
+ }
267
+
268
+ .ui.large.menu:not(.vertical) .item .action.input > .button > .icon {
269
+ padding-top: 0.8em;
270
+ }
271
+
240
272
  /*--------------
241
273
  Header
242
274
  ---------------*/
@@ -1700,11 +1732,6 @@
1700
1732
  font-size: 0.875rem;
1701
1733
  }
1702
1734
 
1703
- .ui.small.menu:not(.vertical) .item > .input input {
1704
- padding-top: 0.4em;
1705
- padding-bottom: 0.4em;
1706
- }
1707
-
1708
1735
  .ui.small.vertical.menu {
1709
1736
  width: 13rem;
1710
1737
  }
@@ -1725,12 +1752,6 @@
1725
1752
  font-size: 0.875rem;
1726
1753
  }
1727
1754
 
1728
- .ui.large.menu:not(.vertical) .item > .input input {
1729
- top: -0.125em;
1730
- padding-bottom: 0.6em;
1731
- padding-top: 0.6em;
1732
- }
1733
-
1734
1755
  .ui.large.menu .dropdown.item .item {
1735
1756
  font-size: 1rem;
1736
1757
  }
@@ -188,7 +188,7 @@
188
188
  width: 100%;
189
189
  }
190
190
 
191
- .ui.icon.message > .icon {
191
+ .ui.icon.message > .icon:not(.close) {
192
192
  display: table-cell;
193
193
  vertical-align: middle;
194
194
  font-size: 3.8em;
@@ -47,7 +47,6 @@
47
47
 
48
48
  /* Dimmer Content */
49
49
 
50
- ;
51
50
  .ui.dimmer > .content {
52
51
  width: 100%;
53
52
  height: 100%;
@@ -1,8 +1,8 @@
1
1
  module Semantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = "0.12.0.0"
5
- SEMANTIC_UI_SHA = 'd4660e0cd926fd6f6db5003ab4794fa51ddd8d24'
4
+ VERSION = "0.12.1.0"
5
+ SEMANTIC_UI_SHA = '1b2ec2512da03a6a63d9a2a70b1c273a793e1143'
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semantic-ui-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0.0
4
+ version: 0.12.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - doabit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-07 00:00:00.000000000 Z
11
+ date: 2014-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler