semantic-ui-sass 0.9.3.0 → 0.9.4.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: 933bdcf6cfe3af17e4a3409d52db5c8d3ba43e8d
4
- data.tar.gz: 63992307ab53a0bd77cc1d95e03ecc7898fb49dd
3
+ metadata.gz: 9a5ca56453b2a62a56e2ed80f1237b8be6a6007a
4
+ data.tar.gz: d57c23e259aa6b7e2c1a512eeb0ec495bd6dea56
5
5
  SHA512:
6
- metadata.gz: 59e6ae5ca61c0857f2cb8e39010f4a4b7a103e661fb6457a3edb3ca5522f208383aec3b801a31b3d24f1a37e9c68d80d0961c8ae1aaa39b1c4f9dc9d04882be9
7
- data.tar.gz: 11e4eba43186d21da3e63b2c3809ba02369fd593791eeeeca2f621c21e2dc3b4f0e89424eda3c291f99b800e2a50490e597c1cb43e4d615dfbca5d087a418bd1
6
+ metadata.gz: db381bb659b5caa5c85724a984a14c85e2e0ff3793c62e65571d6ec6fa6ab91f4c58698da6cc6355108709fc6ea2c4cc6bf389325355fe270581f8312289a109
7
+ data.tar.gz: 165c5d44ad5cf347b4737b7714f4a25ca016e63494052482c829f4233cb0a5ecc8c8a7abe9c71958a6e81caefccdde11a6515ca8d713a67bad789a48de23c0e1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.9.4.0
2
+
3
+ * Update Semantic UI to 0.9.4
4
+
1
5
  ## 0.9.3.0
2
6
 
3
7
  * Update Semantic UI to 0.9.3
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ## Installation and Usage
6
6
 
7
7
  ```ruby
8
- gem 'semantic-ui-sass', '~> 0.9.3.0'
8
+ gem 'semantic-ui-sass', '~> 0.9.4.0'
9
9
  ```
10
10
  or
11
11
 
@@ -638,7 +638,7 @@ $.fn.form.settings = {
638
638
  },
639
639
  email: function(value){
640
640
  var
641
- emailRegExp = new RegExp("[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?")
641
+ emailRegExp = new RegExp("[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?", "i")
642
642
  ;
643
643
  return emailRegExp.test(value);
644
644
  },
