semantic-ui-sass 0.15.1.0 → 0.15.2.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/accordion.js +1 -1
- data/app/assets/javascripts/semantic-ui/chatroom.js +1 -2
- data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
- data/app/assets/javascripts/semantic-ui/dimmer.js +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +2 -2
- data/app/assets/javascripts/semantic-ui/modal.js +1 -1
- data/app/assets/javascripts/semantic-ui/nag.js +1 -1
- data/app/assets/javascripts/semantic-ui/popup.js +1 -1
- data/app/assets/javascripts/semantic-ui/rating.js +1 -1
- data/app/assets/javascripts/semantic-ui/search.js +1 -1
- data/app/assets/javascripts/semantic-ui/shape.js +1 -1
- data/app/assets/javascripts/semantic-ui/sidebar.js +1 -1
- data/app/assets/javascripts/semantic-ui/tab.js +1 -1
- data/app/assets/javascripts/semantic-ui/video.js +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +9 -0
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +10 -0
- data/lib/semantic/ui/sass/version.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0426f46492c1a99a67287a70e41ec31c416dc314
|
4
|
+
data.tar.gz: 534afb1adc9ede97319592b530e64e8eb98b2c80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a4403d115ee63adeb9cd48051b34b337b0c58224cc148a8ff429d26e8ef8a082c3ea02156b2ddd5ed618fc108b8b4fb25cfd9c5b4a36339d56e89ce6fbd436f
|
7
|
+
data.tar.gz: 49c46e90d2836f41c2488fcf1a11e48f1807cfa2dbcf783f36080d507098bdcc102faaf4b1becaff96689dc997d63cda0c8de45bf5208d51dc1b545ff9e82520
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -854,7 +854,7 @@ $.fn.dropdown = function(parameters) {
|
|
854
854
|
})
|
855
855
|
;
|
856
856
|
|
857
|
-
return (returnedValue)
|
857
|
+
return (returnedValue !== undefined)
|
858
858
|
? returnedValue
|
859
859
|
: this
|
860
860
|
;
|
@@ -865,8 +865,8 @@ $.fn.dropdown.settings = {
|
|
865
865
|
name : 'Dropdown',
|
866
866
|
namespace : 'dropdown',
|
867
867
|
|
868
|
+
debug : false,
|
868
869
|
verbose : true,
|
869
|
-
debug : true,
|
870
870
|
performance : true,
|
871
871
|
|
872
872
|
on : 'click',
|
@@ -1759,6 +1759,10 @@ i.purple.icon {
|
|
1759
1759
|
color: #564F8A !important;
|
1760
1760
|
}
|
1761
1761
|
|
1762
|
+
i.orange.icon {
|
1763
|
+
color: #F05940 !important;
|
1764
|
+
}
|
1765
|
+
|
1762
1766
|
i.teal.icon {
|
1763
1767
|
color: #00B5AD !important;
|
1764
1768
|
}
|
@@ -1792,6 +1796,11 @@ i.inverted.purple.icon {
|
|
1792
1796
|
color: #FFFFFF !important;
|
1793
1797
|
}
|
1794
1798
|
|
1799
|
+
i.inverted.orange.icon {
|
1800
|
+
background-color: #F05940 !important;
|
1801
|
+
color: #FFFFFF !important;
|
1802
|
+
}
|
1803
|
+
|
1795
1804
|
i.inverted.teal.icon {
|
1796
1805
|
background-color: #00B5AD !important;
|
1797
1806
|
color: #FFFFFF !important;
|
@@ -76,15 +76,25 @@
|
|
76
76
|
|
77
77
|
.ui.vertical.steps .step:first-child {
|
78
78
|
padding: 1em 2em;
|
79
|
+
border-radius: 0em;
|
79
80
|
border-top-left-radius: 0.3125rem;
|
80
81
|
border-top-right-radius: 0.3125rem;
|
81
82
|
}
|
82
83
|
|
84
|
+
.ui.vertical.steps .active.step:first-child {
|
85
|
+
border-top-right-radius: 0rem;
|
86
|
+
}
|
87
|
+
|
83
88
|
.ui.vertical.steps .step:last-child {
|
89
|
+
border-radius: 0em;
|
84
90
|
border-bottom-left-radius: 0.3125rem;
|
85
91
|
border-bottom-right-radius: 0.3125rem;
|
86
92
|
}
|
87
93
|
|
94
|
+
.ui.vertical.steps .active.step:last-child {
|
95
|
+
border-bottom-right-radius: 0rem;
|
96
|
+
}
|
97
|
+
|
88
98
|
/* Arrow */
|
89
99
|
|
90
100
|
.ui.vertical.steps .step:after {
|
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.15.
|
4
|
+
version: 0.15.2.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-03-
|
11
|
+
date: 2014-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -351,3 +351,4 @@ test_files:
|
|
351
351
|
- spec/helpers/semantic_flash_helper_spec.rb
|
352
352
|
- spec/helpers/semantic_icon_helper_spec.rb
|
353
353
|
- spec/spec_helper.rb
|
354
|
+
has_rdoc:
|