semantic-ui-sass 0.9.3.0 → 0.9.4.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/behavior/form.js +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +1 -1
- data/app/assets/javascripts/semantic-ui/sidebar.js +2 -2
- data/app/assets/javascripts/semantic-ui/transition.js +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +8 -0
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +13 -1
- data/lib/semantic/ui/sass/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a5ca56453b2a62a56e2ed80f1237b8be6a6007a
|
4
|
+
data.tar.gz: d57c23e259aa6b7e2c1a512eeb0ec495bd6dea56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db381bb659b5caa5c85724a984a14c85e2e0ff3793c62e65571d6ec6fa6ab91f4c58698da6cc6355108709fc6ea2c4cc6bf389325355fe270581f8312289a109
|
7
|
+
data.tar.gz: 165c5d44ad5cf347b4737b7714f4a25ca016e63494052482c829f4233cb0a5ecc8c8a7abe9c71958a6e81caefccdde11a6515ca8d713a67bad789a48de23c0e1
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -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
|
},
|
@@ -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;
|
@@ -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
|
}
|
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.
|
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-
|
11
|
+
date: 2013-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|