semantic-ui-sass 2.2.0.0 → 2.2.1.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 +5 -0
- data/app/assets/javascripts/semantic-ui/dropdown.js +2 -5
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +0 -2
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1 -8
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -3
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +3 -10
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -8
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -3
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -24
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -3
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -5
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -6
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1 -8
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -32
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -7
- 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 -18
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -2
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +1 -3
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +3 -1
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/tasks/converter.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2627e94680c0c8b67fe7c67531772214a5c9c06e
|
|
4
|
+
data.tar.gz: 80c4f0e6ac7f1ac6717fe66bacdaf4291448a0a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe9ed202afbfcb70acea9b0295cf43a6f0d044ad77ed08212ca98f5bbea3bd9d0a215be18ba07dc0f15b0f4ad6f442794ab5a58dfb8dc98707c0ca3f77f7211a
|
|
7
|
+
data.tar.gz: a089cceafa0a5f7e39f45d1fb9dfd243b19926366a7639d06742e62b0a0c376cfb6e1bf272b15764de045d2a552059df071a3215c76fbbc4a06047edec36f759
|
data/CHANGELOG.md
CHANGED
|
@@ -1296,15 +1296,13 @@ $.fn.dropdown = function(parameters) {
|
|
|
1296
1296
|
hasSelectedItem = ($selectedItem.length > 0),
|
|
1297
1297
|
selectedIsSelectable = ($selectedItem.not(selector.unselectable).length > 0),
|
|
1298
1298
|
delimiterPressed = (pressedKey == keys.delimiter && settings.allowAdditions && module.is.multiple()),
|
|
1299
|
-
isAdditionWithoutMenu = (settings.allowAdditions && settings.hideAdditions && (pressedKey == keys.enter || delimiterPressed)),
|
|
1299
|
+
isAdditionWithoutMenu = (settings.allowAdditions && settings.hideAdditions && (pressedKey == keys.enter || delimiterPressed) && selectedIsSelectable),
|
|
1300
1300
|
$nextItem,
|
|
1301
1301
|
isSubMenuItem,
|
|
1302
1302
|
newIndex
|
|
1303
1303
|
;
|
|
1304
|
-
|
|
1305
1304
|
// allow selection with menu closed
|
|
1306
1305
|
if(isAdditionWithoutMenu) {
|
|
1307
|
-
$selectedItem = $menu.children(selector.addition);
|
|
1308
1306
|
module.verbose('Selecting item from keyboard shortcut', $selectedItem);
|
|
1309
1307
|
module.event.item.click.call($selectedItem, event);
|
|
1310
1308
|
if(module.is.searchSelection()) {
|
|
@@ -2571,7 +2569,6 @@ $.fn.dropdown = function(parameters) {
|
|
|
2571
2569
|
return;
|
|
2572
2570
|
}
|
|
2573
2571
|
if(value === '' || alreadyHasValue) {
|
|
2574
|
-
console.log('removing addition');
|
|
2575
2572
|
$addition.remove();
|
|
2576
2573
|
return;
|
|
2577
2574
|
}
|
|
@@ -2596,7 +2593,6 @@ $.fn.dropdown = function(parameters) {
|
|
|
2596
2593
|
$addition
|
|
2597
2594
|
.prependTo($menu)
|
|
2598
2595
|
;
|
|
2599
|
-
$item.add($addition);
|
|
2600
2596
|
module.verbose('Adding item choice to menu corresponding with user choice addition', $addition);
|
|
2601
2597
|
}
|
|
2602
2598
|
if(!settings.hideAdditions || module.is.allFiltered()) {
|
|
@@ -2606,6 +2602,7 @@ $.fn.dropdown = function(parameters) {
|
|
|
2606
2602
|
.removeClass(className.selected)
|
|
2607
2603
|
;
|
|
2608
2604
|
}
|
|
2605
|
+
module.refreshItems();
|
|
2609
2606
|
},
|
|
2610
2607
|
variables: function(message, term) {
|
|
2611
2608
|
var
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Form
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -961,6 +961,7 @@
|
|
|
961
961
|
-webkit-box-align: center;
|
|
962
962
|
-webkit-align-items: center;
|
|
963
963
|
-ms-flex-align: center;
|
|
964
|
+
-ms-grid-row-align: center;
|
|
964
965
|
align-items: center;
|
|
965
966
|
}
|
|
966
967
|
.ui.form .inline.fields .field {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Grid
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -1328,7 +1328,6 @@
|
|
|
1328
1328
|
.ui.grid > .row > .justified.column {
|
|
1329
1329
|
text-align: justify;
|
|
1330
1330
|
-webkit-hyphens: auto;
|
|
1331
|
-
-moz-hyphens: auto;
|
|
1332
1331
|
-ms-hyphens: auto;
|
|
1333
1332
|
hyphens: auto;
|
|
1334
1333
|
}
|
|
@@ -1819,7 +1819,6 @@ Floated Menu / Item
|
|
|
1819
1819
|
top: 100%;
|
|
1820
1820
|
left: 50%;
|
|
1821
1821
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1822
|
-
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1823
1822
|
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1824
1823
|
background: none;
|
|
1825
1824
|
margin: 0.5px 0em 0em;
|
|
@@ -1839,7 +1838,6 @@ Floated Menu / Item
|
|
|
1839
1838
|
bottom: auto;
|
|
1840
1839
|
left: auto;
|
|
1841
1840
|
-webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
|
1842
|
-
-ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
|
1843
1841
|
transform: translateX(50%) translateY(-50%) rotate(45deg);
|
|
1844
1842
|
margin: 0em -0.5px 0em 0em;
|
|
1845
1843
|
border: none;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Message
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -477,6 +477,6 @@
|
|
|
477
477
|
|
|
478
478
|
|
|
479
479
|
/*******************************
|
|
480
|
-
|
|
480
|
+
Site Overrides
|
|
481
481
|
*******************************/
|
|
482
482
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Button
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -273,7 +273,6 @@
|
|
|
273
273
|
}
|
|
274
274
|
.ui.vertical.animated.button .visible.content {
|
|
275
275
|
-webkit-transform: translateY(0%);
|
|
276
|
-
-ms-transform: translateY(0%);
|
|
277
276
|
transform: translateY(0%);
|
|
278
277
|
right: auto;
|
|
279
278
|
}
|
|
@@ -285,7 +284,6 @@
|
|
|
285
284
|
.ui.vertical.animated.button:focus .visible.content,
|
|
286
285
|
.ui.vertical.animated.button:hover .visible.content {
|
|
287
286
|
-webkit-transform: translateY(200%);
|
|
288
|
-
-ms-transform: translateY(200%);
|
|
289
287
|
transform: translateY(200%);
|
|
290
288
|
right: auto;
|
|
291
289
|
}
|
|
@@ -308,7 +306,6 @@
|
|
|
308
306
|
right: auto;
|
|
309
307
|
opacity: 1;
|
|
310
308
|
-webkit-transform: scale(1);
|
|
311
|
-
-ms-transform: scale(1);
|
|
312
309
|
transform: scale(1);
|
|
313
310
|
}
|
|
314
311
|
.ui.fade.animated.button .hidden.content {
|
|
@@ -316,7 +313,6 @@
|
|
|
316
313
|
left: 0%;
|
|
317
314
|
right: auto;
|
|
318
315
|
-webkit-transform: scale(1.5);
|
|
319
|
-
-ms-transform: scale(1.5);
|
|
320
316
|
transform: scale(1.5);
|
|
321
317
|
}
|
|
322
318
|
.ui.fade.animated.button:focus .visible.content,
|
|
@@ -325,7 +321,6 @@
|
|
|
325
321
|
right: auto;
|
|
326
322
|
opacity: 0;
|
|
327
323
|
-webkit-transform: scale(0.75);
|
|
328
|
-
-ms-transform: scale(0.75);
|
|
329
324
|
transform: scale(0.75);
|
|
330
325
|
}
|
|
331
326
|
.ui.fade.animated.button:focus .hidden.content,
|
|
@@ -334,7 +329,6 @@
|
|
|
334
329
|
right: auto;
|
|
335
330
|
opacity: 1;
|
|
336
331
|
-webkit-transform: scale(1);
|
|
337
|
-
-ms-transform: scale(1);
|
|
338
332
|
transform: scale(1);
|
|
339
333
|
}
|
|
340
334
|
|
|
@@ -895,7 +889,6 @@
|
|
|
895
889
|
top: 50%;
|
|
896
890
|
text-align: center;
|
|
897
891
|
-webkit-transform: translateY(-50%);
|
|
898
|
-
-ms-transform: translateY(-50%);
|
|
899
892
|
transform: translateY(-50%);
|
|
900
893
|
}
|
|
901
894
|
.ui.labeled.icon.buttons .button > .icon {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Container
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -130,7 +130,6 @@
|
|
|
130
130
|
.ui.justified.container {
|
|
131
131
|
text-align: justify;
|
|
132
132
|
-webkit-hyphens: auto;
|
|
133
|
-
-moz-hyphens: auto;
|
|
134
133
|
-ms-hyphens: auto;
|
|
135
134
|
hyphens: auto;
|
|
136
135
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Divider
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -92,7 +92,6 @@
|
|
|
92
92
|
line-height: 0em;
|
|
93
93
|
text-align: center;
|
|
94
94
|
-webkit-transform: translateX(-50%);
|
|
95
|
-
-ms-transform: translateX(-50%);
|
|
96
95
|
transform: translateX(-50%);
|
|
97
96
|
}
|
|
98
97
|
.ui.vertical.divider:before,
|
|
@@ -129,7 +128,6 @@
|
|
|
129
128
|
top: 0;
|
|
130
129
|
left: 0;
|
|
131
130
|
-webkit-transform: none;
|
|
132
|
-
-ms-transform: none;
|
|
133
131
|
transform: none;
|
|
134
132
|
}
|
|
135
133
|
.ui.stackable.grid .ui.vertical.divider:before,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Icon
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'Icons';
|
|
18
|
-
src: url("
|
|
19
|
-
src: url("
|
|
18
|
+
src: font-url("semantic-ui/icons.eot");
|
|
19
|
+
src: font-url("semantic-ui/icons.eot?#iefix") format('embedded-opentype'), font-url("semantic-ui/icons.woff2") format('woff2'), font-url("semantic-ui/icons.woff") format('woff'), font-url("semantic-ui/icons.ttf") format('truetype'), font-url("semantic-ui/icons.svg#icons") format('svg');
|
|
20
20
|
font-style: normal;
|
|
21
21
|
font-weight: normal;
|
|
22
22
|
font-variant: normal;
|
|
@@ -153,12 +153,10 @@ i.circular.inverted.icon {
|
|
|
153
153
|
i.flipped.icon,
|
|
154
154
|
i.horizontally.flipped.icon {
|
|
155
155
|
-webkit-transform: scale(-1, 1);
|
|
156
|
-
-ms-transform: scale(-1, 1);
|
|
157
156
|
transform: scale(-1, 1);
|
|
158
157
|
}
|
|
159
158
|
i.vertically.flipped.icon {
|
|
160
159
|
-webkit-transform: scale(1, -1);
|
|
161
|
-
-ms-transform: scale(1, -1);
|
|
162
160
|
transform: scale(1, -1);
|
|
163
161
|
}
|
|
164
162
|
|
|
@@ -170,13 +168,11 @@ i.rotated.icon,
|
|
|
170
168
|
i.right.rotated.icon,
|
|
171
169
|
i.clockwise.rotated.icon {
|
|
172
170
|
-webkit-transform: rotate(90deg);
|
|
173
|
-
-ms-transform: rotate(90deg);
|
|
174
171
|
transform: rotate(90deg);
|
|
175
172
|
}
|
|
176
173
|
i.left.rotated.icon,
|
|
177
174
|
i.counterclockwise.rotated.icon {
|
|
178
175
|
-webkit-transform: rotate(-90deg);
|
|
179
|
-
-ms-transform: rotate(-90deg);
|
|
180
176
|
transform: rotate(-90deg);
|
|
181
177
|
}
|
|
182
178
|
|
|
@@ -449,7 +445,6 @@ i.icons .icon {
|
|
|
449
445
|
top: 50%;
|
|
450
446
|
left: 50%;
|
|
451
447
|
-webkit-transform: translateX(-50%) translateY(-50%);
|
|
452
|
-
-ms-transform: translateX(-50%) translateY(-50%);
|
|
453
448
|
transform: translateX(-50%) translateY(-50%);
|
|
454
449
|
margin: 0em;
|
|
455
450
|
margin: 0;
|
|
@@ -460,7 +455,6 @@ i.icons .icon:first-child {
|
|
|
460
455
|
height: auto;
|
|
461
456
|
vertical-align: top;
|
|
462
457
|
-webkit-transform: none;
|
|
463
|
-
-ms-transform: none;
|
|
464
458
|
transform: none;
|
|
465
459
|
margin-right: 0.25rem;
|
|
466
460
|
}
|
|
@@ -472,7 +466,6 @@ i.icons .corner.icon {
|
|
|
472
466
|
right: 0;
|
|
473
467
|
bottom: 0;
|
|
474
468
|
-webkit-transform: none;
|
|
475
|
-
-ms-transform: none;
|
|
476
469
|
transform: none;
|
|
477
470
|
font-size: 0.45em;
|
|
478
471
|
text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Label
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -184,7 +184,6 @@ a.ui.label {
|
|
|
184
184
|
.ui.tag.label:before {
|
|
185
185
|
position: absolute;
|
|
186
186
|
-webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
|
187
|
-
-ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
|
188
187
|
transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
|
189
188
|
top: 50%;
|
|
190
189
|
right: 100%;
|
|
@@ -330,7 +329,6 @@ a.ui.label {
|
|
|
330
329
|
.ui[class*="right ribbon"].label {
|
|
331
330
|
text-align: left;
|
|
332
331
|
-webkit-transform: translateX(-100%);
|
|
333
|
-
-ms-transform: translateX(-100%);
|
|
334
332
|
transform: translateX(-100%);
|
|
335
333
|
border-radius: 0.28571429rem 0em 0em 0.28571429rem;
|
|
336
334
|
}
|
|
@@ -1141,7 +1139,6 @@ a.ui.basic.label:hover {
|
|
|
1141
1139
|
position: absolute;
|
|
1142
1140
|
content: '';
|
|
1143
1141
|
-webkit-transform: rotate(45deg);
|
|
1144
|
-
-ms-transform: rotate(45deg);
|
|
1145
1142
|
transform: rotate(45deg);
|
|
1146
1143
|
background-image: none;
|
|
1147
1144
|
z-index: 2;
|
|
@@ -1161,7 +1158,6 @@ a.ui.basic.label:hover {
|
|
|
1161
1158
|
.ui[class*="pointing above"].label:before {
|
|
1162
1159
|
border-width: 1px 0px 0px 1px;
|
|
1163
1160
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1164
|
-
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1165
1161
|
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1166
1162
|
top: 0%;
|
|
1167
1163
|
left: 50%;
|
|
@@ -1180,7 +1176,6 @@ a.ui.basic.label:hover {
|
|
|
1180
1176
|
top: auto;
|
|
1181
1177
|
right: auto;
|
|
1182
1178
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1183
|
-
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1184
1179
|
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1185
1180
|
top: 100%;
|
|
1186
1181
|
left: 50%;
|
|
@@ -1195,7 +1190,6 @@ a.ui.basic.label:hover {
|
|
|
1195
1190
|
.ui[class*="left pointing"].label:before {
|
|
1196
1191
|
border-width: 0px 0px 1px 1px;
|
|
1197
1192
|
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1198
|
-
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1199
1193
|
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1200
1194
|
bottom: auto;
|
|
1201
1195
|
right: auto;
|
|
@@ -1212,7 +1206,6 @@ a.ui.basic.label:hover {
|
|
|
1212
1206
|
.ui[class*="right pointing"].label:before {
|
|
1213
1207
|
border-width: 1px 1px 0px 0px;
|
|
1214
1208
|
-webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
|
1215
|
-
-ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
|
1216
1209
|
transform: translateX(50%) translateY(-50%) rotate(45deg);
|
|
1217
1210
|
top: 50%;
|
|
1218
1211
|
right: 0%;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Loader
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
text-align: center;
|
|
25
25
|
z-index: 1000;
|
|
26
26
|
-webkit-transform: translateX(-50%) translateY(-50%);
|
|
27
|
-
-ms-transform: translateX(-50%) translateY(-50%);
|
|
28
27
|
transform: translateX(-50%) translateY(-50%);
|
|
29
28
|
}
|
|
30
29
|
|
|
@@ -320,7 +319,6 @@
|
|
|
320
319
|
left: 0em;
|
|
321
320
|
top: 0em;
|
|
322
321
|
-webkit-transform: none;
|
|
323
|
-
-ms-transform: none;
|
|
324
322
|
transform: none;
|
|
325
323
|
}
|
|
326
324
|
.ui.inline.loader.active,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* # Semantic UI 2.2.
|
|
2
|
+
* # Semantic UI 2.2.1 - Reveal
|
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
|
4
4
|
*
|
|
5
5
|
*
|
|
@@ -70,75 +70,62 @@
|
|
|
70
70
|
left: 0% !important;
|
|
71
71
|
width: 100% !important;
|
|
72
72
|
-webkit-transform: translateX(100%) !important;
|
|
73
|
-
-ms-transform: translateX(100%) !important;
|
|
74
73
|
transform: translateX(100%) !important;
|
|
75
74
|
}
|
|
76
75
|
.ui.slide.active.reveal > .visible.content,
|
|
77
76
|
.ui.slide.reveal:hover > .visible.content {
|
|
78
77
|
-webkit-transform: translateX(-100%) !important;
|
|
79
|
-
-ms-transform: translateX(-100%) !important;
|
|
80
78
|
transform: translateX(-100%) !important;
|
|
81
79
|
}
|
|
82
80
|
.ui.slide.active.reveal > .hidden.content,
|
|
83
81
|
.ui.slide.reveal:hover > .hidden.content {
|
|
84
82
|
-webkit-transform: translateX(0%) !important;
|
|
85
|
-
-ms-transform: translateX(0%) !important;
|
|
86
83
|
transform: translateX(0%) !important;
|
|
87
84
|
}
|
|
88
85
|
.ui.slide.right.reveal > .visible.content {
|
|
89
86
|
-webkit-transform: translateX(0%) !important;
|
|
90
|
-
-ms-transform: translateX(0%) !important;
|
|
91
87
|
transform: translateX(0%) !important;
|
|
92
88
|
}
|
|
93
89
|
.ui.slide.right.reveal > .hidden.content {
|
|
94
90
|
-webkit-transform: translateX(-100%) !important;
|
|
95
|
-
-ms-transform: translateX(-100%) !important;
|
|
96
91
|
transform: translateX(-100%) !important;
|
|
97
92
|
}
|
|
98
93
|
.ui.slide.right.active.reveal > .visible.content,
|
|
99
94
|
.ui.slide.right.reveal:hover > .visible.content {
|
|
100
95
|
-webkit-transform: translateX(100%) !important;
|
|
101
|
-
-ms-transform: translateX(100%) !important;
|
|
102
96
|
transform: translateX(100%) !important;
|
|
103
97
|
}
|
|
104
98
|
.ui.slide.right.active.reveal > .hidden.content,
|
|
105
99
|
.ui.slide.right.reveal:hover > .hidden.content {
|
|
106
100
|
-webkit-transform: translateX(0%) !important;
|
|
107
|
-
-ms-transform: translateX(0%) !important;
|
|
108
101
|
transform: translateX(0%) !important;
|
|
109
102
|
}
|
|
110
103
|
.ui.slide.up.reveal > .hidden.content {
|
|
111
104
|
-webkit-transform: translateY(100%) !important;
|
|
112
|
-
-ms-transform: translateY(100%) !important;
|
|
113
105
|
transform: translateY(100%) !important;
|
|
114
106
|
}
|
|
115
107
|
.ui.slide.up.active.reveal > .visible.content,
|
|
116
108
|
.ui.slide.up.reveal:hover > .visible.content {
|
|
117
109
|
-webkit-transform: translateY(-100%) !important;
|
|
118
|
-
-ms-transform: translateY(-100%) !important;
|
|
119
110
|
transform: translateY(-100%) !important;
|
|
120
111
|
}
|
|
121
112
|
.ui.slide.up.active.reveal > .hidden.content,
|
|
122
113
|
.ui.slide.up.reveal:hover > .hidden.content {
|
|
123
114
|
-webkit-transform: translateY(0%) !important;
|
|
124
|
-
-ms-transform: translateY(0%) !important;
|
|
125
115
|
transform: translateY(0%) !important;
|
|
126
116
|
}
|
|
127
117
|
.ui.slide.down.reveal > .hidden.content {
|
|
128
118
|
-webkit-transform: translateY(-100%) !important;
|
|
129
|
-
-ms-transform: translateY(-100%) !important;
|
|
130
119
|
transform: translateY(-100%) !important;
|
|
131
120
|
}
|
|
132
121
|
.ui.slide.down.active.reveal > .visible.content,
|
|
133
122
|
.ui.slide.down.reveal:hover > .visible.content {
|
|
134
123
|
-webkit-transform: translateY(100%) !important;
|
|
135
|
-
-ms-transform: translateY(100%) !important;
|
|
136
124
|
transform: translateY(100%) !important;
|
|
137
125
|
}
|
|
138
126
|
.ui.slide.down.active.reveal > .hidden.content,
|
|
139
127
|
.ui.slide.down.reveal:hover > .hidden.content {
|
|
140
128
|
-webkit-transform: translateY(0%) !important;
|
|
141
|
-
-ms-transform: translateY(0%) !important;
|
|
142
129
|
transform: translateY(0%) !important;
|
|
143
130
|
}
|
|
144
131
|
|
|
@@ -183,25 +170,21 @@
|
|
|
183
170
|
.ui.move.active.reveal > .visible.content,
|
|
184
171
|
.ui.move.reveal:hover > .visible.content {
|
|
185
172
|
-webkit-transform: translateX(-100%) !important;
|
|
186
|
-
-ms-transform: translateX(-100%) !important;
|
|
187
173
|
transform: translateX(-100%) !important;
|
|
188
174
|
}
|
|
189
175
|
.ui.move.right.active.reveal > .visible.content,
|
|
190
176
|
.ui.move.right.reveal:hover > .visible.content {
|
|
191
177
|
-webkit-transform: translateX(100%) !important;
|
|
192
|
-
-ms-transform: translateX(100%) !important;
|
|
193
178
|
transform: translateX(100%) !important;
|
|
194
179
|
}
|
|
195
180
|
.ui.move.up.active.reveal > .visible.content,
|
|
196
181
|
.ui.move.up.reveal:hover > .visible.content {
|
|
197
182
|
-webkit-transform: translateY(-100%) !important;
|
|
198
|
-
-ms-transform: translateY(-100%) !important;
|
|
199
183
|
transform: translateY(-100%) !important;
|
|
200
184
|
}
|
|
201
185
|
.ui.move.down.active.reveal > .visible.content,
|
|
202
186
|
.ui.move.down.reveal:hover > .visible.content {
|
|
203
187
|
-webkit-transform: translateY(100%) !important;
|
|
204
|
-
-ms-transform: translateY(100%) !important;
|
|
205
188
|
transform: translateY(100%) !important;
|
|
206
189
|
}
|
|
207
190
|
|
|
@@ -213,13 +196,11 @@
|
|
|
213
196
|
-webkit-transition-duration: 0.5s;
|
|
214
197
|
transition-duration: 0.5s;
|
|
215
198
|
-webkit-transform: rotate(0deg);
|
|
216
|
-
-ms-transform: rotate(0deg);
|
|
217
199
|
transform: rotate(0deg);
|
|
218
200
|
}
|
|
219
201
|
.ui.rotate.reveal > .visible.content,
|
|
220
202
|
.ui.rotate.right.reveal > .visible.content {
|
|
221
203
|
-webkit-transform-origin: bottom right;
|
|
222
|
-
-ms-transform-origin: bottom right;
|
|
223
204
|
transform-origin: bottom right;
|
|
224
205
|
}
|
|
225
206
|
.ui.rotate.active.reveal > .visible.content,
|
|
@@ -227,18 +208,15 @@
|
|
|
227
208
|
.ui.rotate.right.active.reveal > .visible.content,
|
|
228
209
|
.ui.rotate.right.reveal:hover > .visible.content {
|
|
229
210
|
-webkit-transform: rotate(110deg);
|
|
230
|
-
-ms-transform: rotate(110deg);
|
|
231
211
|
transform: rotate(110deg);
|
|
232
212
|
}
|
|
233
213
|
.ui.rotate.left.reveal > .visible.content {
|
|
234
214
|
-webkit-transform-origin: bottom left;
|
|
235
|
-
-ms-transform-origin: bottom left;
|
|
236
215
|
transform-origin: bottom left;
|
|
237
216
|
}
|
|
238
217
|
.ui.rotate.left.active.reveal > .visible.content,
|
|
239
218
|
.ui.rotate.left.reveal:hover > .visible.content {
|
|
240
219
|
-webkit-transform: rotate(-110deg);
|
|
241
|
-
-ms-transform: rotate(-110deg);
|
|
242
220
|
transform: rotate(-110deg);
|
|
243
221
|
}
|
|
244
222
|
|
|
@@ -256,7 +234,6 @@
|
|
|
256
234
|
right: auto !important;
|
|
257
235
|
bottom: auto !important;
|
|
258
236
|
-webkit-transform: none !important;
|
|
259
|
-
-ms-transform: none !important;
|
|
260
237
|
transform: none !important;
|
|
261
238
|
}
|
|
262
239
|
.ui.disabled.reveal:hover > .hidden.hidden.content {
|