semantic-ui-sass 1.11.4.1 → 1.11.5.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/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/javascripts/semantic-ui/dimmer.js +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +13 -5
- data/app/assets/javascripts/semantic-ui/visibility.js +33 -28
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +19 -33
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +5 -5
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +2 -2
- 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 -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 -1
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_reset.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 +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +38 -33
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +1 -1
- 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 -1
- 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/modules/_video.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +2 -2
- 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 +1 -1
- 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: 0c460323250441d6213701b0c5aee384cd846389
|
4
|
+
data.tar.gz: dadfe9981bd299eba2d7e7c1836c89ad89d874fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e50041fb9261ebeb1ca032a87fcb66674a4538088289c7d8e6cfe640b5394a2f58adf9aa12454e744ccc6bcd56a0a5859165af7f5a8eab74586b39818691be90
|
7
|
+
data.tar.gz: 805f0a70cb14963c7b12cdf840b5768df2ea48fb21b4c69b5d4e390b8c5eb2bfb71db6486ab441439a387637c5a1009095185662468d269c6d60b3e2922dc059
|
Binary file
|
@@ -154,7 +154,7 @@ $.fn.dimmer = function(parameters) {
|
|
154
154
|
;
|
155
155
|
if(settings.variation) {
|
156
156
|
module.debug('Creating dimmer with variation', settings.variation);
|
157
|
-
$element.addClass(
|
157
|
+
$element.addClass(settings.variation);
|
158
158
|
}
|
159
159
|
if(settings.dimmerName) {
|
160
160
|
module.debug('Creating named dimmer', settings.dimmerName);
|
@@ -31,7 +31,7 @@ $.fn.dropdown = function(parameters) {
|
|
31
31
|
;
|
32
32
|
|
33
33
|
$allModules
|
34
|
-
.each(function(
|
34
|
+
.each(function() {
|
35
35
|
var
|
36
36
|
settings = ( $.isPlainObject(parameters) )
|
37
37
|
? $.extend(true, {}, $.fn.dropdown.settings, parameters)
|
@@ -210,16 +210,17 @@ $.fn.dropdown = function(parameters) {
|
|
210
210
|
.prependTo($module)
|
211
211
|
;
|
212
212
|
}
|
213
|
-
module.
|
213
|
+
module.refresh();
|
214
214
|
},
|
215
215
|
reference: function() {
|
216
216
|
var
|
217
|
+
index = $allModules.index($module),
|
217
218
|
$firstModules,
|
218
219
|
$lastModules
|
219
220
|
;
|
220
221
|
module.debug('Dropdown behavior was called on select, replacing with closest dropdown');
|
221
222
|
// replace module reference
|
222
|
-
$module = $module.
|
223
|
+
$module = $module.parent(selector.dropdown);
|
223
224
|
module.refresh();
|
224
225
|
// adjust all modules
|
225
226
|
$firstModules = $allModules.slice(0, index);
|
@@ -471,6 +472,9 @@ $.fn.dropdown = function(parameters) {
|
|
471
472
|
module.event.item.click.call($selectedItem);
|
472
473
|
module.remove.filteredItem();
|
473
474
|
}
|
475
|
+
else {
|
476
|
+
module.hide();
|
477
|
+
}
|
474
478
|
},
|
475
479
|
|
476
480
|
event: {
|
@@ -964,19 +968,23 @@ $.fn.dropdown = function(parameters) {
|
|
964
968
|
module.verbose('Ambiguous dropdown value using strict type check', $choice, value);
|
965
969
|
if( optionValue === value ) {
|
966
970
|
$selectedItem = $(this);
|
971
|
+
return true;
|
967
972
|
}
|
968
973
|
else if( !$selectedItem && optionText === value ) {
|
969
974
|
$selectedItem = $(this);
|
975
|
+
return true;
|
970
976
|
}
|
971
977
|
}
|
972
978
|
else {
|
973
979
|
if( optionValue == value ) {
|
974
980
|
module.verbose('Found select item by value', optionValue, value);
|
975
981
|
$selectedItem = $(this);
|
982
|
+
return true;
|
976
983
|
}
|
977
984
|
else if( !$selectedItem && optionText == value ) {
|
978
985
|
module.verbose('Found select item by text', optionText, value);
|
979
986
|
$selectedItem = $(this);
|
987
|
+
return true;
|
980
988
|
}
|
981
989
|
}
|
982
990
|
})
|
@@ -1179,7 +1187,7 @@ $.fn.dropdown = function(parameters) {
|
|
1179
1187
|
selectedText,
|
1180
1188
|
selectedValue
|
1181
1189
|
;
|
1182
|
-
if($selectedItem) {
|
1190
|
+
if($selectedItem && !$selectedItem.hasClass(className.active) ) {
|
1183
1191
|
module.debug('Setting selected menu item to', $selectedItem);
|
1184
1192
|
module.remove.activeItem();
|
1185
1193
|
module.remove.selectedItem();
|
@@ -1559,7 +1567,7 @@ $.fn.dropdown = function(parameters) {
|
|
1559
1567
|
});
|
1560
1568
|
}
|
1561
1569
|
clearTimeout(module.performance.timer);
|
1562
|
-
module.performance.timer = setTimeout(module.performance.display,
|
1570
|
+
module.performance.timer = setTimeout(module.performance.display, 500);
|
1563
1571
|
},
|
1564
1572
|
display: function() {
|
1565
1573
|
var
|
@@ -44,7 +44,7 @@ $.fn.visibility = function(parameters) {
|
|
44
44
|
$window = $(window),
|
45
45
|
$module = $(this),
|
46
46
|
$context = $(settings.context),
|
47
|
-
$
|
47
|
+
$images = $module.find('img'),
|
48
48
|
|
49
49
|
selector = $module.selector || '',
|
50
50
|
instance = $module.data(moduleNamespace),
|
@@ -130,6 +130,38 @@ $.fn.visibility = function(parameters) {
|
|
130
130
|
$context
|
131
131
|
.on('scroll' + eventNamespace, module.event.scroll)
|
132
132
|
;
|
133
|
+
if($images.length > 0) {
|
134
|
+
module.bind.imageLoad();
|
135
|
+
}
|
136
|
+
},
|
137
|
+
imageLoad: function() {
|
138
|
+
var
|
139
|
+
imageCount = $images.length,
|
140
|
+
index = imageCount,
|
141
|
+
loadedCount = 0,
|
142
|
+
images = [],
|
143
|
+
cache = [],
|
144
|
+
cacheImage = document.createElement('img'),
|
145
|
+
handleLoad = function() {
|
146
|
+
loadedCount++;
|
147
|
+
if(loadedCount >= imageCount) {
|
148
|
+
module.debug('Images finished loading inside element, refreshing position');
|
149
|
+
module.refresh();
|
150
|
+
}
|
151
|
+
}
|
152
|
+
;
|
153
|
+
$images
|
154
|
+
.each(function() {
|
155
|
+
images.push( $(this).attr('src') );
|
156
|
+
})
|
157
|
+
;
|
158
|
+
while(index--) {
|
159
|
+
cacheImage = document.createElement('img');
|
160
|
+
cacheImage.onload = handleLoad;
|
161
|
+
cacheImage.onerror = handleLoad;
|
162
|
+
cacheImage.src = images[index];
|
163
|
+
cache.push(cacheImage);
|
164
|
+
}
|
133
165
|
}
|
134
166
|
},
|
135
167
|
|
@@ -153,33 +185,6 @@ $.fn.visibility = function(parameters) {
|
|
153
185
|
}
|
154
186
|
},
|
155
187
|
|
156
|
-
precache: function(images, callback) {
|
157
|
-
if (!(images instanceof Array)) {
|
158
|
-
images = [images];
|
159
|
-
}
|
160
|
-
var
|
161
|
-
imagesLength = images.length,
|
162
|
-
loadedCounter = 0,
|
163
|
-
cache = [],
|
164
|
-
cacheImage = document.createElement('img'),
|
165
|
-
handleLoad = function() {
|
166
|
-
loadedCounter++;
|
167
|
-
if (loadedCounter >= images.length) {
|
168
|
-
if ($.isFunction(callback)) {
|
169
|
-
callback();
|
170
|
-
}
|
171
|
-
}
|
172
|
-
}
|
173
|
-
;
|
174
|
-
while (imagesLength--) {
|
175
|
-
cacheImage = document.createElement('img');
|
176
|
-
cacheImage.onload = handleLoad;
|
177
|
-
cacheImage.onerror = handleLoad;
|
178
|
-
cacheImage.src = images[imagesLength];
|
179
|
-
cache.push(cacheImage);
|
180
|
-
}
|
181
|
-
},
|
182
|
-
|
183
188
|
should: {
|
184
189
|
trackChanges: function() {
|
185
190
|
if(methodInvoked && queryArguments.length > 0) {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 1.11.
|
2
|
+
* # Semantic UI 1.11.5 - Grid
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -1256,13 +1256,18 @@
|
|
1256
1256
|
justify-content: flex-start !important;
|
1257
1257
|
}
|
1258
1258
|
.ui.stretched.grid > .row > .column,
|
1259
|
-
.ui.stretched.grid > .column,
|
1259
|
+
.ui.stretched.grid > .column:not(.row),
|
1260
1260
|
.ui.grid .stretched.column,
|
1261
1261
|
.ui.grid > .stretched.row > .column {
|
1262
1262
|
display: -webkit-box !important;
|
1263
1263
|
display: -webkit-flex !important;
|
1264
1264
|
display: -ms-flexbox !important;
|
1265
1265
|
display: flex !important;
|
1266
|
+
-webkit-box-orient: vertical;
|
1267
|
+
-webkit-box-direction: normal;
|
1268
|
+
-webkit-flex-direction: column;
|
1269
|
+
-ms-flex-direction: column;
|
1270
|
+
flex-direction: column;
|
1266
1271
|
}
|
1267
1272
|
.ui.stretched.grid > .row > .column > *,
|
1268
1273
|
.ui.stretched.grid > .column > *,
|
@@ -1441,24 +1446,14 @@
|
|
1441
1446
|
table-layout: fixed;
|
1442
1447
|
width: 100% !important;
|
1443
1448
|
}
|
1444
|
-
.ui[class*="equal width"].grid > .column,
|
1449
|
+
.ui[class*="equal width"].grid > .column:not(.row),
|
1445
1450
|
.ui[class*="equal width"].grid > .row > .column,
|
1446
1451
|
.ui.grid > [class*="equal width"].row > .column {
|
1447
1452
|
display: table-cell;
|
1448
1453
|
}
|
1449
1454
|
|
1450
1455
|
/* Flexbox (Experimental / Overrides Where Supported) */
|
1451
|
-
.ui[class*="equal width"].grid
|
1452
|
-
display: -webkit-box;
|
1453
|
-
display: -webkit-flex;
|
1454
|
-
display: -ms-flexbox;
|
1455
|
-
display: flex;
|
1456
|
-
-webkit-box-orient: vertical;
|
1457
|
-
-webkit-box-direction: normal;
|
1458
|
-
-webkit-flex-direction: column;
|
1459
|
-
-ms-flex-direction: column;
|
1460
|
-
flex-direction: column;
|
1461
|
-
}
|
1456
|
+
.ui[class*="equal width"].grid,
|
1462
1457
|
.ui[class*="equal width"].grid > .row,
|
1463
1458
|
.ui.grid > [class*="equal width"].row {
|
1464
1459
|
display: -webkit-box;
|
@@ -1470,16 +1465,14 @@
|
|
1470
1465
|
-webkit-flex-direction: row;
|
1471
1466
|
-ms-flex-direction: row;
|
1472
1467
|
flex-direction: row;
|
1468
|
+
-webkit-flex-wrap: wrap;
|
1469
|
+
-ms-flex-wrap: wrap;
|
1470
|
+
flex-wrap: wrap;
|
1473
1471
|
}
|
1474
|
-
.ui[class*="equal width"].grid > .column,
|
1472
|
+
.ui[class*="equal width"].grid > .column:not(.row),
|
1475
1473
|
.ui[class*="equal width"].grid > .row > .column,
|
1476
1474
|
.ui.grid > [class*="equal width"].row > .column {
|
1477
1475
|
display: block;
|
1478
|
-
-webkit-box-orient: vertical;
|
1479
|
-
-webkit-box-direction: normal;
|
1480
|
-
-webkit-flex-direction: column;
|
1481
|
-
-ms-flex-direction: column;
|
1482
|
-
flex-direction: column;
|
1483
1476
|
-webkit-box-flex: 1;
|
1484
1477
|
-webkit-flex-grow: 1;
|
1485
1478
|
-ms-flex-positive: 1;
|
@@ -1500,24 +1493,14 @@
|
|
1500
1493
|
table-layout: fixed;
|
1501
1494
|
width: 100% !important;
|
1502
1495
|
}
|
1503
|
-
.ui[class*="equal height"].grid > .column,
|
1496
|
+
.ui[class*="equal height"].grid > .column:not(.row),
|
1504
1497
|
.ui[class*="equal height"].grid > .row > .column,
|
1505
1498
|
.ui.grid > [class*="equal height"].row > .column {
|
1506
1499
|
display: table-cell;
|
1507
1500
|
}
|
1508
1501
|
|
1509
1502
|
/* Flexbox (Experimental / Overrides Where Supported) */
|
1510
|
-
.ui[class*="equal height"].grid
|
1511
|
-
display: -webkit-box;
|
1512
|
-
display: -webkit-flex;
|
1513
|
-
display: -ms-flexbox;
|
1514
|
-
display: flex;
|
1515
|
-
-webkit-box-orient: vertical;
|
1516
|
-
-webkit-box-direction: normal;
|
1517
|
-
-webkit-flex-direction: column;
|
1518
|
-
-ms-flex-direction: column;
|
1519
|
-
flex-direction: column;
|
1520
|
-
}
|
1503
|
+
.ui[class*="equal height"].grid,
|
1521
1504
|
.ui[class*="equal height"].grid > .row,
|
1522
1505
|
.ui.grid > [class*="equal height"].row {
|
1523
1506
|
display: -webkit-box;
|
@@ -1529,8 +1512,11 @@
|
|
1529
1512
|
-webkit-flex-direction: row;
|
1530
1513
|
-ms-flex-direction: row;
|
1531
1514
|
flex-direction: row;
|
1515
|
+
-webkit-flex-wrap: wrap;
|
1516
|
+
-ms-flex-wrap: wrap;
|
1517
|
+
flex-wrap: wrap;
|
1532
1518
|
}
|
1533
|
-
.ui[class*="equal height"].grid > .column,
|
1519
|
+
.ui[class*="equal height"].grid > .column:not(.row),
|
1534
1520
|
.ui[class*="equal height"].grid > .row > .column,
|
1535
1521
|
.ui.grid > [class*="equal height"].row > .column {
|
1536
1522
|
display: block;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 1.11.
|
2
|
+
* # Semantic UI 1.11.5 - Table
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -166,7 +166,7 @@
|
|
166
166
|
background: none;
|
167
167
|
border: none !important;
|
168
168
|
padding: 0.25em 0.75em;
|
169
|
-
box-shadow: none;
|
169
|
+
box-shadow: none !important;
|
170
170
|
}
|
171
171
|
.ui.table:not(.unstackable) th:first-child,
|
172
172
|
.ui.table:not(.unstackable) td:first-child {
|
@@ -175,7 +175,7 @@
|
|
175
175
|
}
|
176
176
|
.ui.table:not(.unstackable) th:last-child,
|
177
177
|
.ui.table:not(.unstackable) td:last-child {
|
178
|
-
box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
|
178
|
+
box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
|
179
179
|
padding-bottom: 1em;
|
180
180
|
}
|
181
181
|
|
@@ -436,7 +436,7 @@
|
|
436
436
|
background: none;
|
437
437
|
border: none !important;
|
438
438
|
padding: 0.25em 0.75em;
|
439
|
-
box-shadow: none;
|
439
|
+
box-shadow: none !important;
|
440
440
|
}
|
441
441
|
.ui[class*="tablet stackable"].table th:first-child,
|
442
442
|
.ui[class*="tablet stackable"].table td:first-child {
|
@@ -445,7 +445,7 @@
|
|
445
445
|
}
|
446
446
|
.ui[class*="tablet stackable"].table th:last-child,
|
447
447
|
.ui[class*="tablet stackable"].table td:last-child {
|
448
|
-
box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
|
448
|
+
box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.1) inset !important;
|
449
449
|
padding-bottom: 1em;
|
450
450
|
}
|
451
451
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 1.11.
|
2
|
+
* # Semantic UI 1.11.5 - Button
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -89,7 +89,7 @@
|
|
89
89
|
background-color: #cccccc;
|
90
90
|
background-image: '';
|
91
91
|
color: rgba(0, 0, 0, 0.8);
|
92
|
-
box-shadow: 0px 0px 0px 1px transparent inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset;
|
92
|
+
box-shadow: 0px 0px 0px 1px transparent inset, 0px 1px 4px 0px rgba(39, 41, 43, 0.15) inset !important;
|
93
93
|
}
|
94
94
|
|
95
95
|
/*--------------
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 1.11.
|
2
|
+
* # Semantic UI 1.11.5 - Header
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -111,7 +111,7 @@
|
|
111
111
|
---------------*/
|
112
112
|
|
113
113
|
.ui.header .ui.label {
|
114
|
-
font-size:
|
114
|
+
font-size: '';
|
115
115
|
margin: 0em 0em 0em 0.5rem;
|
116
116
|
vertical-align: middle;
|
117
117
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 1.11.
|
2
|
+
* # Semantic UI 1.11.5 - Icon
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -17,7 +17,7 @@
|
|
17
17
|
@font-face {
|
18
18
|
font-family: 'Icons';
|
19
19
|
src: font-url("semantic-ui/icons.eot");
|
20
|
-
src: font-url("semantic-ui/icons.eot?#iefix") format('embedded-opentype'), 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
|
+
src: font-url("semantic-ui/icons.eot?#iefix") format('embedded-opentype'), font-url("semantic-ui/icons.woff2") format('woff'), 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');
|
21
21
|
font-style: normal;
|
22
22
|
font-weight: normal;
|
23
23
|
font-variant: normal;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 1.11.
|
2
|
+
* # Semantic UI 1.11.5 - Dropdown
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -79,7 +79,7 @@
|
|
79
79
|
.ui.dropdown .menu > .item .dropdown.icon {
|
80
80
|
width: auto;
|
81
81
|
float: right;
|
82
|
-
margin:
|
82
|
+
margin: 0em 0em 0em 1em;
|
83
83
|
}
|
84
84
|
.ui.dropdown .menu > .item .dropdown.icon + .text {
|
85
85
|
margin-right: 1em;
|
@@ -106,9 +106,9 @@
|
|
106
106
|
border: none;
|
107
107
|
height: auto;
|
108
108
|
border-top: none;
|
109
|
-
line-height:
|
109
|
+
line-height: 1em;
|
110
110
|
color: rgba(0, 0, 0, 0.8);
|
111
|
-
padding: 0.
|
111
|
+
padding: 0.71428571em 1.14285714em !important;
|
112
112
|
font-size: 1rem;
|
113
113
|
text-transform: none;
|
114
114
|
font-weight: normal;
|
@@ -139,7 +139,7 @@
|
|
139
139
|
.ui.dropdown .menu .item > .flag.floated,
|
140
140
|
.ui.dropdown .menu .item > .image.floated,
|
141
141
|
.ui.dropdown .menu .item > img.floated {
|
142
|
-
margin-top:
|
142
|
+
margin-top: 0em;
|
143
143
|
}
|
144
144
|
|
145
145
|
/*--------------
|
@@ -148,7 +148,7 @@
|
|
148
148
|
|
149
149
|
.ui.dropdown .menu > .header {
|
150
150
|
margin: 1rem 0rem 0.75rem;
|
151
|
-
padding: 0em 1.
|
151
|
+
padding: 0em 1.14285714em;
|
152
152
|
color: rgba(0, 0, 0, 0.85);
|
153
153
|
font-size: 0.8em;
|
154
154
|
font-weight: bold;
|
@@ -160,7 +160,7 @@
|
|
160
160
|
margin: 0.5em 0em;
|
161
161
|
}
|
162
162
|
.ui.dropdown .menu > .input {
|
163
|
-
margin: 0.75rem 1.
|
163
|
+
margin: 0.75rem 1.14285714em;
|
164
164
|
min-width: 200px;
|
165
165
|
}
|
166
166
|
.ui.dropdown .menu > .header + .input {
|
@@ -228,7 +228,7 @@
|
|
228
228
|
.ui.dropdown .menu > .item > .flag,
|
229
229
|
.ui.dropdown .menu > .item > .image,
|
230
230
|
.ui.dropdown .menu > .item > img {
|
231
|
-
margin-top:
|
231
|
+
margin-top: 0em;
|
232
232
|
}
|
233
233
|
.ui.dropdown > .text > .icon,
|
234
234
|
.ui.dropdown > .text > .label,
|
@@ -241,6 +241,7 @@
|
|
241
241
|
.ui.dropdown .menu > .item > .image,
|
242
242
|
.ui.dropdown .menu > .item > img {
|
243
243
|
margin-left: 0em;
|
244
|
+
float: none;
|
244
245
|
margin-right: 0.75em;
|
245
246
|
}
|
246
247
|
|
@@ -385,28 +386,28 @@ select.ui.dropdown {
|
|
385
386
|
/* Scrollbar in IE */
|
386
387
|
@media all and (-ms-high-contrast: none) {
|
387
388
|
.ui.selection.dropdown .menu {
|
388
|
-
min-width: -webkit-calc(
|
389
|
-
min-width: calc(
|
389
|
+
min-width: -webkit-calc(100% - 15px );
|
390
|
+
min-width: calc(100% - 15px );
|
390
391
|
}
|
391
392
|
}
|
392
393
|
@media only screen and (max-width: 767px) {
|
393
394
|
.ui.selection.dropdown .menu {
|
394
|
-
max-height: 7.
|
395
|
+
max-height: 7.49991429em;
|
395
396
|
}
|
396
397
|
}
|
397
398
|
@media only screen and (min-width: 768px) {
|
398
399
|
.ui.selection.dropdown .menu {
|
399
|
-
max-height:
|
400
|
+
max-height: 9.99988571em;
|
400
401
|
}
|
401
402
|
}
|
402
403
|
@media only screen and (min-width: 992px) {
|
403
404
|
.ui.selection.dropdown .menu {
|
404
|
-
max-height:
|
405
|
+
max-height: 14.99982857em;
|
405
406
|
}
|
406
407
|
}
|
407
408
|
@media only screen and (min-width: 1920px) {
|
408
409
|
.ui.selection.dropdown .menu {
|
409
|
-
max-height:
|
410
|
+
max-height: 19.99977143em;
|
410
411
|
}
|
411
412
|
}
|
412
413
|
|
@@ -414,10 +415,10 @@ select.ui.dropdown {
|
|
414
415
|
.ui.selection.dropdown .menu > .item {
|
415
416
|
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
416
417
|
padding-left: 1.1em !important;
|
417
|
-
|
418
|
+
|
418
419
|
/* Add in spacing for scroll bar */
|
419
|
-
padding-right: -webkit-calc(
|
420
|
-
padding-right: calc(
|
420
|
+
padding-right: -webkit-calc( 1.1em + 1em) !important;
|
421
|
+
padding-right: calc( 1.1em + 1em) !important;
|
421
422
|
white-space: normal;
|
422
423
|
word-wrap: normal;
|
423
424
|
}
|
@@ -438,21 +439,25 @@ select.ui.dropdown {
|
|
438
439
|
opacity: 0.3 !important;
|
439
440
|
}
|
440
441
|
|
441
|
-
/* Visible
|
442
|
-
.ui.selection.visible
|
442
|
+
/* Visible */
|
443
|
+
.ui.selection.dropdown.visible {
|
443
444
|
border-color: rgba(39, 41, 43, 0.3);
|
444
445
|
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
|
445
446
|
}
|
446
|
-
.ui.selection.visible.dropdown
|
447
|
-
border:
|
448
|
-
box-shadow: 0px 2px 6px 0px rgba(
|
447
|
+
.ui.selection.visible.dropdown .menu {
|
448
|
+
border-color: rgba(39, 41, 43, 0.3);
|
449
|
+
box-shadow: 0px 2px 6px 0px rgba(39, 41, 43, 0.15);
|
449
450
|
}
|
450
451
|
|
451
|
-
/* Visible */
|
452
|
-
.ui.selection.dropdown
|
453
|
-
border-color: rgba(39, 41, 43, 0.
|
452
|
+
/* Visible Hover */
|
453
|
+
.ui.selection.visible.dropdown:hover {
|
454
|
+
border-color: rgba(39, 41, 43, 0.3);
|
454
455
|
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
|
455
456
|
}
|
457
|
+
.ui.selection.visible.dropdown .menu {
|
458
|
+
border-color: rgba(39, 41, 43, 0.3);
|
459
|
+
box-shadow: 0px 2px 6px 0px rgba(39, 41, 43, 0.15);
|
460
|
+
}
|
456
461
|
|
457
462
|
/* Active Item */
|
458
463
|
.ui.selection.active.dropdown > .text:not(.default),
|
@@ -540,22 +545,22 @@ select.ui.dropdown {
|
|
540
545
|
}
|
541
546
|
@media only screen and (max-width: 767px) {
|
542
547
|
.ui.search.dropdown .menu {
|
543
|
-
max-height: 7.
|
548
|
+
max-height: 7.49991429em;
|
544
549
|
}
|
545
550
|
}
|
546
551
|
@media only screen and (min-width: 768px) {
|
547
552
|
.ui.search.dropdown .menu {
|
548
|
-
max-height:
|
553
|
+
max-height: 9.99988571em;
|
549
554
|
}
|
550
555
|
}
|
551
556
|
@media only screen and (min-width: 992px) {
|
552
557
|
.ui.search.dropdown .menu {
|
553
|
-
max-height:
|
558
|
+
max-height: 14.99982857em;
|
554
559
|
}
|
555
560
|
}
|
556
561
|
@media only screen and (min-width: 1920px) {
|
557
562
|
.ui.search.dropdown .menu {
|
558
|
-
max-height:
|
563
|
+
max-height: 19.99977143em;
|
559
564
|
}
|
560
565
|
}
|
561
566
|
|
@@ -596,7 +601,7 @@ select.ui.dropdown {
|
|
596
601
|
.ui.dropdown .menu > .item:hover {
|
597
602
|
background: rgba(0, 0, 0, 0.05);
|
598
603
|
color: rgba(0, 0, 0, 0.8);
|
599
|
-
z-index:
|
604
|
+
z-index: 13;
|
600
605
|
}
|
601
606
|
|
602
607
|
/*--------------------
|
@@ -662,7 +667,7 @@ select.ui.dropdown {
|
|
662
667
|
visibility: hidden;
|
663
668
|
}
|
664
669
|
.ui.dropdown .filtered.item {
|
665
|
-
display: none;
|
670
|
+
display: none !important;
|
666
671
|
}
|
667
672
|
|
668
673
|
/*--------------------
|
@@ -744,13 +749,13 @@ select.ui.dropdown {
|
|
744
749
|
.ui.dropdown .left.menu .item .dropdown.icon {
|
745
750
|
width: auto;
|
746
751
|
float: left;
|
747
|
-
margin:
|
752
|
+
margin: 0em 0.75em 0em 0em;
|
748
753
|
}
|
749
754
|
.ui.dropdown .item .left.dropdown.icon,
|
750
755
|
.ui.dropdown .left.menu .item .dropdown.icon {
|
751
756
|
width: auto;
|
752
757
|
float: left;
|
753
|
-
margin:
|
758
|
+
margin: 0em 0.75em 0em 0em;
|
754
759
|
}
|
755
760
|
.ui.dropdown .item .left.dropdown.icon + .text,
|
756
761
|
.ui.dropdown .left.menu .item .dropdown.icon + .text {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 1.11.
|
2
|
+
* # Semantic UI 1.11.5 - Item
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -333,7 +333,7 @@
|
|
333
333
|
|
334
334
|
.ui.cards > .card .dimmer,
|
335
335
|
.ui.card .dimmer {
|
336
|
-
background: '';
|
336
|
+
background-color: '';
|
337
337
|
z-index: 10;
|
338
338
|
}
|
339
339
|
|
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: 1.11.
|
4
|
+
version: 1.11.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- doabit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -156,6 +156,7 @@ files:
|
|
156
156
|
- app/assets/fonts/semantic-ui/icons.svg
|
157
157
|
- app/assets/fonts/semantic-ui/icons.ttf
|
158
158
|
- app/assets/fonts/semantic-ui/icons.woff
|
159
|
+
- app/assets/fonts/semantic-ui/icons.woff2
|
159
160
|
- app/assets/images/semantic-ui/flags.png
|
160
161
|
- app/assets/javascripts/semantic-ui.js
|
161
162
|
- app/assets/javascripts/semantic-ui/accordion.js
|