fomantic-ui-sass 2.7.8 → 2.8.1
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 +4 -0
- data/app/assets/javascripts/semantic-ui/api.js +1 -1
- data/app/assets/javascripts/semantic-ui/calendar.js +41 -18
- data/app/assets/javascripts/semantic-ui/dropdown.js +58 -33
- data/app/assets/javascripts/semantic-ui/form.js +9 -4
- data/app/assets/javascripts/semantic-ui/modal.js +96 -33
- data/app/assets/javascripts/semantic-ui/popup.js +8 -8
- data/app/assets/javascripts/semantic-ui/progress.js +10 -8
- data/app/assets/javascripts/semantic-ui/rating.js +35 -6
- data/app/assets/javascripts/semantic-ui/sidebar.js +2 -3
- data/app/assets/javascripts/semantic-ui/slider.js +78 -29
- data/app/assets/javascripts/semantic-ui/tab.js +1 -1
- data/app/assets/javascripts/semantic-ui/toast.js +395 -121
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +741 -143
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +35 -35
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +73 -117
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +11 -11
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +976 -191
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +51 -81
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +35 -14
- data/app/assets/stylesheets/semantic-ui/elements/_emoji.scss +12312 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +111 -66
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +70 -31
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +28 -28
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +218 -69
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +20 -20
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +52 -51
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +85 -91
- data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +8 -8
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +11 -11
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +31 -10
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +38 -38
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +16 -17
- data/app/assets/stylesheets/semantic-ui/elements/_text.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +14 -124
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +21 -21
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +181 -110
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +121 -30
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +71 -72
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +44 -26
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +246 -21
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +16 -13
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +12 -14
- data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +20 -23
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +542 -155
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +16 -16
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +42 -17
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +9 -9
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +20 -5
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +33 -12
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +60 -46
- data/lib/fomantic/ui/sass/version.rb +2 -2
- metadata +2 -1
@@ -33,8 +33,8 @@
|
|
33
33
|
}
|
34
34
|
|
35
35
|
/*--------------
|
36
|
-
|
37
|
-
---------------*/
|
36
|
+
Sub Header
|
37
|
+
---------------*/
|
38
38
|
|
39
39
|
.ui.header .sub.header {
|
40
40
|
display: block;
|
@@ -133,77 +133,113 @@
|
|
133
133
|
h1.ui.header {
|
134
134
|
font-size: 2rem;
|
135
135
|
}
|
136
|
+
h1.ui.header .sub.header {
|
137
|
+
font-size: 1.14285714rem;
|
138
|
+
}
|
136
139
|
h2.ui.header {
|
137
140
|
font-size: 1.71428571rem;
|
138
141
|
}
|
142
|
+
h2.ui.header .sub.header {
|
143
|
+
font-size: 1.14285714rem;
|
144
|
+
}
|
139
145
|
h3.ui.header {
|
140
146
|
font-size: 1.28571429rem;
|
141
147
|
}
|
142
|
-
|
143
|
-
font-size: 1.07142857rem;
|
144
|
-
}
|
145
|
-
h5.ui.header {
|
148
|
+
h3.ui.header .sub.header {
|
146
149
|
font-size: 1rem;
|
147
150
|
}
|
148
|
-
|
149
|
-
|
150
|
-
h1.ui.header .sub.header {
|
151
|
-
font-size: 1.14285714rem;
|
152
|
-
}
|
153
|
-
h2.ui.header .sub.header {
|
154
|
-
font-size: 1.14285714rem;
|
151
|
+
h4.ui.header {
|
152
|
+
font-size: 1.07142857rem;
|
155
153
|
}
|
156
|
-
|
154
|
+
h4.ui.header .sub.header {
|
157
155
|
font-size: 1rem;
|
158
156
|
}
|
159
|
-
|
157
|
+
h5.ui.header {
|
160
158
|
font-size: 1rem;
|
161
159
|
}
|
162
160
|
h5.ui.header .sub.header {
|
163
161
|
font-size: 0.92857143rem;
|
164
162
|
}
|
163
|
+
h6.ui.header {
|
164
|
+
font-size: 0.85714286rem;
|
165
|
+
}
|
166
|
+
h6.ui.header .sub.header {
|
167
|
+
font-size: 0.92857143rem;
|
168
|
+
}
|
165
169
|
|
166
170
|
/*--------------
|
167
171
|
Content Heading
|
168
172
|
---------------*/
|
169
173
|
|
170
|
-
.ui.
|
171
|
-
|
172
|
-
font-size: 2em;
|
174
|
+
.ui.mini.header {
|
175
|
+
font-size: 0.85714286em;
|
173
176
|
}
|
174
|
-
.ui.
|
175
|
-
font-size:
|
177
|
+
.ui.mini.header .sub.header {
|
178
|
+
font-size: 0.92857143rem;
|
176
179
|
}
|
177
|
-
.ui.
|
178
|
-
font-size:
|
180
|
+
.ui.mini.sub.header {
|
181
|
+
font-size: 0.78571429em;
|
182
|
+
}
|
183
|
+
.ui.tiny.header {
|
184
|
+
font-size: 1em;
|
185
|
+
}
|
186
|
+
.ui.tiny.header .sub.header {
|
187
|
+
font-size: 0.92857143rem;
|
188
|
+
}
|
189
|
+
.ui.tiny.sub.header {
|
190
|
+
font-size: 0.78571429em;
|
179
191
|
}
|
180
192
|
.ui.small.header {
|
181
193
|
font-size: 1.07142857em;
|
182
194
|
}
|
183
|
-
.ui.
|
195
|
+
.ui.small.header .sub.header {
|
196
|
+
font-size: 1rem;
|
197
|
+
}
|
198
|
+
.ui.small.sub.header {
|
199
|
+
font-size: 0.78571429em;
|
200
|
+
}
|
201
|
+
.ui.large.header {
|
202
|
+
font-size: 1.71428571em;
|
203
|
+
}
|
204
|
+
.ui.large.header .sub.header {
|
205
|
+
font-size: 1.14285714rem;
|
206
|
+
}
|
207
|
+
.ui.large.sub.header {
|
208
|
+
font-size: 0.92857143em;
|
209
|
+
}
|
210
|
+
.ui.big.header {
|
211
|
+
font-size: 1.85714286em;
|
212
|
+
}
|
213
|
+
.ui.big.header .sub.header {
|
214
|
+
font-size: 1.14285714rem;
|
215
|
+
}
|
216
|
+
.ui.big.sub.header {
|
184
217
|
font-size: 1em;
|
185
218
|
}
|
186
|
-
|
187
|
-
|
219
|
+
.ui.huge.header {
|
220
|
+
font-size: 2em;
|
221
|
+
min-height: 1em;
|
222
|
+
}
|
188
223
|
.ui.huge.header .sub.header {
|
189
224
|
font-size: 1.14285714rem;
|
190
225
|
}
|
191
|
-
.ui.
|
192
|
-
font-size:
|
226
|
+
.ui.huge.sub.header {
|
227
|
+
font-size: 1em;
|
193
228
|
}
|
194
|
-
.ui.
|
195
|
-
font-size:
|
229
|
+
.ui.massive.header {
|
230
|
+
font-size: 2.28571429em;
|
231
|
+
min-height: 1em;
|
196
232
|
}
|
197
|
-
.ui.
|
198
|
-
font-size:
|
233
|
+
.ui.massive.header .sub.header {
|
234
|
+
font-size: 1.42857143rem;
|
199
235
|
}
|
200
|
-
.ui.
|
201
|
-
font-size:
|
236
|
+
.ui.massive.sub.header {
|
237
|
+
font-size: 1.14285714em;
|
202
238
|
}
|
203
239
|
|
204
240
|
/*--------------
|
205
|
-
|
206
|
-
---------------*/
|
241
|
+
Sub Heading
|
242
|
+
---------------*/
|
207
243
|
|
208
244
|
.ui.sub.header {
|
209
245
|
padding: 0;
|
@@ -213,19 +249,10 @@ h5.ui.header .sub.header {
|
|
213
249
|
text-transform: uppercase;
|
214
250
|
color: '';
|
215
251
|
}
|
216
|
-
.ui.small.sub.header {
|
217
|
-
font-size: 0.78571429em;
|
218
|
-
}
|
219
|
-
.ui.large.sub.header {
|
220
|
-
font-size: 0.92857143em;
|
221
|
-
}
|
222
|
-
.ui.huge.sub.header {
|
223
|
-
font-size: 1em;
|
224
|
-
}
|
225
252
|
|
226
253
|
/*-------------------
|
227
|
-
|
228
|
-
--------------------*/
|
254
|
+
Icon
|
255
|
+
--------------------*/
|
229
256
|
|
230
257
|
.ui.icon.header {
|
231
258
|
display: inline-block;
|
@@ -291,8 +318,8 @@ h5.ui.header .sub.header {
|
|
291
318
|
|
292
319
|
|
293
320
|
/*-------------------
|
294
|
-
|
295
|
-
--------------------*/
|
321
|
+
Inverted
|
322
|
+
--------------------*/
|
296
323
|
|
297
324
|
.ui.inverted.header {
|
298
325
|
color: #FFFFFF;
|
@@ -591,8 +618,8 @@ a.ui.inverted.black.header.header.header:hover {
|
|
591
618
|
}
|
592
619
|
|
593
620
|
/*-------------------
|
594
|
-
|
595
|
-
--------------------*/
|
621
|
+
Aligned
|
622
|
+
--------------------*/
|
596
623
|
|
597
624
|
.ui.left.aligned.header {
|
598
625
|
text-align: left;
|
@@ -614,8 +641,8 @@ a.ui.inverted.black.header.header.header:hover {
|
|
614
641
|
}
|
615
642
|
|
616
643
|
/*-------------------
|
617
|
-
|
618
|
-
--------------------*/
|
644
|
+
Floated
|
645
|
+
--------------------*/
|
619
646
|
|
620
647
|
.ui.floated.header,
|
621
648
|
.ui[class*="left floated"].header {
|
@@ -630,16 +657,16 @@ a.ui.inverted.black.header.header.header:hover {
|
|
630
657
|
}
|
631
658
|
|
632
659
|
/*-------------------
|
633
|
-
|
634
|
-
--------------------*/
|
660
|
+
Fitted
|
661
|
+
--------------------*/
|
635
662
|
|
636
663
|
.ui.fitted.header {
|
637
664
|
padding: 0;
|
638
665
|
}
|
639
666
|
|
640
667
|
/*-------------------
|
641
|
-
|
642
|
-
--------------------*/
|
668
|
+
Dividing
|
669
|
+
--------------------*/
|
643
670
|
|
644
671
|
.ui.dividing.header {
|
645
672
|
padding-bottom: 0.21428571rem;
|
@@ -656,8 +683,8 @@ a.ui.inverted.black.header.header.header:hover {
|
|
656
683
|
}
|
657
684
|
|
658
685
|
/*-------------------
|
659
|
-
|
660
|
-
--------------------*/
|
686
|
+
Block
|
687
|
+
--------------------*/
|
661
688
|
|
662
689
|
.ui.block.header {
|
663
690
|
background: #F3F4F5;
|
@@ -667,25 +694,34 @@ a.ui.inverted.black.header.header.header:hover {
|
|
667
694
|
border: 1px solid #D4D4D5;
|
668
695
|
border-radius: 0.28571429rem;
|
669
696
|
}
|
697
|
+
.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
|
698
|
+
font-size: 1rem;
|
699
|
+
}
|
700
|
+
.ui.mini.block.header {
|
701
|
+
font-size: 0.78571429rem;
|
702
|
+
}
|
670
703
|
.ui.tiny.block.header {
|
671
704
|
font-size: 0.85714286rem;
|
672
705
|
}
|
673
706
|
.ui.small.block.header {
|
674
707
|
font-size: 0.92857143rem;
|
675
708
|
}
|
676
|
-
.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
|
677
|
-
font-size: 1rem;
|
678
|
-
}
|
679
709
|
.ui.large.block.header {
|
680
710
|
font-size: 1.14285714rem;
|
681
711
|
}
|
712
|
+
.ui.big.block.header {
|
713
|
+
font-size: 1.28571429rem;
|
714
|
+
}
|
682
715
|
.ui.huge.block.header {
|
683
716
|
font-size: 1.42857143rem;
|
684
717
|
}
|
718
|
+
.ui.massive.block.header {
|
719
|
+
font-size: 1.71428571rem;
|
720
|
+
}
|
685
721
|
|
686
722
|
/*-------------------
|
687
|
-
|
688
|
-
--------------------*/
|
723
|
+
Attached
|
724
|
+
--------------------*/
|
689
725
|
|
690
726
|
.ui.attached.header {
|
691
727
|
background: #FFFFFF;
|
@@ -710,21 +746,30 @@ a.ui.inverted.black.header.header.header:hover {
|
|
710
746
|
}
|
711
747
|
|
712
748
|
/* Attached Sizes */
|
749
|
+
.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
|
750
|
+
font-size: 1em;
|
751
|
+
}
|
752
|
+
.ui.mini.attached.header {
|
753
|
+
font-size: 0.78571429em;
|
754
|
+
}
|
713
755
|
.ui.tiny.attached.header {
|
714
756
|
font-size: 0.85714286em;
|
715
757
|
}
|
716
758
|
.ui.small.attached.header {
|
717
759
|
font-size: 0.92857143em;
|
718
760
|
}
|
719
|
-
.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
|
720
|
-
font-size: 1em;
|
721
|
-
}
|
722
761
|
.ui.large.attached.header {
|
723
762
|
font-size: 1.14285714em;
|
724
763
|
}
|
764
|
+
.ui.big.attached.header {
|
765
|
+
font-size: 1.28571429em;
|
766
|
+
}
|
725
767
|
.ui.huge.attached.header {
|
726
768
|
font-size: 1.42857143em;
|
727
769
|
}
|
770
|
+
.ui.massive.attached.header {
|
771
|
+
font-size: 1.71428571em;
|
772
|
+
}
|
728
773
|
|
729
774
|
/*-------------------
|
730
775
|
Sizing
|
@@ -51,8 +51,8 @@ i.icon:before {
|
|
51
51
|
|
52
52
|
|
53
53
|
/*--------------
|
54
|
-
|
55
|
-
---------------*/
|
54
|
+
Loading
|
55
|
+
---------------*/
|
56
56
|
|
57
57
|
i.icon.loading {
|
58
58
|
height: 1em;
|
@@ -88,8 +88,8 @@ i.disabled.icons {
|
|
88
88
|
|
89
89
|
|
90
90
|
/*-------------------
|
91
|
-
|
92
|
-
--------------------*/
|
91
|
+
Fitted
|
92
|
+
--------------------*/
|
93
93
|
|
94
94
|
i.fitted.icon {
|
95
95
|
width: auto;
|
@@ -97,8 +97,8 @@ i.fitted.icon {
|
|
97
97
|
}
|
98
98
|
|
99
99
|
/*-------------------
|
100
|
-
|
101
|
-
--------------------*/
|
100
|
+
Link
|
101
|
+
--------------------*/
|
102
102
|
|
103
103
|
i.link.icon:not(.disabled),
|
104
104
|
i.link.icons:not(.disabled) {
|
@@ -113,8 +113,8 @@ i.link.icons:hover {
|
|
113
113
|
}
|
114
114
|
|
115
115
|
/*-------------------
|
116
|
-
|
117
|
-
--------------------*/
|
116
|
+
Circular
|
117
|
+
--------------------*/
|
118
118
|
|
119
119
|
i.circular.icon {
|
120
120
|
border-radius: 500em !important;
|
@@ -132,8 +132,8 @@ i.circular.inverted.icon {
|
|
132
132
|
}
|
133
133
|
|
134
134
|
/*-------------------
|
135
|
-
|
136
|
-
--------------------*/
|
135
|
+
Flipped
|
136
|
+
--------------------*/
|
137
137
|
|
138
138
|
i.flipped.icon,
|
139
139
|
i.horizontally.flipped.icon {
|
@@ -146,8 +146,8 @@ i.vertically.flipped.icon {
|
|
146
146
|
}
|
147
147
|
|
148
148
|
/*-------------------
|
149
|
-
|
150
|
-
--------------------*/
|
149
|
+
Rotated
|
150
|
+
--------------------*/
|
151
151
|
|
152
152
|
i.rotated.icon,
|
153
153
|
i.right.rotated.icon,
|
@@ -166,8 +166,8 @@ i.halfway.rotated.icon {
|
|
166
166
|
}
|
167
167
|
|
168
168
|
/*--------------------------
|
169
|
-
|
170
|
-
---------------------------*/
|
169
|
+
Flipped & Rotated
|
170
|
+
---------------------------*/
|
171
171
|
|
172
172
|
i.rotated.flipped.icon,
|
173
173
|
i.right.rotated.flipped.icon,
|
@@ -201,8 +201,8 @@ i.halfway.rotated.vertically.flipped.icon {
|
|
201
201
|
}
|
202
202
|
|
203
203
|
/*-------------------
|
204
|
-
|
205
|
-
--------------------*/
|
204
|
+
Bordered
|
205
|
+
--------------------*/
|
206
206
|
|
207
207
|
i.bordered.icon {
|
208
208
|
line-height: 1;
|
@@ -220,8 +220,8 @@ i.bordered.inverted.icon {
|
|
220
220
|
}
|
221
221
|
|
222
222
|
/*-------------------
|
223
|
-
|
224
|
-
--------------------*/
|
223
|
+
Inverted
|
224
|
+
--------------------*/
|
225
225
|
|
226
226
|
|
227
227
|
/* Inverted Shapes */
|
@@ -408,25 +408,28 @@ i.inverted.circular.black.icon.icon.icon.icon {
|
|
408
408
|
Sizes
|
409
409
|
--------------------*/
|
410
410
|
|
411
|
+
i.icon,
|
412
|
+
i.icons {
|
413
|
+
font-size: 1em;
|
414
|
+
}
|
411
415
|
i.mini.mini.mini.icon,
|
412
416
|
i.mini.mini.mini.icons {
|
413
417
|
line-height: 1;
|
418
|
+
vertical-align: middle;
|
414
419
|
font-size: 0.4em;
|
415
420
|
}
|
416
421
|
i.tiny.tiny.tiny.icon,
|
417
422
|
i.tiny.tiny.tiny.icons {
|
418
423
|
line-height: 1;
|
424
|
+
vertical-align: middle;
|
419
425
|
font-size: 0.5em;
|
420
426
|
}
|
421
427
|
i.small.small.small.icon,
|
422
428
|
i.small.small.small.icons {
|
423
429
|
line-height: 1;
|
430
|
+
vertical-align: middle;
|
424
431
|
font-size: 0.75em;
|
425
432
|
}
|
426
|
-
i.icon,
|
427
|
-
i.icons {
|
428
|
-
font-size: 1em;
|
429
|
-
}
|
430
433
|
i.large.large.large.icon,
|
431
434
|
i.large.large.large.icons {
|
432
435
|
line-height: 1;
|
@@ -454,8 +457,8 @@ i.massive.massive.massive.icons {
|
|
454
457
|
|
455
458
|
|
456
459
|
/*******************************
|
457
|
-
|
458
|
-
*******************************/
|
460
|
+
Groups
|
461
|
+
*******************************/
|
459
462
|
|
460
463
|
i.icons {
|
461
464
|
display: inline-block;
|
@@ -518,7 +521,7 @@ i.icons .inverted.corner.icon {
|
|
518
521
|
text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
|
519
522
|
}
|
520
523
|
/*
|
521
|
-
* Font Awesome 5.
|
524
|
+
* Font Awesome 5.11.2 by @fontawesome [https://fontawesome.com]
|
522
525
|
* License - https://fontawesome.com/license (Icons: CC BY 4.0 License, Fonts: SIL OFL 1.1 License, CSS: MIT License)
|
523
526
|
*/
|
524
527
|
|
@@ -635,6 +638,9 @@ i.icon.angle.double.right:before {
|
|
635
638
|
i.icon.angle.double.up:before {
|
636
639
|
content: "\f102";
|
637
640
|
}
|
641
|
+
i.icon.angle.down:before {
|
642
|
+
content: "\f107";
|
643
|
+
}
|
638
644
|
i.icon.angle.left:before {
|
639
645
|
content: "\f104";
|
640
646
|
}
|
@@ -644,9 +650,6 @@ i.icon.angle.right:before {
|
|
644
650
|
i.icon.angle.up:before {
|
645
651
|
content: "\f106";
|
646
652
|
}
|
647
|
-
i.icon.angle.down:before {
|
648
|
-
content: "\f107";
|
649
|
-
}
|
650
653
|
i.icon.angry:before {
|
651
654
|
content: "\f556";
|
652
655
|
}
|
@@ -683,9 +686,6 @@ i.icon.arrow.circle.right:before {
|
|
683
686
|
i.icon.arrow.circle.up:before {
|
684
687
|
content: "\f0aa";
|
685
688
|
}
|
686
|
-
i.icon.arrow.down:before {
|
687
|
-
content: "\f063";
|
688
|
-
}
|
689
689
|
i.icon.arrow.left:before {
|
690
690
|
content: "\f060";
|
691
691
|
}
|
@@ -695,6 +695,9 @@ i.icon.arrow.right:before {
|
|
695
695
|
i.icon.arrow.up:before {
|
696
696
|
content: "\f062";
|
697
697
|
}
|
698
|
+
i.icon.arrow.down:before {
|
699
|
+
content: "\f063";
|
700
|
+
}
|
698
701
|
i.icon.arrows.alternate:before {
|
699
702
|
content: "\f0b2";
|
700
703
|
}
|
@@ -1871,6 +1874,12 @@ i.icon.hard.hat:before {
|
|
1871
1874
|
i.icon.hashtag:before {
|
1872
1875
|
content: "\f292";
|
1873
1876
|
}
|
1877
|
+
i.icon.hat.cowboy:before {
|
1878
|
+
content: "\f8c0";
|
1879
|
+
}
|
1880
|
+
i.icon.hat.cowboy.side:before {
|
1881
|
+
content: "\f8c1";
|
1882
|
+
}
|
1874
1883
|
i.icon.hat.wizard:before {
|
1875
1884
|
content: "\f6e8";
|
1876
1885
|
}
|
@@ -2303,6 +2312,9 @@ i.icon.motorcycle:before {
|
|
2303
2312
|
i.icon.mountain:before {
|
2304
2313
|
content: "\f6fc";
|
2305
2314
|
}
|
2315
|
+
i.icon.mouse:before {
|
2316
|
+
content: "\f8cc";
|
2317
|
+
}
|
2306
2318
|
i.icon.mouse.pointer:before {
|
2307
2319
|
content: "\f245";
|
2308
2320
|
}
|
@@ -2582,6 +2594,9 @@ i.icon.random:before {
|
|
2582
2594
|
i.icon.receipt:before {
|
2583
2595
|
content: "\f543";
|
2584
2596
|
}
|
2597
|
+
i.icon.record.vinyl:before {
|
2598
|
+
content: "\f8d9";
|
2599
|
+
}
|
2585
2600
|
i.icon.recycle:before {
|
2586
2601
|
content: "\f1b8";
|
2587
2602
|
}
|
@@ -5015,6 +5030,10 @@ i.icon.buromobelexperte:before {
|
|
5015
5030
|
content: "\f37f";
|
5016
5031
|
font-family: 'brand-icons';
|
5017
5032
|
}
|
5033
|
+
i.icon.buy.n.large:before {
|
5034
|
+
content: "\f8a6";
|
5035
|
+
font-family: 'brand-icons';
|
5036
|
+
}
|
5018
5037
|
i.icon.buysellads:before {
|
5019
5038
|
content: "\f20d";
|
5020
5039
|
font-family: 'brand-icons';
|
@@ -5111,6 +5130,10 @@ i.icon.contao:before {
|
|
5111
5130
|
content: "\f26d";
|
5112
5131
|
font-family: 'brand-icons';
|
5113
5132
|
}
|
5133
|
+
i.icon.cotton.bureau:before {
|
5134
|
+
content: "\f89e";
|
5135
|
+
font-family: 'brand-icons';
|
5136
|
+
}
|
5114
5137
|
i.icon.cpanel:before {
|
5115
5138
|
content: "\f388";
|
5116
5139
|
font-family: 'brand-icons';
|
@@ -5767,6 +5790,10 @@ i.icon.maxcdn:before {
|
|
5767
5790
|
content: "\f136";
|
5768
5791
|
font-family: 'brand-icons';
|
5769
5792
|
}
|
5793
|
+
i.icon.mdb:before {
|
5794
|
+
content: "\f8ca";
|
5795
|
+
font-family: 'brand-icons';
|
5796
|
+
}
|
5770
5797
|
i.icon.medapps:before {
|
5771
5798
|
content: "\f3c6";
|
5772
5799
|
font-family: 'brand-icons';
|
@@ -5879,6 +5906,10 @@ i.icon.optin.monster:before {
|
|
5879
5906
|
content: "\f23c";
|
5880
5907
|
font-family: 'brand-icons';
|
5881
5908
|
}
|
5909
|
+
i.icon.orcid:before {
|
5910
|
+
content: "\f8d2";
|
5911
|
+
font-family: 'brand-icons';
|
5912
|
+
}
|
5882
5913
|
i.icon.osi:before {
|
5883
5914
|
content: "\f41a";
|
5884
5915
|
font-family: 'brand-icons';
|
@@ -6247,6 +6278,10 @@ i.icon.suse:before {
|
|
6247
6278
|
content: "\f7d6";
|
6248
6279
|
font-family: 'brand-icons';
|
6249
6280
|
}
|
6281
|
+
i.icon.swift:before {
|
6282
|
+
content: "\f8e1";
|
6283
|
+
font-family: 'brand-icons';
|
6284
|
+
}
|
6250
6285
|
i.icon.symfony:before {
|
6251
6286
|
content: "\f83d";
|
6252
6287
|
font-family: 'brand-icons';
|
@@ -6327,6 +6362,10 @@ i.icon.uikit:before {
|
|
6327
6362
|
content: "\f403";
|
6328
6363
|
font-family: 'brand-icons';
|
6329
6364
|
}
|
6365
|
+
i.icon.umbraco:before {
|
6366
|
+
content: "\f8e8";
|
6367
|
+
font-family: 'brand-icons';
|
6368
|
+
}
|
6330
6369
|
i.icon.uniregistry:before {
|
6331
6370
|
content: "\f404";
|
6332
6371
|
font-family: 'brand-icons';
|