fomantic-ui-sass 2.7.8 → 2.8.4
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 +20 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +83 -29
- data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +59 -41
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.svg +3 -3
- data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
- data/app/assets/javascripts/semantic-ui/api.js +1 -1
- data/app/assets/javascripts/semantic-ui/calendar.js +103 -27
- data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +93 -71
- data/app/assets/javascripts/semantic-ui/form.js +69 -22
- data/app/assets/javascripts/semantic-ui/modal.js +104 -33
- data/app/assets/javascripts/semantic-ui/popup.js +10 -10
- 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/search.js +2 -2
- 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 +398 -122
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +779 -142
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +35 -35
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +101 -145
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +11 -11
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1009 -208
- 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 +12309 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +111 -66
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +105 -34
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +28 -28
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +211 -62
- 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 +39 -39
- 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 +15 -124
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +30 -30
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +183 -111
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +128 -30
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +105 -79
- 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 +3 -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/fomantic-ui-sass.gemspec +2 -2
- data/lib/fomantic-ui-sass.rb +2 -2
- data/lib/fomantic/ui/sass/version.rb +2 -2
- data/spec/dummy/app/assets/config/manifest.js +0 -0
- metadata +12 -9
|
@@ -136,18 +136,6 @@
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
|
|
139
|
-
/*******************************
|
|
140
|
-
Video Overrides
|
|
141
|
-
*******************************/
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
/*******************************
|
|
146
|
-
Site Overrides
|
|
147
|
-
*******************************/
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
139
|
/*******************************
|
|
152
140
|
Variations
|
|
153
141
|
*******************************/
|
|
@@ -164,3 +152,15 @@
|
|
|
164
152
|
.ui[class*="21:9"].embed {
|
|
165
153
|
padding-bottom: 42.85714286%;
|
|
166
154
|
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
/*******************************
|
|
158
|
+
Video Overrides
|
|
159
|
+
*******************************/
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
/*******************************
|
|
164
|
+
Site Overrides
|
|
165
|
+
*******************************/
|
|
166
|
+
|
|
@@ -45,6 +45,9 @@
|
|
|
45
45
|
border-bottom-left-radius: 0.28571429rem;
|
|
46
46
|
border-bottom-right-radius: 0.28571429rem;
|
|
47
47
|
}
|
|
48
|
+
.ui.modal > .ui.dimmer {
|
|
49
|
+
border-radius: inherit;
|
|
50
|
+
}
|
|
48
51
|
|
|
49
52
|
|
|
50
53
|
/*******************************
|
|
@@ -321,6 +324,7 @@
|
|
|
321
324
|
}
|
|
322
325
|
.ui.basic.modal > .header {
|
|
323
326
|
color: #FFFFFF;
|
|
327
|
+
border-bottom: none;
|
|
324
328
|
}
|
|
325
329
|
.ui.basic.modal > .close {
|
|
326
330
|
top: 1rem;
|
|
@@ -350,7 +354,7 @@
|
|
|
350
354
|
top: auto;
|
|
351
355
|
}
|
|
352
356
|
.ui.legacy.overlay.fullscreen.modal {
|
|
353
|
-
margin-top: -
|
|
357
|
+
margin-top: -2rem !important;
|
|
354
358
|
}
|
|
355
359
|
|
|
356
360
|
|
|
@@ -374,27 +378,27 @@
|
|
|
374
378
|
|
|
375
379
|
|
|
376
380
|
/*--------------
|
|
377
|
-
|
|
378
|
-
---------------*/
|
|
381
|
+
Aligned
|
|
382
|
+
---------------*/
|
|
379
383
|
|
|
380
|
-
.ui.top.aligned.modal {
|
|
384
|
+
.modals.dimmer .ui.top.aligned.modal {
|
|
381
385
|
top: 5vh;
|
|
382
386
|
}
|
|
383
|
-
.ui.bottom.aligned.modal {
|
|
387
|
+
.modals.dimmer .ui.bottom.aligned.modal {
|
|
384
388
|
bottom: 5vh;
|
|
385
389
|
}
|
|
386
390
|
@media only screen and (max-width: 767.98px) {
|
|
387
|
-
.ui.top.aligned.modal {
|
|
391
|
+
.modals.dimmer .ui.top.aligned.modal {
|
|
388
392
|
top: 1rem;
|
|
389
393
|
}
|
|
390
|
-
.ui.bottom.aligned.modal {
|
|
394
|
+
.modals.dimmer .ui.bottom.aligned.modal {
|
|
391
395
|
bottom: 1rem;
|
|
392
396
|
}
|
|
393
397
|
}
|
|
394
398
|
|
|
395
399
|
/*--------------
|
|
396
|
-
|
|
397
|
-
---------------*/
|
|
400
|
+
Scrolling
|
|
401
|
+
---------------*/
|
|
398
402
|
|
|
399
403
|
|
|
400
404
|
/* Scrolling Dimmer */
|
|
@@ -412,7 +416,14 @@
|
|
|
412
416
|
-webkit-overflow-scrolling: touch;
|
|
413
417
|
}
|
|
414
418
|
.modals.dimmer .ui.scrolling.modal:not(.fullscreen) {
|
|
415
|
-
margin:
|
|
419
|
+
margin: 2rem auto;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
/* Fix for Firefox, Edge, IE11 */
|
|
423
|
+
.modals.dimmer .ui.scrolling.modal:not([class*="overlay fullscreen"])::after {
|
|
424
|
+
content: '\00A0';
|
|
425
|
+
position: absolute;
|
|
426
|
+
height: 2rem;
|
|
416
427
|
}
|
|
417
428
|
|
|
418
429
|
/* Undetached Scrolling */
|
|
@@ -426,7 +437,6 @@
|
|
|
426
437
|
.scrolling.undetached.dimmable .ui.scrolling.modal:not(.fullscreen) {
|
|
427
438
|
position: absolute;
|
|
428
439
|
left: 50%;
|
|
429
|
-
margin-top: 1rem !important;
|
|
430
440
|
}
|
|
431
441
|
|
|
432
442
|
/* Scrolling Content */
|
|
@@ -442,8 +452,8 @@
|
|
|
442
452
|
}
|
|
443
453
|
|
|
444
454
|
/*--------------
|
|
445
|
-
|
|
446
|
-
---------------*/
|
|
455
|
+
Full Screen
|
|
456
|
+
---------------*/
|
|
447
457
|
|
|
448
458
|
.ui.fullscreen.modal {
|
|
449
459
|
width: 95%;
|
|
@@ -457,9 +467,11 @@
|
|
|
457
467
|
top: 0;
|
|
458
468
|
border-radius: 0;
|
|
459
469
|
}
|
|
470
|
+
.ui.modal > .close.inside + .header,
|
|
460
471
|
.ui.fullscreen.modal > .header {
|
|
461
472
|
padding-right: 2.25rem;
|
|
462
473
|
}
|
|
474
|
+
.ui.modal > .close.inside,
|
|
463
475
|
.ui.fullscreen.modal > .close {
|
|
464
476
|
top: 1.0535rem;
|
|
465
477
|
right: 1rem;
|
|
@@ -476,13 +488,9 @@
|
|
|
476
488
|
.ui.modal {
|
|
477
489
|
font-size: 1rem;
|
|
478
490
|
}
|
|
479
|
-
|
|
480
|
-
/* Mini */
|
|
481
491
|
.ui.mini.modal > .header:not(.ui) {
|
|
482
492
|
font-size: 1.3em;
|
|
483
493
|
}
|
|
484
|
-
|
|
485
|
-
/* Mini Modal Width */
|
|
486
494
|
@media only screen and (max-width: 767.98px) {
|
|
487
495
|
.ui.mini.modal {
|
|
488
496
|
width: 95%;
|
|
@@ -513,13 +521,9 @@
|
|
|
513
521
|
margin: 0 0 0 0;
|
|
514
522
|
}
|
|
515
523
|
}
|
|
516
|
-
|
|
517
|
-
/* Tiny */
|
|
518
524
|
.ui.tiny.modal > .header:not(.ui) {
|
|
519
525
|
font-size: 1.3em;
|
|
520
526
|
}
|
|
521
|
-
|
|
522
|
-
/* Tiny Modal Width */
|
|
523
527
|
@media only screen and (max-width: 767.98px) {
|
|
524
528
|
.ui.tiny.modal {
|
|
525
529
|
width: 95%;
|
|
@@ -550,13 +554,9 @@
|
|
|
550
554
|
margin: 0 0 0 0;
|
|
551
555
|
}
|
|
552
556
|
}
|
|
553
|
-
|
|
554
|
-
/* Small */
|
|
555
557
|
.ui.small.modal > .header:not(.ui) {
|
|
556
558
|
font-size: 1.3em;
|
|
557
559
|
}
|
|
558
|
-
|
|
559
|
-
/* Small Modal Width */
|
|
560
560
|
@media only screen and (max-width: 767.98px) {
|
|
561
561
|
.ui.small.modal {
|
|
562
562
|
width: 95%;
|
|
@@ -587,9 +587,7 @@
|
|
|
587
587
|
margin: 0 0 0 0;
|
|
588
588
|
}
|
|
589
589
|
}
|
|
590
|
-
|
|
591
|
-
/* Large Modal Width */
|
|
592
|
-
.ui.large.modal > .header {
|
|
590
|
+
.ui.large.modal > .header:not(.ui) {
|
|
593
591
|
font-size: 1.6em;
|
|
594
592
|
}
|
|
595
593
|
@media only screen and (max-width: 767.98px) {
|
|
@@ -622,11 +620,110 @@
|
|
|
622
620
|
margin: 0 0 0 0;
|
|
623
621
|
}
|
|
624
622
|
}
|
|
623
|
+
.ui.big.modal > .header:not(.ui) {
|
|
624
|
+
font-size: 1.6em;
|
|
625
|
+
}
|
|
626
|
+
@media only screen and (max-width: 767.98px) {
|
|
627
|
+
.ui.big.modal {
|
|
628
|
+
width: 95%;
|
|
629
|
+
margin: 0 0 0 0;
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
@media only screen and (min-width: 768px) {
|
|
633
|
+
.ui.big.modal {
|
|
634
|
+
width: 88%;
|
|
635
|
+
margin: 0 0 0 0;
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
@media only screen and (min-width: 992px) {
|
|
639
|
+
.ui.big.modal {
|
|
640
|
+
width: 1190px;
|
|
641
|
+
margin: 0 0 0 0;
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
@media only screen and (min-width: 1200px) {
|
|
645
|
+
.ui.big.modal {
|
|
646
|
+
width: 1260px;
|
|
647
|
+
margin: 0 0 0 0;
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
@media only screen and (min-width: 1920px) {
|
|
651
|
+
.ui.big.modal {
|
|
652
|
+
width: 1330px;
|
|
653
|
+
margin: 0 0 0 0;
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
.ui.huge.modal > .header:not(.ui) {
|
|
657
|
+
font-size: 1.6em;
|
|
658
|
+
}
|
|
659
|
+
@media only screen and (max-width: 767.98px) {
|
|
660
|
+
.ui.huge.modal {
|
|
661
|
+
width: 95%;
|
|
662
|
+
margin: 0 0 0 0;
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
@media only screen and (min-width: 768px) {
|
|
666
|
+
.ui.huge.modal {
|
|
667
|
+
width: 88%;
|
|
668
|
+
margin: 0 0 0 0;
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
@media only screen and (min-width: 992px) {
|
|
672
|
+
.ui.huge.modal {
|
|
673
|
+
width: 1360px;
|
|
674
|
+
margin: 0 0 0 0;
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
@media only screen and (min-width: 1200px) {
|
|
678
|
+
.ui.huge.modal {
|
|
679
|
+
width: 1440px;
|
|
680
|
+
margin: 0 0 0 0;
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
@media only screen and (min-width: 1920px) {
|
|
684
|
+
.ui.huge.modal {
|
|
685
|
+
width: 1520px;
|
|
686
|
+
margin: 0 0 0 0;
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
.ui.massive.modal > .header:not(.ui) {
|
|
690
|
+
font-size: 1.8em;
|
|
691
|
+
}
|
|
692
|
+
@media only screen and (max-width: 767.98px) {
|
|
693
|
+
.ui.massive.modal {
|
|
694
|
+
width: 95%;
|
|
695
|
+
margin: 0 0 0 0;
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
@media only screen and (min-width: 768px) {
|
|
699
|
+
.ui.massive.modal {
|
|
700
|
+
width: 88%;
|
|
701
|
+
margin: 0 0 0 0;
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
@media only screen and (min-width: 992px) {
|
|
705
|
+
.ui.massive.modal {
|
|
706
|
+
width: 1530px;
|
|
707
|
+
margin: 0 0 0 0;
|
|
708
|
+
}
|
|
709
|
+
}
|
|
710
|
+
@media only screen and (min-width: 1200px) {
|
|
711
|
+
.ui.massive.modal {
|
|
712
|
+
width: 1620px;
|
|
713
|
+
margin: 0 0 0 0;
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
@media only screen and (min-width: 1920px) {
|
|
717
|
+
.ui.massive.modal {
|
|
718
|
+
width: 1710px;
|
|
719
|
+
margin: 0 0 0 0;
|
|
720
|
+
}
|
|
721
|
+
}
|
|
625
722
|
|
|
626
723
|
|
|
627
724
|
/*****************************
|
|
628
|
-
|
|
629
|
-
*******************************/
|
|
725
|
+
Inverted
|
|
726
|
+
*******************************/
|
|
630
727
|
|
|
631
728
|
.ui.inverted.modal {
|
|
632
729
|
background: rgba(0, 0, 0, 0.9);
|
|
@@ -649,6 +746,7 @@
|
|
|
649
746
|
color: #FFFFFF;
|
|
650
747
|
}
|
|
651
748
|
}
|
|
749
|
+
.ui.inverted.modal > .close.inside,
|
|
652
750
|
.ui.inverted.fullscreen.modal > .close {
|
|
653
751
|
color: #FFFFFF;
|
|
654
752
|
}
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
/*--------------
|
|
69
|
-
|
|
70
|
-
---------------*/
|
|
69
|
+
Tooltip
|
|
70
|
+
---------------*/
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
/* Content */
|
|
@@ -137,32 +137,31 @@
|
|
|
137
137
|
[data-tooltip]:after {
|
|
138
138
|
pointer-events: none;
|
|
139
139
|
visibility: hidden;
|
|
140
|
+
opacity: 0;
|
|
141
|
+
-webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
|
|
142
|
+
transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
|
|
143
|
+
transition: transform 0.1s ease, opacity 0.1s ease;
|
|
144
|
+
transition: transform 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease;
|
|
140
145
|
}
|
|
141
146
|
[data-tooltip]:before {
|
|
142
|
-
opacity: 0;
|
|
143
147
|
-webkit-transform: rotate(45deg) scale(0) !important;
|
|
144
148
|
transform: rotate(45deg) scale(0) !important;
|
|
145
149
|
-webkit-transform-origin: center top;
|
|
146
150
|
transform-origin: center top;
|
|
147
|
-
-webkit-transition: all 0.1s ease;
|
|
148
|
-
transition: all 0.1s ease;
|
|
149
151
|
}
|
|
150
152
|
[data-tooltip]:after {
|
|
151
|
-
opacity: 1;
|
|
152
153
|
-webkit-transform-origin: center bottom;
|
|
153
154
|
transform-origin: center bottom;
|
|
154
|
-
-webkit-transition: all 0.1s ease;
|
|
155
|
-
transition: all 0.1s ease;
|
|
156
155
|
}
|
|
157
156
|
[data-tooltip]:hover:before,
|
|
158
157
|
[data-tooltip]:hover:after {
|
|
159
158
|
visibility: visible;
|
|
160
159
|
pointer-events: auto;
|
|
160
|
+
opacity: 1;
|
|
161
161
|
}
|
|
162
162
|
[data-tooltip]:hover:before {
|
|
163
163
|
-webkit-transform: rotate(45deg) scale(1) !important;
|
|
164
164
|
transform: rotate(45deg) scale(1) !important;
|
|
165
|
-
opacity: 1;
|
|
166
165
|
}
|
|
167
166
|
|
|
168
167
|
/* Animation Position */
|
|
@@ -201,10 +200,25 @@
|
|
|
201
200
|
-webkit-transform: scale(1) !important;
|
|
202
201
|
transform: scale(1) !important;
|
|
203
202
|
}
|
|
203
|
+
[data-tooltip][data-variation~="fixed"]:after {
|
|
204
|
+
white-space: normal;
|
|
205
|
+
width: 250px;
|
|
206
|
+
}
|
|
207
|
+
[data-tooltip][data-variation*="wide fixed"]:after {
|
|
208
|
+
width: 350px;
|
|
209
|
+
}
|
|
210
|
+
[data-tooltip][data-variation*="very wide fixed"]:after {
|
|
211
|
+
width: 550px;
|
|
212
|
+
}
|
|
213
|
+
@media only screen and (max-width: 767.98px) {
|
|
214
|
+
[data-tooltip][data-variation~="fixed"]:after {
|
|
215
|
+
width: 250px;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
204
218
|
|
|
205
219
|
/*--------------
|
|
206
|
-
|
|
207
|
-
---------------*/
|
|
220
|
+
Inverted
|
|
221
|
+
---------------*/
|
|
208
222
|
|
|
209
223
|
|
|
210
224
|
/* Arrow */
|
|
@@ -232,9 +246,12 @@
|
|
|
232
246
|
}
|
|
233
247
|
|
|
234
248
|
/*--------------
|
|
235
|
-
|
|
236
|
-
---------------*/
|
|
249
|
+
Position
|
|
250
|
+
---------------*/
|
|
237
251
|
|
|
252
|
+
[data-position~="top"][data-tooltip]:before {
|
|
253
|
+
background: #FFFFFF;
|
|
254
|
+
}
|
|
238
255
|
|
|
239
256
|
/* Top Center */
|
|
240
257
|
[data-position="top center"][data-tooltip]:after {
|
|
@@ -289,6 +306,11 @@
|
|
|
289
306
|
margin-left: -0.07142857rem;
|
|
290
307
|
margin-bottom: 0.14285714rem;
|
|
291
308
|
}
|
|
309
|
+
[data-position~="bottom"][data-tooltip]:before {
|
|
310
|
+
background: #FFFFFF;
|
|
311
|
+
-webkit-box-shadow: -1px -1px 0 0 #bababc;
|
|
312
|
+
box-shadow: -1px -1px 0 0 #bababc;
|
|
313
|
+
}
|
|
292
314
|
|
|
293
315
|
/* Bottom Center */
|
|
294
316
|
[data-position="bottom center"][data-tooltip]:after {
|
|
@@ -352,6 +374,9 @@
|
|
|
352
374
|
top: 50%;
|
|
353
375
|
margin-top: -0.14285714rem;
|
|
354
376
|
margin-right: -0.07142857rem;
|
|
377
|
+
background: #FFFFFF;
|
|
378
|
+
-webkit-box-shadow: 1px -1px 0 0 #bababc;
|
|
379
|
+
box-shadow: 1px -1px 0 0 #bababc;
|
|
355
380
|
}
|
|
356
381
|
|
|
357
382
|
/* Right Center */
|
|
@@ -367,27 +392,10 @@
|
|
|
367
392
|
top: 50%;
|
|
368
393
|
margin-top: -0.07142857rem;
|
|
369
394
|
margin-left: 0.14285714rem;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
/* Arrow */
|
|
373
|
-
[data-position~="bottom"][data-tooltip]:before {
|
|
374
|
-
background: #FFFFFF;
|
|
375
|
-
-webkit-box-shadow: -1px -1px 0 0 #bababc;
|
|
376
|
-
box-shadow: -1px -1px 0 0 #bababc;
|
|
377
|
-
}
|
|
378
|
-
[data-position="left center"][data-tooltip]:before {
|
|
379
|
-
background: #FFFFFF;
|
|
380
|
-
-webkit-box-shadow: 1px -1px 0 0 #bababc;
|
|
381
|
-
box-shadow: 1px -1px 0 0 #bababc;
|
|
382
|
-
}
|
|
383
|
-
[data-position="right center"][data-tooltip]:before {
|
|
384
395
|
background: #FFFFFF;
|
|
385
396
|
-webkit-box-shadow: -1px 1px 0 0 #bababc;
|
|
386
397
|
box-shadow: -1px 1px 0 0 #bababc;
|
|
387
398
|
}
|
|
388
|
-
[data-position~="top"][data-tooltip]:before {
|
|
389
|
-
background: #FFFFFF;
|
|
390
|
-
}
|
|
391
399
|
|
|
392
400
|
/* Inverted Arrow Color */
|
|
393
401
|
[data-inverted][data-position~="bottom"][data-tooltip]:before {
|
|
@@ -434,37 +442,8 @@
|
|
|
434
442
|
}
|
|
435
443
|
|
|
436
444
|
/*--------------
|
|
437
|
-
|
|
438
|
-
---------------*/
|
|
439
|
-
|
|
440
|
-
[data-tooltip][data-variation~="mini"]:before,
|
|
441
|
-
[data-tooltip][data-variation~="mini"]:after {
|
|
442
|
-
font-size: 0.78571429rem;
|
|
443
|
-
}
|
|
444
|
-
[data-tooltip][data-variation~="tiny"]:before,
|
|
445
|
-
[data-tooltip][data-variation~="tiny"]:after {
|
|
446
|
-
font-size: 0.85714286rem;
|
|
447
|
-
}
|
|
448
|
-
[data-tooltip][data-variation~="small"]:before,
|
|
449
|
-
[data-tooltip][data-variation~="small"]:after {
|
|
450
|
-
font-size: 0.92857143rem;
|
|
451
|
-
}
|
|
452
|
-
[data-tooltip][data-variation~="medium"]:before,
|
|
453
|
-
[data-tooltip][data-variation~="medium"]:after {
|
|
454
|
-
font-size: 1rem;
|
|
455
|
-
}
|
|
456
|
-
[data-tooltip][data-variation~="large"]:before,
|
|
457
|
-
[data-tooltip][data-variation~="large"]:after {
|
|
458
|
-
font-size: 1.14285714rem;
|
|
459
|
-
}
|
|
460
|
-
[data-tooltip][data-variation~="huge"]:before,
|
|
461
|
-
[data-tooltip][data-variation~="huge"]:after {
|
|
462
|
-
font-size: 1.42857143rem;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
/*--------------
|
|
466
|
-
Basic
|
|
467
|
-
---------------*/
|
|
445
|
+
Basic
|
|
446
|
+
---------------*/
|
|
468
447
|
|
|
469
448
|
[data-tooltip][data-variation~="basic"]:before {
|
|
470
449
|
display: none;
|
|
@@ -525,8 +504,8 @@
|
|
|
525
504
|
}
|
|
526
505
|
|
|
527
506
|
/*--------------
|
|
528
|
-
|
|
529
|
-
---------------*/
|
|
507
|
+
Pointer
|
|
508
|
+
---------------*/
|
|
530
509
|
|
|
531
510
|
|
|
532
511
|
/*--- Below ---*/
|
|
@@ -624,15 +603,15 @@
|
|
|
624
603
|
-webkit-box-shadow: -1px 1px 0 0 #bababc;
|
|
625
604
|
box-shadow: -1px 1px 0 0 #bababc;
|
|
626
605
|
}
|
|
606
|
+
.ui.right.center.popup:before,
|
|
607
|
+
.ui.left.center.popup:before {
|
|
608
|
+
background: #FFFFFF;
|
|
609
|
+
}
|
|
627
610
|
|
|
628
611
|
/* Arrow Color By Location */
|
|
629
612
|
.ui.bottom.popup:before {
|
|
630
613
|
background: #FFFFFF;
|
|
631
614
|
}
|
|
632
|
-
.ui.right.center.popup:before,
|
|
633
|
-
.ui.left.center.popup:before {
|
|
634
|
-
background: #FFFFFF;
|
|
635
|
-
}
|
|
636
615
|
.ui.top.popup:before {
|
|
637
616
|
background: #FFFFFF;
|
|
638
617
|
}
|
|
@@ -689,33 +668,46 @@
|
|
|
689
668
|
|
|
690
669
|
|
|
691
670
|
/*--------------
|
|
692
|
-
|
|
693
|
-
---------------*/
|
|
671
|
+
Basic
|
|
672
|
+
---------------*/
|
|
694
673
|
|
|
695
674
|
.ui.basic.popup:before {
|
|
696
675
|
display: none;
|
|
697
676
|
}
|
|
677
|
+
.ui.fixed.popup {
|
|
678
|
+
width: 250px;
|
|
679
|
+
}
|
|
698
680
|
|
|
699
681
|
/*--------------
|
|
700
|
-
|
|
701
|
-
---------------*/
|
|
682
|
+
Wide
|
|
683
|
+
---------------*/
|
|
702
684
|
|
|
703
685
|
.ui.wide.popup {
|
|
704
686
|
max-width: 350px;
|
|
705
687
|
}
|
|
688
|
+
.ui.wide.popup.fixed {
|
|
689
|
+
width: 350px;
|
|
690
|
+
}
|
|
706
691
|
.ui[class*="very wide"].popup {
|
|
707
692
|
max-width: 550px;
|
|
708
693
|
}
|
|
694
|
+
.ui[class*="very wide"].popup.fixed {
|
|
695
|
+
width: 550px;
|
|
696
|
+
}
|
|
709
697
|
@media only screen and (max-width: 767.98px) {
|
|
710
698
|
.ui.wide.popup,
|
|
711
699
|
.ui[class*="very wide"].popup {
|
|
712
700
|
max-width: 250px;
|
|
713
701
|
}
|
|
702
|
+
.ui.wide.popup.fixed,
|
|
703
|
+
.ui[class*="very wide"].popup.fixed {
|
|
704
|
+
width: 250px;
|
|
705
|
+
}
|
|
714
706
|
}
|
|
715
707
|
|
|
716
708
|
/*--------------
|
|
717
|
-
|
|
718
|
-
---------------*/
|
|
709
|
+
Fluid
|
|
710
|
+
---------------*/
|
|
719
711
|
|
|
720
712
|
.ui.fluid.popup {
|
|
721
713
|
width: 100%;
|
|
@@ -723,8 +715,8 @@
|
|
|
723
715
|
}
|
|
724
716
|
|
|
725
717
|
/*--------------
|
|
726
|
-
|
|
727
|
-
---------------*/
|
|
718
|
+
Colors
|
|
719
|
+
---------------*/
|
|
728
720
|
|
|
729
721
|
|
|
730
722
|
/* Inverted colors */
|
|
@@ -746,8 +738,8 @@
|
|
|
746
738
|
}
|
|
747
739
|
|
|
748
740
|
/*--------------
|
|
749
|
-
|
|
750
|
-
---------------*/
|
|
741
|
+
Flowing
|
|
742
|
+
---------------*/
|
|
751
743
|
|
|
752
744
|
.ui.flowing.popup {
|
|
753
745
|
max-width: none;
|
|
@@ -757,24 +749,58 @@
|
|
|
757
749
|
Sizes
|
|
758
750
|
---------------*/
|
|
759
751
|
|
|
752
|
+
.ui.popup {
|
|
753
|
+
font-size: 1rem;
|
|
754
|
+
}
|
|
760
755
|
.ui.mini.popup {
|
|
761
756
|
font-size: 0.78571429rem;
|
|
762
757
|
}
|
|
758
|
+
[data-tooltip][data-variation~="mini"]:before,
|
|
759
|
+
[data-tooltip][data-variation~="mini"]:after {
|
|
760
|
+
font-size: 0.78571429rem;
|
|
761
|
+
}
|
|
763
762
|
.ui.tiny.popup {
|
|
764
763
|
font-size: 0.85714286rem;
|
|
765
764
|
}
|
|
765
|
+
[data-tooltip][data-variation~="tiny"]:before,
|
|
766
|
+
[data-tooltip][data-variation~="tiny"]:after {
|
|
767
|
+
font-size: 0.85714286rem;
|
|
768
|
+
}
|
|
766
769
|
.ui.small.popup {
|
|
767
770
|
font-size: 0.92857143rem;
|
|
768
771
|
}
|
|
769
|
-
|
|
770
|
-
|
|
772
|
+
[data-tooltip][data-variation~="small"]:before,
|
|
773
|
+
[data-tooltip][data-variation~="small"]:after {
|
|
774
|
+
font-size: 0.92857143rem;
|
|
771
775
|
}
|
|
772
776
|
.ui.large.popup {
|
|
773
777
|
font-size: 1.14285714rem;
|
|
774
778
|
}
|
|
779
|
+
[data-tooltip][data-variation~="large"]:before,
|
|
780
|
+
[data-tooltip][data-variation~="large"]:after {
|
|
781
|
+
font-size: 1.14285714rem;
|
|
782
|
+
}
|
|
783
|
+
.ui.big.popup {
|
|
784
|
+
font-size: 1.28571429rem;
|
|
785
|
+
}
|
|
786
|
+
[data-tooltip][data-variation~="big"]:before,
|
|
787
|
+
[data-tooltip][data-variation~="big"]:after {
|
|
788
|
+
font-size: 1.28571429rem;
|
|
789
|
+
}
|
|
775
790
|
.ui.huge.popup {
|
|
776
791
|
font-size: 1.42857143rem;
|
|
777
792
|
}
|
|
793
|
+
[data-tooltip][data-variation~="huge"]:before,
|
|
794
|
+
[data-tooltip][data-variation~="huge"]:after {
|
|
795
|
+
font-size: 1.42857143rem;
|
|
796
|
+
}
|
|
797
|
+
.ui.massive.popup {
|
|
798
|
+
font-size: 1.71428571rem;
|
|
799
|
+
}
|
|
800
|
+
[data-tooltip][data-variation~="massive"]:before,
|
|
801
|
+
[data-tooltip][data-variation~="massive"]:after {
|
|
802
|
+
font-size: 1.71428571rem;
|
|
803
|
+
}
|
|
778
804
|
|
|
779
805
|
|
|
780
806
|
/*******************************
|