semantic-ui-sass 2.3.1.2 → 2.4.4.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/.gitignore +2 -0
- data/.travis.yml +4 -2
- data/CHANGELOG.md +124 -100
- data/README.md +87 -16
- data/app/assets/javascripts/semantic-ui/dimmer.js +27 -4
- data/app/assets/javascripts/semantic-ui/dropdown.js +41 -9
- data/app/assets/javascripts/semantic-ui/embed.js +11 -1
- data/app/assets/javascripts/semantic-ui/modal.js +85 -10
- data/app/assets/javascripts/semantic-ui/popup.js +14 -5
- data/app/assets/javascripts/semantic-ui/search.js +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +5 -5
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +28 -28
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +11 -11
- 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/_all.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +153 -3
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +30 -31
- data/app/assets/stylesheets/semantic-ui/elements/_container_variables.scss +48 -0
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +36 -17
- 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 +22 -22
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +3 -1
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +239 -0
- 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 +65 -3
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +39 -37
- data/app/assets/stylesheets/semantic-ui/globals/_variables.scss +46 -2
- 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 +27 -13
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +38 -29
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +60 -35
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +2 -2
- 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 +4 -2
- 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 +2 -2
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +4 -4
- 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 +4 -4
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +23 -26
- data/lib/semantic-ui-sass.rb +2 -2
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/package.json +29 -0
- data/script.js +56 -0
- data/semantic-ui-sass.gemspec +2 -2
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/tasks/converter.rb +29 -2
- data/yarn.lock +4 -0
- metadata +19 -13
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.4.2 - Segment
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -103,6 +103,68 @@
|
|
103
103
|
*******************************/
|
104
104
|
|
105
105
|
|
106
|
+
/*-------------------
|
107
|
+
Placeholder
|
108
|
+
--------------------*/
|
109
|
+
|
110
|
+
.ui.placeholder.segment {
|
111
|
+
display: -webkit-box;
|
112
|
+
display: -ms-flexbox;
|
113
|
+
display: flex;
|
114
|
+
-webkit-box-orient: vertical;
|
115
|
+
-webkit-box-direction: normal;
|
116
|
+
-ms-flex-direction: column;
|
117
|
+
flex-direction: column;
|
118
|
+
-webkit-box-pack: center;
|
119
|
+
-ms-flex-pack: center;
|
120
|
+
justify-content: center;
|
121
|
+
-webkit-box-align: stretch;
|
122
|
+
-ms-flex-align: stretch;
|
123
|
+
align-items: stretch;
|
124
|
+
max-width: initial;
|
125
|
+
-webkit-animation: none;
|
126
|
+
animation: none;
|
127
|
+
overflow: visible;
|
128
|
+
padding: 1em 1em;
|
129
|
+
min-height: 18rem;
|
130
|
+
background: #F9FAFB;
|
131
|
+
border-color: rgba(34, 36, 38, 0.15);
|
132
|
+
-webkit-box-shadow: 0px 2px 25px 0 rgba(34, 36, 38, 0.05) inset;
|
133
|
+
box-shadow: 0px 2px 25px 0 rgba(34, 36, 38, 0.05) inset;
|
134
|
+
}
|
135
|
+
.ui.placeholder.segment .button,
|
136
|
+
.ui.placeholder.segment textarea {
|
137
|
+
display: block;
|
138
|
+
}
|
139
|
+
.ui.placeholder.segment .field,
|
140
|
+
.ui.placeholder.segment textarea,
|
141
|
+
.ui.placeholder.segment > .ui.input,
|
142
|
+
.ui.placeholder.segment .button {
|
143
|
+
max-width: 15rem;
|
144
|
+
margin-left: auto;
|
145
|
+
margin-right: auto;
|
146
|
+
}
|
147
|
+
.ui.placeholder.segment .column .button,
|
148
|
+
.ui.placeholder.segment .column .field,
|
149
|
+
.ui.placeholder.segment .column textarea,
|
150
|
+
.ui.placeholder.segment .column > .ui.input {
|
151
|
+
max-width: 15rem;
|
152
|
+
margin-left: auto;
|
153
|
+
margin-right: auto;
|
154
|
+
}
|
155
|
+
.ui.placeholder.segment > .inline {
|
156
|
+
-ms-flex-item-align: center;
|
157
|
+
align-self: center;
|
158
|
+
}
|
159
|
+
.ui.placeholder.segment > .inline > .button {
|
160
|
+
display: inline-block;
|
161
|
+
width: auto;
|
162
|
+
margin: 0px 0.35714286rem 0px 0px;
|
163
|
+
}
|
164
|
+
.ui.placeholder.segment > .inline > .button:last-child {
|
165
|
+
margin-right: 0px;
|
166
|
+
}
|
167
|
+
|
106
168
|
/*-------------------
|
107
169
|
Piled
|
108
170
|
--------------------*/
|
@@ -731,8 +793,8 @@
|
|
731
793
|
bottom: 0px;
|
732
794
|
border-radius: 0px;
|
733
795
|
margin: 0em -1px;
|
734
|
-
width: calc(100%
|
735
|
-
max-width: calc(100%
|
796
|
+
width: calc(100% - (-1px * 2));
|
797
|
+
max-width: calc(100% - (-1px * 2));
|
736
798
|
-webkit-box-shadow: none;
|
737
799
|
box-shadow: none;
|
738
800
|
border: 1px solid #D4D4D5;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.4.2 - Step
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -283,7 +283,7 @@
|
|
283
283
|
|
284
284
|
|
285
285
|
/* Mobile (Default) */
|
286
|
-
@media only screen and (max-width:
|
286
|
+
@media only screen and (max-width: $largest-mobile-screen) {
|
287
287
|
.ui.steps:not(.unstackable) {
|
288
288
|
display: -webkit-inline-box;
|
289
289
|
display: -ms-inline-flexbox;
|
@@ -425,7 +425,7 @@
|
|
425
425
|
|
426
426
|
|
427
427
|
/* Tablet Or Below */
|
428
|
-
@media only screen and (max-width:
|
428
|
+
@media only screen and (max-width: $largest-tablet-screen) {
|
429
429
|
.ui[class*="tablet stackable"].steps {
|
430
430
|
display: -webkit-inline-box;
|
431
431
|
display: -ms-inline-flexbox;
|
@@ -491,9 +491,9 @@
|
|
491
491
|
|
492
492
|
/* Top */
|
493
493
|
.ui.attached.steps {
|
494
|
-
width: calc(100% +
|
494
|
+
width: calc(100% + (--1px * 2)) !important;
|
495
495
|
margin: 0em -1px 0;
|
496
|
-
max-width: calc(100% +
|
496
|
+
max-width: calc(100% + (--1px * 2));
|
497
497
|
border-radius: 0.28571429rem 0.28571429rem 0em 0em;
|
498
498
|
}
|
499
499
|
.ui.attached.steps .step:first-child {
|
@@ -562,7 +562,7 @@
|
|
562
562
|
width: 14.285%;
|
563
563
|
}
|
564
564
|
.ui.eight.steps > .step {
|
565
|
-
width: 12.
|
565
|
+
width: 12.5%;
|
566
566
|
}
|
567
567
|
|
568
568
|
/*-------------------
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.4.2 - Site
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -155,42 +155,44 @@ input::selection {
|
|
155
155
|
color: rgba(0, 0, 0, 0.87);
|
156
156
|
}
|
157
157
|
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
158
|
+
@if $use-custom-scrollbars {
|
159
|
+
/* Force Simple Scrollbars */
|
160
|
+
body ::-webkit-scrollbar {
|
161
|
+
-webkit-appearance: none;
|
162
|
+
width: 10px;
|
163
|
+
height: 10px;
|
164
|
+
}
|
165
|
+
body ::-webkit-scrollbar-track {
|
166
|
+
background: rgba(0, 0, 0, 0.1);
|
167
|
+
border-radius: 0px;
|
168
|
+
}
|
169
|
+
body ::-webkit-scrollbar-thumb {
|
170
|
+
cursor: pointer;
|
171
|
+
border-radius: 5px;
|
172
|
+
background: rgba(0, 0, 0, 0.25);
|
173
|
+
-webkit-transition: color 0.2s ease;
|
174
|
+
transition: color 0.2s ease;
|
175
|
+
}
|
176
|
+
body ::-webkit-scrollbar-thumb:window-inactive {
|
177
|
+
background: rgba(0, 0, 0, 0.15);
|
178
|
+
}
|
179
|
+
body ::-webkit-scrollbar-thumb:hover {
|
180
|
+
background: rgba(128, 135, 139, 0.8);
|
181
|
+
}
|
182
|
+
|
183
|
+
/* Inverted UI */
|
184
|
+
body .ui.inverted::-webkit-scrollbar-track {
|
185
|
+
background: rgba(255, 255, 255, 0.1);
|
186
|
+
}
|
187
|
+
body .ui.inverted::-webkit-scrollbar-thumb {
|
188
|
+
background: rgba(255, 255, 255, 0.25);
|
189
|
+
}
|
190
|
+
body .ui.inverted::-webkit-scrollbar-thumb:window-inactive {
|
191
|
+
background: rgba(255, 255, 255, 0.15);
|
192
|
+
}
|
193
|
+
body .ui.inverted::-webkit-scrollbar-thumb:hover {
|
194
|
+
background: rgba(255, 255, 255, 0.35);
|
195
|
+
}
|
194
196
|
}
|
195
197
|
|
196
198
|
|
@@ -1,4 +1,48 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
/*******************************
|
2
|
+
Site Settings
|
3
|
+
*******************************/
|
4
|
+
|
5
|
+
/*-------------------
|
6
|
+
Fonts
|
7
|
+
--------------------*/
|
8
|
+
|
3
9
|
$font-name: 'Lato' !default;
|
4
10
|
$font-family: $font-name, 'Helvetica Neue', Arial, Helvetica, sans-serif !default;
|
11
|
+
$font-url: 'https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin,latin-ext' !default;
|
12
|
+
$import-google-fonts: true !default;
|
13
|
+
|
14
|
+
/*-------------------
|
15
|
+
Base Sizes
|
16
|
+
--------------------*/
|
17
|
+
|
18
|
+
/* This is the single variable that controls them all */
|
19
|
+
$em-size: 14px;
|
20
|
+
|
21
|
+
/*-------------------
|
22
|
+
Scroll Bars
|
23
|
+
--------------------*/
|
24
|
+
|
25
|
+
$use-custom-scrollbars: true !default;
|
26
|
+
|
27
|
+
/*-------------------
|
28
|
+
Breakpoints
|
29
|
+
--------------------*/
|
30
|
+
|
31
|
+
$mobile-breakpoint: 320px !default;
|
32
|
+
$tablet-breakpoint: 768px !default;
|
33
|
+
$computer-breakpoint: 992px !default;
|
34
|
+
$large-monitor-breakpoint: 1200px !default;
|
35
|
+
$widescreen-monitor-breakpoint: 1920px !default;
|
36
|
+
|
37
|
+
/*-------------------
|
38
|
+
Derived Values
|
39
|
+
--------------------*/
|
40
|
+
|
41
|
+
/* Rendered Scrollbar Width */
|
42
|
+
$scrollbar-width: 17px;
|
43
|
+
|
44
|
+
/* Responsive */
|
45
|
+
$largest-mobile-screen: ($tablet-breakpoint - 1px);
|
46
|
+
$largest-tablet-screen: ($computer-breakpoint - 1px);
|
47
|
+
$largest-small-monitor: ($large-monitor-breakpoint - 1px);
|
48
|
+
$largest-large-monitor: ($widescreen-monitor-breakpoint - 1px);
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.4.2 - Dimmer
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -67,18 +67,20 @@
|
|
67
67
|
border-radius: inherit !important;
|
68
68
|
}
|
69
69
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
70
|
+
@if $use-custom-scrollbars {
|
71
|
+
/* Scrollbars */
|
72
|
+
.ui.dimmer:not(.inverted)::-webkit-scrollbar-track {
|
73
|
+
background: rgba(255, 255, 255, 0.1);
|
74
|
+
}
|
75
|
+
.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb {
|
76
|
+
background: rgba(255, 255, 255, 0.25);
|
77
|
+
}
|
78
|
+
.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive {
|
79
|
+
background: rgba(255, 255, 255, 0.15);
|
80
|
+
}
|
81
|
+
.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover {
|
82
|
+
background: rgba(255, 255, 255, 0.35);
|
83
|
+
}
|
82
84
|
}
|
83
85
|
|
84
86
|
|
@@ -115,6 +117,18 @@
|
|
115
117
|
*******************************/
|
116
118
|
|
117
119
|
|
120
|
+
/*--------------
|
121
|
+
Legacy
|
122
|
+
---------------*/
|
123
|
+
|
124
|
+
|
125
|
+
/* Animating / Active / Visible */
|
126
|
+
.dimmed.dimmable > .ui.animating.legacy.dimmer,
|
127
|
+
.dimmed.dimmable > .ui.visible.legacy.dimmer,
|
128
|
+
.ui.active.legacy.dimmer {
|
129
|
+
display: block;
|
130
|
+
}
|
131
|
+
|
118
132
|
/*--------------
|
119
133
|
Alignment
|
120
134
|
---------------*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.4.2 - Dropdown
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -433,22 +433,22 @@ select.ui.dropdown {
|
|
433
433
|
.ui.selection.dropdown .menu > .message {
|
434
434
|
padding: 0.78571429rem 1.14285714rem;
|
435
435
|
}
|
436
|
-
@media only screen and (max-width:
|
436
|
+
@media only screen and (max-width: $largest-mobile-screen) {
|
437
437
|
.ui.selection.dropdown .menu {
|
438
438
|
max-height: 8.01428571rem;
|
439
439
|
}
|
440
440
|
}
|
441
|
-
@media only screen and (min-width:
|
441
|
+
@media only screen and (min-width: $tablet-breakpoint) {
|
442
442
|
.ui.selection.dropdown .menu {
|
443
443
|
max-height: 10.68571429rem;
|
444
444
|
}
|
445
445
|
}
|
446
|
-
@media only screen and (min-width:
|
446
|
+
@media only screen and (min-width: $computer-breakpoint) {
|
447
447
|
.ui.selection.dropdown .menu {
|
448
448
|
max-height: 16.02857143rem;
|
449
449
|
}
|
450
450
|
}
|
451
|
-
@media only screen and (min-width:
|
451
|
+
@media only screen and (min-width: $widescreen-monitor-breakpoint) {
|
452
452
|
.ui.selection.dropdown .menu {
|
453
453
|
max-height: 21.37142857rem;
|
454
454
|
}
|
@@ -519,7 +519,7 @@ select.ui.dropdown {
|
|
519
519
|
/* Dropdown Icon */
|
520
520
|
.ui.active.selection.dropdown > .dropdown.icon,
|
521
521
|
.ui.visible.selection.dropdown > .dropdown.icon {
|
522
|
-
opacity:
|
522
|
+
opacity: '';
|
523
523
|
z-index: 3;
|
524
524
|
}
|
525
525
|
|
@@ -619,22 +619,22 @@ select.ui.dropdown {
|
|
619
619
|
backface-visibility: hidden;
|
620
620
|
-webkit-overflow-scrolling: touch;
|
621
621
|
}
|
622
|
-
@media only screen and (max-width:
|
622
|
+
@media only screen and (max-width: $largest-mobile-screen) {
|
623
623
|
.ui.search.dropdown .menu {
|
624
624
|
max-height: 8.01428571rem;
|
625
625
|
}
|
626
626
|
}
|
627
|
-
@media only screen and (min-width:
|
627
|
+
@media only screen and (min-width: $tablet-breakpoint) {
|
628
628
|
.ui.search.dropdown .menu {
|
629
629
|
max-height: 10.68571429rem;
|
630
630
|
}
|
631
631
|
}
|
632
|
-
@media only screen and (min-width:
|
632
|
+
@media only screen and (min-width: $computer-breakpoint) {
|
633
633
|
.ui.search.dropdown .menu {
|
634
634
|
max-height: 16.02857143rem;
|
635
635
|
}
|
636
636
|
}
|
637
|
-
@media only screen and (min-width:
|
637
|
+
@media only screen and (min-width: $widescreen-monitor-breakpoint) {
|
638
638
|
.ui.search.dropdown .menu {
|
639
639
|
max-height: 21.37142857rem;
|
640
640
|
}
|
@@ -735,7 +735,7 @@ select.ui.dropdown {
|
|
735
735
|
color: inherit;
|
736
736
|
}
|
737
737
|
.ui.inline.dropdown .dropdown.icon {
|
738
|
-
margin: 0em 0.
|
738
|
+
margin: 0em 0.21428571em 0em 0.21428571em;
|
739
739
|
vertical-align: baseline;
|
740
740
|
}
|
741
741
|
.ui.inline.dropdown > .text {
|
@@ -946,6 +946,19 @@ select.ui.dropdown {
|
|
946
946
|
background-color: #FDCFCF;
|
947
947
|
}
|
948
948
|
|
949
|
+
/*--------------------
|
950
|
+
Clear
|
951
|
+
----------------------*/
|
952
|
+
|
953
|
+
.ui.dropdown > .clear.dropdown.icon {
|
954
|
+
opacity: 0.8;
|
955
|
+
-webkit-transition: opacity 0.1s ease;
|
956
|
+
transition: opacity 0.1s ease;
|
957
|
+
}
|
958
|
+
.ui.dropdown > .clear.dropdown.icon:hover {
|
959
|
+
opacity: 1;
|
960
|
+
}
|
961
|
+
|
949
962
|
/*--------------------
|
950
963
|
Disabled
|
951
964
|
----------------------*/
|
@@ -1125,28 +1138,28 @@ select.ui.dropdown {
|
|
1125
1138
|
@media all and (-ms-high-contrast: none) {
|
1126
1139
|
.ui.scrolling.dropdown .menu,
|
1127
1140
|
.ui.dropdown .scrolling.menu {
|
1128
|
-
min-width: calc(100% -
|
1141
|
+
min-width: calc(100% - 17px);
|
1129
1142
|
}
|
1130
1143
|
}
|
1131
|
-
@media only screen and (max-width:
|
1144
|
+
@media only screen and (max-width: $largest-mobile-screen) {
|
1132
1145
|
.ui.scrolling.dropdown .menu,
|
1133
1146
|
.ui.dropdown .scrolling.menu {
|
1134
1147
|
max-height: 10.28571429rem;
|
1135
1148
|
}
|
1136
1149
|
}
|
1137
|
-
@media only screen and (min-width:
|
1150
|
+
@media only screen and (min-width: $tablet-breakpoint) {
|
1138
1151
|
.ui.scrolling.dropdown .menu,
|
1139
1152
|
.ui.dropdown .scrolling.menu {
|
1140
1153
|
max-height: 15.42857143rem;
|
1141
1154
|
}
|
1142
1155
|
}
|
1143
|
-
@media only screen and (min-width:
|
1156
|
+
@media only screen and (min-width: $computer-breakpoint) {
|
1144
1157
|
.ui.scrolling.dropdown .menu,
|
1145
1158
|
.ui.dropdown .scrolling.menu {
|
1146
1159
|
max-height: 20.57142857rem;
|
1147
1160
|
}
|
1148
1161
|
}
|
1149
|
-
@media only screen and (min-width:
|
1162
|
+
@media only screen and (min-width: $widescreen-monitor-breakpoint) {
|
1150
1163
|
.ui.scrolling.dropdown .menu,
|
1151
1164
|
.ui.dropdown .scrolling.menu {
|
1152
1165
|
max-height: 20.57142857rem;
|
@@ -1450,7 +1463,7 @@ select.ui.dropdown {
|
|
1450
1463
|
/* Dropdown Carets */
|
1451
1464
|
@font-face {
|
1452
1465
|
font-family: 'Dropdown';
|
1453
|
-
src: url(data:application/
|
1466
|
+
src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAVgAA8AAAAACFAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABWAAAABwAAAAchGgaq0dERUYAAAF0AAAAHAAAAB4AJwAPT1MvMgAAAZAAAABDAAAAVnW4TJdjbWFwAAAB1AAAAEsAAAFS8CcaqmN2dCAAAAIgAAAABAAAAAQAEQFEZ2FzcAAAAiQAAAAIAAAACP//AANnbHlmAAACLAAAAQoAAAGkrRHP9WhlYWQAAAM4AAAAMAAAADYPK8YyaGhlYQAAA2gAAAAdAAAAJANCAb1obXR4AAADiAAAACIAAAAiCBkAOGxvY2EAAAOsAAAAFAAAABQBnAIybWF4cAAAA8AAAAAfAAAAIAEVAF5uYW1lAAAD4AAAATAAAAKMFGlj5HBvc3QAAAUQAAAARgAAAHJoedjqd2ViZgAABVgAAAAGAAAABrO7W5UAAAABAAAAANXulPUAAAAA1r4hgAAAAADXu2Q1eNpjYGRgYOABYjEgZmJgBEIOIGYB8xgAA/YAN3jaY2BktGOcwMDKwMI4jTGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHFT/fLjFeOD/AQY9xjMMbkBhRpAcAN48DQYAeNpjYGBgZoBgGQZGBhDwAfIYwXwWBgMgzQGETAwMqn8+8H649f8/lHX9//9b7Pzf+fWgusCAkY0BzmUE6gHpQwGMDMMeAACbxg7SAAARAUQAAAAB//8AAnjadZBPSsNAGMXfS+yMqYgOhpSuSlKadmUhiVEhEMQzFF22m17BbbvzCh5BXCUn6EG8gjeQ4DepwYo4i+/ffL95j4EDA+CFC7jQuKyIeVHrI3wkleq9F7XrSInKteOeHdda8bOoaeepSc00NWPz/LRec9G8GabyGtEdF7h19z033GAMTK7zbM42xNEZpzYof0RtQ5CUHAQJ73OtVyutc+3b7Ou//b8XNlsPx3jgjUifABdhEohKJJL5iM5p39uqc7X1+sRQSqmGrUVhlsJ4lpmEUVwyT8SUYtg0P9DyNzPADDs+tjrGV6KRCRfsui3eHcL4/p8ZXvfMlcnEU+CLv7hDykOP+AKTPTxbAAB42mNgZGBgAGKuf5KP4vltvjLIMzGAwLV9ig0g+vruFFMQzdjACOJzMIClARh0CTJ42mNgZGBgPPD/AJD8wgAEjA0MjAyogAMAbOQEAQAAAAC7ABEAAAAAAKoAAAH0AAABgAAAAUAACAFAAAgAwAAXAAAAAAAAACoAKgAqADIAbACGAKAAugDSeNpjYGRgYOBkUGFgYgABEMkFhAwM/xn0QAIADdUBdAB42qWQvUoDQRSFv3GjaISUQaymSmGxJoGAsRC0iPYLsU50Y6IxrvlRtPCJJKUPIBb+PIHv4EN4djKuKAqCDHfmu+feOdwZoMCUAJNbAlYUMzaUlM14jjxbngOq7HnOia89z1Pk1vMCa9x7ztPkzfMyJbPj+ZGi6Xp+omxuPD+zaD7meaFg7mb8GrBqHmhwxoAxlm0uiRkpP9X5m26pKRoMxTGR1D49Dv/Yb/91o6l8qL6eu5n2hZQzn68utR9m3FU2cB4t9cdSLG2utI+44Eh/P9bqKO+oJ/WxmXssj77YkrjasZQD6SFddythk3Wtzrf+UF2p076Udla1VNzsERP3kkjVRKel7mp1udXYcHtZSlV7RfmJe1GiFWveluaeKD5/MuJcSk8Tpm/vvwPIbmJleNpjYGKAAFYG7ICTgYGRiZGZkYWRlZGNkZ2Rg5GTLT2nsiDDEEIZsZfmZRqZujmDaDcDAxcI7WIOpS2gtCWUdgQAZkcSmQAAAAFblbO6AAA=) format('woff');
|
1454
1467
|
font-weight: normal;
|
1455
1468
|
font-style: normal;
|
1456
1469
|
}
|
@@ -1485,19 +1498,15 @@ select.ui.dropdown {
|
|
1485
1498
|
.ui.vertical.menu .dropdown.item > .dropdown.icon:before {
|
1486
1499
|
content: "\f0da" /*rtl:"\f0d9"*/;
|
1487
1500
|
}
|
1488
|
-
|
1489
|
-
|
1490
|
-
content: "\f0d7";
|
1491
|
-
}
|
1492
|
-
.dropdown.up.icon {
|
1493
|
-
content: "\f0d8";
|
1494
|
-
}
|
1495
|
-
.dropdown.left.icon {
|
1496
|
-
content: "\f0d9";
|
1497
|
-
}
|
1498
|
-
.dropdown.icon.icon {
|
1499
|
-
content: "\f0da";
|
1501
|
+
.ui.dropdown > .clear.icon:before {
|
1502
|
+
content: "\f00d";
|
1500
1503
|
}
|
1504
|
+
/* Icons for Reference (Subsetted in 2.4.0)
|
1505
|
+
.dropdown.down:before { content: "\f0d7"; }
|
1506
|
+
.dropdown.up:before { content: "\f0d8"; }
|
1507
|
+
.dropdown.left:before { content: "\f0d9"; }
|
1508
|
+
.dropdown.right:before { content: "\f0da"; }
|
1509
|
+
.dropdown.close:before { content: "\f00d"; }
|
1501
1510
|
*/
|
1502
1511
|
|
1503
1512
|
|