semantic-ui-sass 2.2.6.0 → 2.2.7.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 +8 -0
- data/README.md +1 -1
- data/app/assets/images/semantic-ui/flags.png +0 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +3 -16
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +23 -52
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +8 -26
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -6
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1 -14
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +1 -8
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -7
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +14 -36
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +4 -2
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +16 -22
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -3
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +3 -12
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +7 -11
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +17 -23
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +3 -19
- data/lib/semantic/ui/sass/version.rb +2 -2
- metadata +3 -3
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.2.
|
2
|
+
* # Semantic UI 2.2.7 - Dimmer
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -117,8 +117,10 @@ body.dimmable > .dimmer {
|
|
117
117
|
.blurring.dimmable > :not(.dimmer) {
|
118
118
|
-webkit-filter: blur(0px) grayscale(0);
|
119
119
|
filter: blur(0px) grayscale(0);
|
120
|
-
-webkit-transition: 800ms filter ease;
|
120
|
+
-webkit-transition: 800ms -webkit-filter ease;
|
121
|
+
transition: 800ms -webkit-filter ease;
|
121
122
|
transition: 800ms filter ease;
|
123
|
+
transition: 800ms filter ease, 800ms -webkit-filter ease;
|
122
124
|
}
|
123
125
|
.blurring.dimmed.dimmable > :not(.dimmer) {
|
124
126
|
-webkit-filter: blur(5px) grayscale(0.7);
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.2.
|
2
|
+
* # Semantic UI 2.2.7 - Dropdown
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -167,7 +167,6 @@
|
|
167
167
|
.ui.dropdown .menu > .input {
|
168
168
|
width: auto;
|
169
169
|
display: -webkit-box;
|
170
|
-
display: -webkit-flex;
|
171
170
|
display: -ms-flexbox;
|
172
171
|
display: flex;
|
173
172
|
margin: 1.14285714rem 0.78571429rem;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.2.
|
2
|
+
* # Semantic UI 2.2.7 - Modal
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -103,12 +103,10 @@
|
|
103
103
|
}
|
104
104
|
.ui.modal > .image.content {
|
105
105
|
display: -webkit-box;
|
106
|
-
display: -webkit-flex;
|
107
106
|
display: -ms-flexbox;
|
108
107
|
display: flex;
|
109
108
|
-webkit-box-orient: horizontal;
|
110
109
|
-webkit-box-direction: normal;
|
111
|
-
-webkit-flex-direction: row;
|
112
110
|
-ms-flex-direction: row;
|
113
111
|
flex-direction: row;
|
114
112
|
}
|
@@ -117,46 +115,43 @@
|
|
117
115
|
.ui.modal > .content > .image {
|
118
116
|
display: block;
|
119
117
|
-webkit-box-flex: 0;
|
120
|
-
-webkit-flex: 0 1 auto;
|
121
118
|
-ms-flex: 0 1 auto;
|
122
119
|
flex: 0 1 auto;
|
123
120
|
width: '';
|
124
|
-
-
|
125
|
-
-ms-
|
126
|
-
|
121
|
+
-ms-flex-item-align: top;
|
122
|
+
-ms-grid-row-align: top;
|
123
|
+
align-self: top;
|
127
124
|
}
|
128
125
|
.ui.modal > [class*="top aligned"] {
|
129
|
-
-
|
130
|
-
-ms-
|
131
|
-
|
126
|
+
-ms-flex-item-align: top;
|
127
|
+
-ms-grid-row-align: top;
|
128
|
+
align-self: top;
|
132
129
|
}
|
133
130
|
.ui.modal > [class*="middle aligned"] {
|
134
|
-
-
|
135
|
-
-ms-
|
136
|
-
|
131
|
+
-ms-flex-item-align: middle;
|
132
|
+
-ms-grid-row-align: middle;
|
133
|
+
align-self: middle;
|
137
134
|
}
|
138
135
|
.ui.modal > [class*="stretched"] {
|
139
|
-
-
|
140
|
-
-ms-
|
141
|
-
|
136
|
+
-ms-flex-item-align: stretch;
|
137
|
+
-ms-grid-row-align: stretch;
|
138
|
+
align-self: stretch;
|
142
139
|
}
|
143
140
|
|
144
141
|
/* Description */
|
145
142
|
.ui.modal > .content > .description {
|
146
143
|
display: block;
|
147
144
|
-webkit-box-flex: 1;
|
148
|
-
-webkit-flex: 1 0 auto;
|
149
145
|
-ms-flex: 1 0 auto;
|
150
146
|
flex: 1 0 auto;
|
151
147
|
min-width: 0px;
|
152
|
-
-
|
153
|
-
-ms-
|
154
|
-
|
148
|
+
-ms-flex-item-align: top;
|
149
|
+
-ms-grid-row-align: top;
|
150
|
+
align-self: top;
|
155
151
|
}
|
156
152
|
.ui.modal > .content > .icon + .description,
|
157
153
|
.ui.modal > .content > .image + .description {
|
158
154
|
-webkit-box-flex: 0;
|
159
|
-
-webkit-flex: 0 1 auto;
|
160
155
|
-ms-flex: 0 1 auto;
|
161
156
|
flex: 0 1 auto;
|
162
157
|
min-width: '';
|
@@ -253,7 +248,6 @@
|
|
253
248
|
.ui.modal .image.content {
|
254
249
|
-webkit-box-orient: vertical;
|
255
250
|
-webkit-box-direction: normal;
|
256
|
-
-webkit-flex-direction: column;
|
257
251
|
-ms-flex-direction: column;
|
258
252
|
flex-direction: column;
|
259
253
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.2.
|
2
|
+
* # Semantic UI 2.2.7 - Rating
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -15,7 +15,6 @@
|
|
15
15
|
|
16
16
|
.ui.rating {
|
17
17
|
display: -webkit-inline-box;
|
18
|
-
display: -webkit-inline-flex;
|
19
18
|
display: -ms-inline-flexbox;
|
20
19
|
display: inline-flex;
|
21
20
|
white-space: nowrap;
|
@@ -33,7 +32,6 @@
|
|
33
32
|
font-weight: normal;
|
34
33
|
font-style: normal;
|
35
34
|
-webkit-box-flex: 1;
|
36
|
-
-webkit-flex: 1 0 auto;
|
37
35
|
-ms-flex: 1 0 auto;
|
38
36
|
flex: 1 0 auto;
|
39
37
|
cursor: pointer;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.2.
|
2
|
+
* # Semantic UI 2.2.7 - Item
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -23,12 +23,10 @@
|
|
23
23
|
max-width: 100%;
|
24
24
|
position: relative;
|
25
25
|
display: -webkit-box;
|
26
|
-
display: -webkit-flex;
|
27
26
|
display: -ms-flexbox;
|
28
27
|
display: flex;
|
29
28
|
-webkit-box-orient: vertical;
|
30
29
|
-webkit-box-direction: normal;
|
31
|
-
-webkit-flex-direction: column;
|
32
30
|
-ms-flex-direction: column;
|
33
31
|
flex-direction: column;
|
34
32
|
width: 290px;
|
@@ -64,17 +62,14 @@
|
|
64
62
|
|
65
63
|
.ui.cards {
|
66
64
|
display: -webkit-box;
|
67
|
-
display: -webkit-flex;
|
68
65
|
display: -ms-flexbox;
|
69
66
|
display: flex;
|
70
67
|
margin: -0.875em -0.5em;
|
71
|
-
-
|
72
|
-
|
73
|
-
flex-wrap: wrap;
|
68
|
+
-ms-flex-wrap: wrap;
|
69
|
+
flex-wrap: wrap;
|
74
70
|
}
|
75
71
|
.ui.cards > .card {
|
76
72
|
display: -webkit-box;
|
77
|
-
display: -webkit-flex;
|
78
73
|
display: -ms-flexbox;
|
79
74
|
display: flex;
|
80
75
|
margin: 0.875em 0.5em;
|
@@ -124,7 +119,6 @@
|
|
124
119
|
position: relative;
|
125
120
|
display: block;
|
126
121
|
-webkit-box-flex: 0;
|
127
|
-
-webkit-flex: 0 0 auto;
|
128
122
|
-ms-flex: 0 0 auto;
|
129
123
|
flex: 0 0 auto;
|
130
124
|
padding: 0em;
|
@@ -149,7 +143,6 @@
|
|
149
143
|
.ui.cards > .card > .content,
|
150
144
|
.ui.card > .content {
|
151
145
|
-webkit-box-flex: 1;
|
152
|
-
-webkit-flex-grow: 1;
|
153
146
|
-ms-flex-positive: 1;
|
154
147
|
flex-grow: 1;
|
155
148
|
border: none;
|
@@ -403,7 +396,6 @@
|
|
403
396
|
max-width: 100%;
|
404
397
|
min-height: 0em !important;
|
405
398
|
-webkit-box-flex: 0;
|
406
|
-
-webkit-flex-grow: 0;
|
407
399
|
-ms-flex-positive: 0;
|
408
400
|
flex-grow: 0;
|
409
401
|
border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
|
@@ -459,7 +451,6 @@ a.ui.raised.card:hover,
|
|
459
451
|
|
460
452
|
.ui.centered.cards {
|
461
453
|
-webkit-box-pack: center;
|
462
|
-
-webkit-justify-content: center;
|
463
454
|
-ms-flex-pack: center;
|
464
455
|
justify-content: center;
|
465
456
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.2.
|
2
|
+
* # Semantic UI 2.2.7 - Feed
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -32,12 +32,10 @@
|
|
32
32
|
/* Event */
|
33
33
|
.ui.feed > .event {
|
34
34
|
display: -webkit-box;
|
35
|
-
display: -webkit-flex;
|
36
35
|
display: -ms-flexbox;
|
37
36
|
display: flex;
|
38
37
|
-webkit-box-orient: horizontal;
|
39
38
|
-webkit-box-direction: normal;
|
40
|
-
-webkit-flex-direction: row;
|
41
39
|
-ms-flex-direction: row;
|
42
40
|
flex-direction: row;
|
43
41
|
width: 100%;
|
@@ -58,14 +56,13 @@
|
|
58
56
|
.ui.feed > .event > .label {
|
59
57
|
display: block;
|
60
58
|
-webkit-box-flex: 0;
|
61
|
-
-webkit-flex: 0 0 auto;
|
62
59
|
-ms-flex: 0 0 auto;
|
63
60
|
flex: 0 0 auto;
|
64
61
|
width: 2.5em;
|
65
62
|
height: auto;
|
66
|
-
-
|
67
|
-
-ms-
|
68
|
-
|
63
|
+
-ms-flex-item-align: stretch;
|
64
|
+
-ms-grid-row-align: stretch;
|
65
|
+
align-self: stretch;
|
69
66
|
text-align: left;
|
70
67
|
}
|
71
68
|
.ui.feed > .event > .label .icon {
|
@@ -96,12 +93,11 @@
|
|
96
93
|
.ui.feed > .event > .content {
|
97
94
|
display: block;
|
98
95
|
-webkit-box-flex: 1;
|
99
|
-
-webkit-flex: 1 1 auto;
|
100
96
|
-ms-flex: 1 1 auto;
|
101
97
|
flex: 1 1 auto;
|
102
|
-
-
|
103
|
-
-ms-
|
104
|
-
|
98
|
+
-ms-flex-item-align: stretch;
|
99
|
+
-ms-grid-row-align: stretch;
|
100
|
+
align-self: stretch;
|
105
101
|
text-align: left;
|
106
102
|
word-wrap: break-word;
|
107
103
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.2.
|
2
|
+
* # Semantic UI 2.2.7 - Item
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -20,7 +20,6 @@
|
|
20
20
|
|
21
21
|
.ui.items > .item {
|
22
22
|
display: -webkit-box;
|
23
|
-
display: -webkit-flex;
|
24
23
|
display: -ms-flexbox;
|
25
24
|
display: flex;
|
26
25
|
margin: 1em 0em;
|
@@ -79,7 +78,6 @@
|
|
79
78
|
.ui.items > .item > .image {
|
80
79
|
position: relative;
|
81
80
|
-webkit-box-flex: 0;
|
82
|
-
-webkit-flex: 0 0 auto;
|
83
81
|
-ms-flex: 0 0 auto;
|
84
82
|
flex: 0 0 auto;
|
85
83
|
display: block;
|
@@ -87,9 +85,9 @@
|
|
87
85
|
margin: 0em;
|
88
86
|
padding: 0em;
|
89
87
|
max-height: '';
|
90
|
-
-
|
91
|
-
-ms-
|
92
|
-
|
88
|
+
-ms-flex-item-align: top;
|
89
|
+
-ms-grid-row-align: top;
|
90
|
+
align-self: top;
|
93
91
|
}
|
94
92
|
.ui.items > .item > .image > img {
|
95
93
|
display: block;
|
@@ -109,7 +107,6 @@
|
|
109
107
|
.ui.items > .item > .content {
|
110
108
|
display: block;
|
111
109
|
-webkit-box-flex: 1;
|
112
|
-
-webkit-flex: 1 1 auto;
|
113
110
|
-ms-flex: 1 1 auto;
|
114
111
|
flex: 1 1 auto;
|
115
112
|
background: none;
|
@@ -133,9 +130,9 @@
|
|
133
130
|
width: auto;
|
134
131
|
display: block;
|
135
132
|
margin-left: 0em;
|
136
|
-
-
|
137
|
-
-ms-
|
138
|
-
|
133
|
+
-ms-flex-item-align: top;
|
134
|
+
-ms-grid-row-align: top;
|
135
|
+
align-self: top;
|
139
136
|
padding-left: 1.5em;
|
140
137
|
}
|
141
138
|
.ui.items > .item > .content > .header {
|
@@ -167,9 +164,9 @@
|
|
167
164
|
---------------*/
|
168
165
|
|
169
166
|
.ui.items > .item .content img {
|
170
|
-
-
|
171
|
-
-ms-
|
172
|
-
|
167
|
+
-ms-flex-item-align: middle;
|
168
|
+
-ms-grid-row-align: middle;
|
169
|
+
align-self: middle;
|
173
170
|
width: '';
|
174
171
|
}
|
175
172
|
.ui.items > .item img.avatar,
|
@@ -359,7 +356,6 @@
|
|
359
356
|
.ui.items > .item {
|
360
357
|
-webkit-box-orient: vertical;
|
361
358
|
-webkit-box-direction: normal;
|
362
|
-
-webkit-flex-direction: column;
|
363
359
|
-ms-flex-direction: column;
|
364
360
|
flex-direction: column;
|
365
361
|
margin: 2em 0em;
|
@@ -392,19 +388,17 @@
|
|
392
388
|
--------------------*/
|
393
389
|
|
394
390
|
.ui.items > .item > .image + [class*="top aligned"].content {
|
395
|
-
-
|
396
|
-
-
|
397
|
-
align-self: flex-start;
|
391
|
+
-ms-flex-item-align: start;
|
392
|
+
align-self: flex-start;
|
398
393
|
}
|
399
394
|
.ui.items > .item > .image + [class*="middle aligned"].content {
|
400
|
-
-
|
401
|
-
-ms-
|
402
|
-
|
395
|
+
-ms-flex-item-align: center;
|
396
|
+
-ms-grid-row-align: center;
|
397
|
+
align-self: center;
|
403
398
|
}
|
404
399
|
.ui.items > .item > .image + [class*="bottom aligned"].content {
|
405
|
-
-
|
406
|
-
-
|
407
|
-
align-self: flex-end;
|
400
|
+
-ms-flex-item-align: end;
|
401
|
+
align-self: flex-end;
|
408
402
|
}
|
409
403
|
|
410
404
|
/*--------------
|