@@ -330,7 +330,7 @@ $.fn.dropdown = function(parameters) {
330
330
  ? module.get.value()
331
331
  : module.get.text()
332
332
  ;
333
- if(value) {
333
+ if(value !== undefined) {
334
334
  $item
335
335
  .each(function() {
336
336
  var
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic - Dropdown
2
+ * # Semantic - Sidebar
3
3
  * http://github.com/jlukic/semantic-ui/
4
4
  *
5
5
  *
@@ -510,4 +510,4 @@ $.fn.sidebar.settings = {
510
510
 
511
511
  };
512
512
 
513
- })( jQuery, window , document );
513
+ })( jQuery, window , document );
@@ -124,7 +124,7 @@ $.fn.transition = function() {
124
124
  if(!module.has.direction() && module.can.transition()) {
125
125
  module.set.direction();
126
126
  }
127
- if(!module.has.transitionAvailable) {
127
+ if( !module.has.transitionAvailable() ) {
128
128
  module.restore.conditions();
129
129
  module.error(error.noAnimation);
130
130
  return false;
@@ -68,6 +68,7 @@
68
68
  .ui.form input[type="date"],
69
69
  .ui.form input[type="password"],
70
70
  .ui.form input[type="number"],
71
+ .ui.form input[type="url"],
71
72
  .ui.form input[type="tel"],
72
73
  .ui.form .ui.input {
73
74
  width: 100%;
@@ -79,6 +80,7 @@
79
80
  .ui.form input[type="date"],
80
81
  .ui.form input[type="password"],
81
82
  .ui.form input[type="number"],
83
+ .ui.form input[type="url"],
82
84
  .ui.form input[type="tel"] {
83
85
  margin: 0em;
84
86
  padding: 0.85em 1.2em;
@@ -177,6 +179,7 @@
177
179
  .ui.form input[type="date"]:focus,
178
180
  .ui.form input[type="password"]:focus,
179
181
  .ui.form input[type="number"]:focus,
182
+ .ui.form input[type="url"]:focus,
180
183
  .ui.form input[type="tel"]:focus,
181
184
  .ui.form textarea:focus {
182
185
  color: rgba(0, 0, 0, 0.85);
@@ -229,6 +232,7 @@
229
232
  .ui.form .fields.error .field input[type="date"],
230
233
  .ui.form .fields.error .field input[type="password"],
231
234
  .ui.form .fields.error .field input[type="number"],
235
+ .ui.form .fields.error .field input[type="url"],
232
236
  .ui.form .fields.error .field input[type="tel"],
233
237
  .ui.form .field.error textarea,
234
238
  .ui.form .field.error input[type="text"],
@@ -236,6 +240,7 @@
236
240
  .ui.form .field.error input[type="date"],
237
241
  .ui.form .field.error input[type="password"],
238
242
  .ui.form .field.error input[type="number"],
243
+ .ui.form .field.error input[type="url"],
239
244
  .ui.form .field.error input[type="tel"] {
240
245
  background-color: #FFFAFA;
241
246
  border-color: #E7BEBE;
@@ -254,6 +259,7 @@
254
259
  .ui.form .field.error input[type="date"]:focus,
255
260
  .ui.form .field.error input[type="password"]:focus,
256
261
  .ui.form .field.error input[type="number"]:focus,
262
+ .ui.form .field.error input[type="url"]:focus,
257
263
  .ui.form .field.error input[type="tel"]:focus {
258
264
  border-color: rgba(255, 80, 80, 1);
259
265
  color: rgba(255, 80, 80, 1);
@@ -397,6 +403,7 @@
397
403
  .ui.inverted.form .field.error input[type="date"],
398
404
  .ui.inverted.form .field.error input[type="password"],
399
405
  .ui.inverted.form .field.error input[type="number"],
406
+ .ui.inverted.form .field.error input[type="url"],
400
407
  .ui.inverted.form .field.error input[type="tel"] {
401
408
  background-color: #FFCCCC;
402
409
  }
@@ -544,6 +551,7 @@
544
551
  .ui.small.form input[type="date"],
545
552
  .ui.small.form input[type="password"],
546
553
  .ui.small.form input[type="number"],
554
+ .ui.small.form input[type="url"],
547
555
  .ui.small.form input[type="tel"],
548
556
  .ui.small.form label {
549
557
  font-size: 1em;
@@ -101,7 +101,7 @@ a.ui.nag {
101
101
  Bottom
102
102
  ---------------*/
103
103
 
104
- .ui.botton.nag {
104
+ .ui.bottom.nag {
105
105
  border-radius: 5px 5px 0px 0px;
106
106
  }
107
107
 
@@ -40,6 +40,14 @@ body {
40
40
  margin-top 0.3s ease;
41
41
  }
42
42
 
43
+ /*-------------------
44
+ Coupling
45
+ --------------------*/
46
+
47
+ body.pushed.scrolling.ui.dimmable {
48
+ position: static;
49
+ }
50
+
43
51
  /*******************************
44
52
  Types
45
53
  *******************************/
@@ -48,7 +56,11 @@ body {
48
56
  Direction
49
57
  --------------------*/
50
58
 
51
- .ui.right.sidebar {
59
+ .ui.right.very.thin.sidebar,
60
+ .ui.right.thin.sidebar,
61
+ .ui.right.sidebar,
62
+ .ui.right.wide.sidebar,
63
+ .ui.right.very.wide.sidebar {
52
64
  left: 100%;
53
65
  margin: 0px !important;
54
66
  }
@@ -1,8 +1,8 @@
1
1
  module Semantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = "0.9.3.0"
5
- SEMANTIC_UI_SHA = 'c1c40d8c7bfd2b01a042f8dbddd5398f219dd77e'
4
+ VERSION = "0.9.4.0"
5
+ SEMANTIC_UI_SHA = 'ef82ce755fb7e5540b062b1f71738f196bab1958'
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.9.3.0
4
+ version: 0.9.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - doabit
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-17 00:00:00.000000000 Z
11
+ date: 2013-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler