less-rails-semantic_ui 2.2.13.0 → 2.3.0.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/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.eot +0 -0
- data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.svg +946 -2670
- data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.ttf +0 -0
- data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.woff +0 -0
- data/assets/fonts/semantic_ui/themes/default/assets/fonts/icons.woff2 +0 -0
- data/assets/javascripts/semantic_ui/definitions/behaviors/form.js +7 -7
- data/assets/javascripts/semantic_ui/definitions/behaviors/visibility.js +2 -2
- data/assets/javascripts/semantic_ui/definitions/modules/accordion.js +5 -2
- data/assets/javascripts/semantic_ui/definitions/modules/dimmer.js +2 -0
- data/assets/javascripts/semantic_ui/definitions/modules/dropdown.js +48 -10
- data/assets/javascripts/semantic_ui/definitions/modules/modal.js +34 -42
- data/assets/javascripts/semantic_ui/definitions/modules/popup.js +49 -12
- data/assets/javascripts/semantic_ui/definitions/modules/search.js +71 -18
- data/assets/stylesheets/semantic_ui/definitions/collections/menu.less +9 -0
- data/assets/stylesheets/semantic_ui/definitions/collections/table.less +7 -2
- data/assets/stylesheets/semantic_ui/definitions/elements/button.less +1 -1
- data/assets/stylesheets/semantic_ui/definitions/elements/header.less +1 -1
- data/assets/stylesheets/semantic_ui/definitions/elements/icon.less +2 -2
- data/assets/stylesheets/semantic_ui/definitions/elements/image.less +4 -0
- data/assets/stylesheets/semantic_ui/definitions/elements/input.less +35 -35
- data/assets/stylesheets/semantic_ui/definitions/elements/label.less +1 -0
- data/assets/stylesheets/semantic_ui/definitions/elements/list.less +14 -14
- data/assets/stylesheets/semantic_ui/definitions/elements/reveal.less +8 -0
- data/assets/stylesheets/semantic_ui/definitions/globals/site.less +1 -0
- data/assets/stylesheets/semantic_ui/definitions/modules/dimmer.less +22 -9
- data/assets/stylesheets/semantic_ui/definitions/modules/dropdown.less +1 -1
- data/assets/stylesheets/semantic_ui/definitions/modules/modal.less +16 -21
- data/assets/stylesheets/semantic_ui/definitions/modules/popup.less +1 -1
- data/assets/stylesheets/semantic_ui/definitions/modules/rating.less +1 -1
- data/assets/stylesheets/semantic_ui/definitions/modules/search.less +34 -17
- data/assets/stylesheets/semantic_ui/themes/default/collections/breadcrumb.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/collections/form.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/collections/menu.variables +20 -20
- data/assets/stylesheets/semantic_ui/themes/default/collections/message.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/collections/table.variables +7 -6
- data/assets/stylesheets/semantic_ui/themes/default/elements/button.variables +4 -4
- data/assets/stylesheets/semantic_ui/themes/default/elements/divider.variables +2 -2
- data/assets/stylesheets/semantic_ui/themes/default/elements/flag.overrides +4 -0
- data/assets/stylesheets/semantic_ui/themes/default/elements/header.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/elements/icon.overrides +1263 -879
- data/assets/stylesheets/semantic_ui/themes/default/elements/label.variables +3 -3
- data/assets/stylesheets/semantic_ui/themes/default/elements/list.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/elements/reveal.variables +2 -1
- data/assets/stylesheets/semantic_ui/themes/default/elements/step.variables +3 -3
- data/assets/stylesheets/semantic_ui/themes/default/globals/site.variables +7 -2
- data/assets/stylesheets/semantic_ui/themes/default/modules/accordion.overrides +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/modules/accordion.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/modules/checkbox.variables +2 -2
- data/assets/stylesheets/semantic_ui/themes/default/modules/dimmer.variables +2 -5
- data/assets/stylesheets/semantic_ui/themes/default/modules/dropdown.variables +6 -6
- data/assets/stylesheets/semantic_ui/themes/default/modules/modal.variables +33 -29
- data/assets/stylesheets/semantic_ui/themes/default/modules/popup.variables +4 -3
- data/assets/stylesheets/semantic_ui/themes/default/modules/progress.variables +2 -2
- data/assets/stylesheets/semantic_ui/themes/default/modules/search.variables +8 -5
- data/assets/stylesheets/semantic_ui/themes/default/modules/transition.overrides +54 -2
- data/assets/stylesheets/semantic_ui/themes/default/views/ad.variables +2 -2
- data/assets/stylesheets/semantic_ui/themes/default/views/card.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/views/comment.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/views/feed.variables +4 -4
- data/assets/stylesheets/semantic_ui/themes/default/views/item.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/views/statistic.variables +4 -4
- data/lib/less/rails/semantic_ui/version.rb +1 -1
- metadata +4 -3
@@ -34,11 +34,7 @@
|
|
34
34
|
|
35
35
|
.ui.modal {
|
36
36
|
display: none;
|
37
|
-
position: fixed;
|
38
37
|
z-index: @zIndex;
|
39
|
-
|
40
|
-
top: 50%;
|
41
|
-
left: 50%;
|
42
38
|
text-align: left;
|
43
39
|
|
44
40
|
background: @background;
|
@@ -46,6 +42,8 @@
|
|
46
42
|
box-shadow: @boxShadow;
|
47
43
|
transform-origin: @transformOrigin;
|
48
44
|
|
45
|
+
flex: 0 0 auto;
|
46
|
+
|
49
47
|
border-radius: @borderRadius;
|
50
48
|
user-select: text;
|
51
49
|
will-change: top, left, margin, transform, opacity;
|
@@ -347,14 +345,26 @@
|
|
347
345
|
Variations
|
348
346
|
*******************************/
|
349
347
|
|
348
|
+
/*--------------
|
349
|
+
Top Aligned
|
350
|
+
---------------*/
|
351
|
+
|
352
|
+
/* Top Aligned Modal */
|
353
|
+
.modals.dimmer[class*="top aligned"] .modal {
|
354
|
+
margin: @topAlignedMargin auto;
|
355
|
+
}
|
356
|
+
|
350
357
|
/*--------------
|
351
358
|
Scrolling
|
352
359
|
---------------*/
|
353
360
|
|
354
|
-
/*
|
361
|
+
/* Scrolling Dimmer */
|
355
362
|
.scrolling.dimmable.dimmed {
|
356
363
|
overflow: hidden;
|
357
364
|
}
|
365
|
+
.scrolling.dimmable > .dimmer {
|
366
|
+
justify-content: flex-start;
|
367
|
+
}
|
358
368
|
.scrolling.dimmable.dimmed > .dimmer {
|
359
369
|
overflow: auto;
|
360
370
|
-webkit-overflow-scrolling: touch;
|
@@ -363,11 +373,10 @@
|
|
363
373
|
position: fixed;
|
364
374
|
}
|
365
375
|
.modals.dimmer .ui.scrolling.modal {
|
366
|
-
position: static !important;
|
367
376
|
margin: @scrollingMargin auto !important;
|
368
377
|
}
|
369
378
|
|
370
|
-
/*
|
379
|
+
/* Undetached Scrolling */
|
371
380
|
.scrolling.undetached.dimmable.dimmed {
|
372
381
|
overflow: auto;
|
373
382
|
-webkit-overflow-scrolling: touch;
|
@@ -381,26 +390,12 @@
|
|
381
390
|
margin-top: @scrollingMargin !important;
|
382
391
|
}
|
383
392
|
|
384
|
-
/* Coupling with Sidebar */
|
385
|
-
.undetached.dimmable.dimmed > .pusher {
|
386
|
-
z-index: auto;
|
387
|
-
}
|
388
|
-
|
389
|
-
@media only screen and (max-width : @largestTabletScreen) {
|
390
|
-
.modals.dimmer .ui.scrolling.modal {
|
391
|
-
margin-top: @mobileScrollingMargin !important;
|
392
|
-
margin-bottom: @mobileScrollingMargin !important;
|
393
|
-
}
|
394
|
-
}
|
395
|
-
|
396
393
|
/* Scrolling Content */
|
397
|
-
|
398
394
|
.ui.modal .scrolling.content {
|
399
395
|
max-height: @scrollingContentMaxHeight;
|
400
396
|
overflow: auto;
|
401
397
|
}
|
402
398
|
|
403
|
-
|
404
399
|
/*--------------
|
405
400
|
Full Screen
|
406
401
|
---------------*/
|
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
text-shadow: none;
|
46
46
|
font-style: normal;
|
47
|
-
font-weight: normal;
|
47
|
+
font-weight: @normal;
|
48
48
|
|
49
49
|
line-height: @promptLineHeight;
|
50
50
|
padding: @promptPadding;
|
@@ -325,11 +325,16 @@
|
|
325
325
|
width: @categoryResultsWidth;
|
326
326
|
}
|
327
327
|
|
328
|
+
.ui.category.search .results.animating,
|
329
|
+
.ui.category.search .results.visible {
|
330
|
+
display: table;
|
331
|
+
}
|
332
|
+
|
328
333
|
/* Category */
|
329
334
|
.ui.category.search > .results .category {
|
335
|
+
display: table-row;
|
330
336
|
background: @categoryBackground;
|
331
337
|
box-shadow: @categoryBoxShadow;
|
332
|
-
border-bottom: @categoryDivider;
|
333
338
|
transition: @categoryTransition;
|
334
339
|
}
|
335
340
|
|
@@ -346,30 +351,32 @@
|
|
346
351
|
border-radius: 0em 0em @resultsBorderRadius 0em;
|
347
352
|
}
|
348
353
|
|
349
|
-
/* Category Result */
|
350
|
-
.ui.category.search > .results .category .result {
|
351
|
-
background: @categoryResultBackground;
|
352
|
-
margin-left: @categoryNameWidth;
|
353
|
-
border-left: @categoryResultLeftBorder;
|
354
|
-
border-bottom: @categoryResultDivider;
|
355
|
-
transition: @categoryResultTransition;
|
356
|
-
padding: @categoryResultPadding;
|
357
|
-
}
|
358
|
-
.ui.category.search > .results .category:last-child .result:last-child {
|
359
|
-
border-bottom: @categoryResultLastDivider;
|
360
|
-
}
|
361
|
-
|
362
354
|
/* Category Result Name */
|
363
355
|
.ui.category.search > .results .category > .name {
|
356
|
+
display: table-cell;
|
357
|
+
text-overflow: ellipsis;
|
364
358
|
width: @categoryNameWidth;
|
359
|
+
white-space: @categoryNameWhitespace;
|
365
360
|
background: @categoryNameBackground;
|
366
361
|
font-family: @categoryNameFont;
|
367
362
|
font-size: @categoryNameFontSize;
|
368
|
-
float: @categoryNameFontSize;
|
369
|
-
float: @categoryNameFloat;
|
370
363
|
padding: @categoryNamePadding;
|
371
364
|
font-weight: @categoryNameFontWeight;
|
372
365
|
color: @categoryNameColor;
|
366
|
+
border-bottom: @categoryDivider;
|
367
|
+
}
|
368
|
+
|
369
|
+
/* Category Result */
|
370
|
+
.ui.category.search > .results .category .results {
|
371
|
+
display: table-cell;
|
372
|
+
background: @categoryResultBackground;
|
373
|
+
border-left: @categoryResultLeftBorder;
|
374
|
+
border-bottom: @categoryDivider;
|
375
|
+
}
|
376
|
+
.ui.category.search > .results .category .result {
|
377
|
+
border-bottom: @categoryResultDivider;
|
378
|
+
transition: @categoryResultTransition;
|
379
|
+
padding: @categoryResultPadding;
|
373
380
|
}
|
374
381
|
|
375
382
|
/*******************************
|
@@ -424,4 +431,14 @@
|
|
424
431
|
font-size: @relativeMassive;
|
425
432
|
}
|
426
433
|
|
434
|
+
/*--------------
|
435
|
+
Mobile
|
436
|
+
---------------*/
|
437
|
+
|
438
|
+
@media only screen and (max-width: @largestMobileScreen) {
|
439
|
+
.ui.search .results {
|
440
|
+
max-width: @mobileMaxWidth;
|
441
|
+
}
|
442
|
+
}
|
443
|
+
|
427
444
|
.loadUIOverrides();
|
@@ -13,7 +13,7 @@
|
|
13
13
|
@background: #FFFFFF;
|
14
14
|
@fontFamily: @pageFont;
|
15
15
|
@itemBackground: none;
|
16
|
-
@fontWeight: normal;
|
16
|
+
@fontWeight: @normal;
|
17
17
|
@borderWidth: 1px;
|
18
18
|
@border: @borderWidth solid @borderColor;
|
19
19
|
@boxShadow: @subtleShadow;
|
@@ -29,7 +29,7 @@
|
|
29
29
|
box-shadow @defaultDuration @defaultEasing,
|
30
30
|
color @defaultDuration @defaultEasing
|
31
31
|
;
|
32
|
-
@itemFontWeight: normal;
|
32
|
+
@itemFontWeight: @normal;
|
33
33
|
@itemTextColor: @textColor;
|
34
34
|
|
35
35
|
/* Divider */
|
@@ -64,8 +64,8 @@
|
|
64
64
|
|
65
65
|
/* Header */
|
66
66
|
@headerBackground: '';
|
67
|
-
@headerWeight: bold;
|
68
|
-
@headerTextTransform: normal;
|
67
|
+
@headerWeight: @bold;
|
68
|
+
@headerTextTransform: @normal;
|
69
69
|
|
70
70
|
/* Vertical Icon */
|
71
71
|
@verticalIconFloat: right;
|
@@ -74,7 +74,7 @@
|
|
74
74
|
/* Vertical Header */
|
75
75
|
@verticalHeaderMargin: 0em 0em 0.5em;
|
76
76
|
@verticalHeaderFontSize: @relativeMedium;
|
77
|
-
@verticalHeaderFontWeight: bold;
|
77
|
+
@verticalHeaderFontWeight: @bold;
|
78
78
|
|
79
79
|
/* Pointing Arrow */
|
80
80
|
@arrowSize: @relative8px;
|
@@ -136,7 +136,7 @@
|
|
136
136
|
@dropdownItemBackground: transparent;
|
137
137
|
@dropdownItemColor: @textColor;
|
138
138
|
@dropdownItemTextTransform: none;
|
139
|
-
@dropdownItemFontWeight: normal;
|
139
|
+
@dropdownItemFontWeight: @normal;
|
140
140
|
@dropdownItemBoxShadow: none;
|
141
141
|
@dropdownItemTransition: none;
|
142
142
|
|
@@ -169,7 +169,7 @@
|
|
169
169
|
/* Active Item */
|
170
170
|
@activeItemBackground: @transparentBlack;
|
171
171
|
@activeItemTextColor: @selectedTextColor;
|
172
|
-
@activeItemFontWeight: normal;
|
172
|
+
@activeItemFontWeight: @normal;
|
173
173
|
@activeIconOpacity: 1;
|
174
174
|
@activeItemBoxShadow: none;
|
175
175
|
|
@@ -184,12 +184,12 @@
|
|
184
184
|
/* Active Dropdown */
|
185
185
|
@dropdownActiveItemBackground: @subtleTransparentBlack;
|
186
186
|
@dropdownActiveItemColor: @selectedTextColor;
|
187
|
-
@dropdownActiveItemFontWeight: bold;
|
187
|
+
@dropdownActiveItemFontWeight: @bold;
|
188
188
|
|
189
189
|
/* Active Sub Menu */
|
190
190
|
@subMenuActiveBackground: transparent;
|
191
191
|
@subMenuActiveTextColor: @activeItemTextColor;
|
192
|
-
@subMenuActiveFontWeight: bold;
|
192
|
+
@subMenuActiveFontWeight: @bold;
|
193
193
|
|
194
194
|
|
195
195
|
/*--------------
|
@@ -252,7 +252,7 @@
|
|
252
252
|
|
253
253
|
@secondaryPointingActiveBorderColor: @black;
|
254
254
|
@secondaryPointingActiveTextColor: @selectedTextColor;
|
255
|
-
@secondaryPointingActiveFontWeight: bold;
|
255
|
+
@secondaryPointingActiveFontWeight: @bold;
|
256
256
|
|
257
257
|
@secondaryPointingActiveDropdownBorderColor: transparent;
|
258
258
|
|
@@ -285,8 +285,8 @@
|
|
285
285
|
@tieredActiveItemBackground: #FCFCFC;
|
286
286
|
@tieredActiveMenuBackground: #FCFCFC;
|
287
287
|
|
288
|
-
@tieredSubMenuTextTransform: normal;
|
289
|
-
@tieredSubMenuFontWeight: normal;
|
288
|
+
@tieredSubMenuTextTransform: @normal;
|
289
|
+
@tieredSubMenuFontWeight: @normal;
|
290
290
|
|
291
291
|
@tieredSubMenuColor: @lightTextColor;
|
292
292
|
|
@@ -326,7 +326,7 @@
|
|
326
326
|
@tabularActiveBackground: none @white;
|
327
327
|
@tabularActiveColor: @selectedTextColor;
|
328
328
|
@tabularActiveBoxShadow: none;
|
329
|
-
@tabularActiveWeight: bold;
|
329
|
+
@tabularActiveWeight: @bold;
|
330
330
|
|
331
331
|
|
332
332
|
|
@@ -346,7 +346,7 @@
|
|
346
346
|
@textMenuItemSpacing: @relative7px;
|
347
347
|
@textMenuMargin: @relativeMedium -(@textMenuItemSpacing);
|
348
348
|
@textMenuItemColor: @mutedTextColor;
|
349
|
-
@textMenuItemFontWeight: normal;
|
349
|
+
@textMenuItemFontWeight: @normal;
|
350
350
|
@textMenuItemMargin: 0em 0em;
|
351
351
|
@textMenuItemPadding: @relative5px @textMenuItemSpacing;
|
352
352
|
@textMenuItemTransition: opacity @defaultDuration @defaultEasing;
|
@@ -355,12 +355,12 @@
|
|
355
355
|
@textMenuSubMenuItemMargin: 0em;
|
356
356
|
@textMenuSubMenuItemPadding: @relative7px 0em;
|
357
357
|
|
358
|
-
@textMenuActiveItemFontWeight: normal;
|
358
|
+
@textMenuActiveItemFontWeight: @normal;
|
359
359
|
@textMenuActiveItemColor: @selectedTextColor;
|
360
360
|
|
361
361
|
@textMenuHeaderSize: @relativeSmall;
|
362
362
|
@textMenuHeaderColor: @darkTextColor;
|
363
|
-
@textMenuHeaderFontWeight: bold;
|
363
|
+
@textMenuHeaderFontWeight: @bold;
|
364
364
|
@textMenuHeaderTextTransform: uppercase;
|
365
365
|
|
366
366
|
@textVerticalMenuMargin: @relativeMedium 0em;
|
@@ -443,8 +443,8 @@
|
|
443
443
|
@tiny: @12px;
|
444
444
|
@small: @13px;
|
445
445
|
@large: @15px;
|
446
|
-
@
|
447
|
-
@
|
446
|
+
@big: @16px;
|
447
|
+
@huge: @17px;
|
448
448
|
@massive: @18px;
|
449
449
|
|
450
450
|
/* Sizes */
|
@@ -453,6 +453,6 @@
|
|
453
453
|
@smallWidth: 13rem;
|
454
454
|
@mediumWidth: 15rem;
|
455
455
|
@largeWidth: 18rem;
|
456
|
-
@
|
457
|
-
@
|
456
|
+
@bigWidth: 20rem;
|
457
|
+
@hugeWidth: 22rem;
|
458
458
|
@massiveWidth: 25rem;
|
@@ -47,7 +47,7 @@
|
|
47
47
|
@headerVerticalPadding: @relativeSmall;
|
48
48
|
@headerHorizontalPadding: @cellHorizontalPadding;
|
49
49
|
@headerFontStyle: none;
|
50
|
-
@headerFontWeight: bold;
|
50
|
+
@headerFontWeight: @bold;
|
51
51
|
@headerTextTransform: none;
|
52
52
|
@headerBoxShadow: none;
|
53
53
|
|
@@ -61,8 +61,8 @@
|
|
61
61
|
@footerColor: @textColor;
|
62
62
|
@footerVerticalPadding: @cellVerticalPadding;
|
63
63
|
@footerHorizontalPadding: @cellHorizontalPadding;
|
64
|
-
@footerFontStyle: normal;
|
65
|
-
@footerFontWeight: normal;
|
64
|
+
@footerFontStyle: @normal;
|
65
|
+
@footerFontWeight: @normal;
|
66
66
|
@footerTextTransform: none;
|
67
67
|
|
68
68
|
/* Responsive Size */
|
@@ -73,6 +73,7 @@
|
|
73
73
|
@responsiveCellVerticalPadding: 0.25em;
|
74
74
|
@responsiveCellHorizontalPadding: 0.75em;
|
75
75
|
@responsiveCellBoxShadow: none !important;
|
76
|
+
@responsiveCellHeaderFontWeight: @bold;
|
76
77
|
|
77
78
|
/*-------------------
|
78
79
|
Types
|
@@ -83,14 +84,14 @@
|
|
83
84
|
|
84
85
|
@definitionHeaderBackground: transparent;
|
85
86
|
@definitionHeaderColor: @unselectedTextColor;
|
86
|
-
@definitionHeaderFontWeight: normal;
|
87
|
+
@definitionHeaderFontWeight: @normal;
|
87
88
|
|
88
89
|
@definitionFooterBackground: @definitionHeaderBackground;
|
89
90
|
@definitionFooterColor: @definitionHeaderColor;
|
90
91
|
@definitionFooterFontWeight: @definitionHeaderFontWeight;
|
91
92
|
|
92
93
|
@definitionColumnBackground: @subtleTransparentBlack;
|
93
|
-
@definitionColumnFontWeight: bold;
|
94
|
+
@definitionColumnFontWeight: @bold;
|
94
95
|
@definitionColumnColor: @selectedTextColor;
|
95
96
|
@definitionColumnFontSize: @relativeMedium;
|
96
97
|
@definitionColumnTextTransform: '';
|
@@ -213,7 +214,7 @@
|
|
213
214
|
|
214
215
|
@invertedDefinitionColumnBackground: @subtleTransparentWhite;
|
215
216
|
@invertedDefinitionColumnColor: @invertedSelectedTextColor;
|
216
|
-
@invertedDefinitionColumnFontWeight: bold;
|
217
|
+
@invertedDefinitionColumnFontWeight: @bold;
|
217
218
|
|
218
219
|
/* Basic */
|
219
220
|
@basicTableBackground: transparent;
|
@@ -22,7 +22,7 @@
|
|
22
22
|
@textTransform: none;
|
23
23
|
@tapColor: transparent;
|
24
24
|
@fontFamily: @pageFont;
|
25
|
-
@fontWeight: bold;
|
25
|
+
@fontWeight: @bold;
|
26
26
|
@textColor: rgba(0, 0, 0, 0.6);
|
27
27
|
@textShadow: none;
|
28
28
|
@invertedTextShadow: @textShadow;
|
@@ -152,8 +152,8 @@
|
|
152
152
|
|
153
153
|
@orBackgroundColor: @white;
|
154
154
|
@orTextShadow: @invertedTextShadow;
|
155
|
-
@orTextStyle: normal;
|
156
|
-
@orTextWeight: bold;
|
155
|
+
@orTextStyle: @normal;
|
156
|
+
@orTextWeight: @bold;
|
157
157
|
@orTextColor: @lightTextColor;
|
158
158
|
|
159
159
|
|
@@ -198,7 +198,7 @@
|
|
198
198
|
@basicColoredBorderSize: 1px;
|
199
199
|
|
200
200
|
@basicBackground: transparent none;
|
201
|
-
@basicFontWeight: normal;
|
201
|
+
@basicFontWeight: @normal;
|
202
202
|
@basicBorder: 1px solid @borderColor;
|
203
203
|
@basicBoxShadow: 0px 0px 0px @basicBorderSize @borderColor inset;
|
204
204
|
@basicLoadingColor: @offWhite;
|
@@ -261,6 +261,10 @@ i.flag.eh:before,
|
|
261
261
|
i.flag.western.sahara:before {
|
262
262
|
background-position: 0px -1664px;
|
263
263
|
}
|
264
|
+
i.flag.gb.eng:before,
|
265
|
+
i.flag.england:before {
|
266
|
+
background-position: 0px -1690px;
|
267
|
+
}
|
264
268
|
i.flag.er:before,
|
265
269
|
i.flag.eritrea:before {
|
266
270
|
background-position: 0px -1716px;
|