@oruga-ui/theme-oruga 0.0.1 → 0.2.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.
- package/dist/oruga-full.css +530 -389
- package/dist/oruga-full.min.css +1 -1
- package/dist/oruga.css +364 -226
- package/dist/oruga.min.css +1 -1
- package/dist/scss/components/_autocomplete.scss +0 -62
- package/dist/scss/components/_carousel.scss +10 -6
- package/dist/scss/components/_checkbox.scss +4 -4
- package/dist/scss/components/_datepicker.scss +11 -11
- package/dist/scss/components/_dropdown.scss +144 -31
- package/dist/scss/components/_field.scss +8 -8
- package/dist/scss/components/_icon.scss +3 -1
- package/dist/scss/components/_input.scss +38 -40
- package/dist/scss/components/_menu.scss +68 -68
- package/dist/scss/components/_pagination.scss +22 -22
- package/dist/scss/components/_radio.scss +8 -10
- package/dist/scss/components/_sidebar.scss +150 -49
- package/dist/scss/components/_switch.scss +4 -2
- package/dist/scss/components/_table.scss +14 -10
- package/dist/scss/components/_taginput.scss +163 -0
- package/dist/scss/components/_tooltip.scss +422 -218
- package/dist/scss/oruga-common.scss +1 -1
- package/dist/scss/oruga.scss +15 -20
- package/dist/scss/utils/_helpers.scss +3 -7
- package/dist/scss/utils/_variables.scss +0 -1
- package/package.json +28 -28
- package/src/App.vue +1 -0
- package/src/assets/scss/components/_autocomplete.scss +0 -62
- package/src/assets/scss/components/_carousel.scss +10 -6
- package/src/assets/scss/components/_checkbox.scss +4 -4
- package/src/assets/scss/components/_datepicker.scss +11 -11
- package/src/assets/scss/components/_dropdown.scss +144 -31
- package/src/assets/scss/components/_field.scss +8 -8
- package/src/assets/scss/components/_icon.scss +3 -1
- package/src/assets/scss/components/_input.scss +38 -40
- package/src/assets/scss/components/_menu.scss +68 -68
- package/src/assets/scss/components/_pagination.scss +22 -22
- package/src/assets/scss/components/_radio.scss +8 -10
- package/src/assets/scss/components/_sidebar.scss +150 -49
- package/src/assets/scss/components/_switch.scss +4 -2
- package/src/assets/scss/components/_table.scss +14 -10
- package/src/assets/scss/components/_taginput.scss +163 -0
- package/src/assets/scss/components/_tooltip.scss +422 -218
- package/src/assets/scss/oruga-common.scss +1 -1
- package/src/assets/scss/oruga.scss +15 -20
- package/src/assets/scss/utils/_helpers.scss +3 -7
- package/src/assets/scss/utils/_variables.scss +0 -1
- package/src/components/Autocomplete.vue +7 -7
- package/src/components/Button.vue +28 -28
- package/src/components/Carousel.vue +19 -20
- package/src/components/Checkbox.vue +43 -42
- package/src/components/Collapse.vue +3 -1
- package/src/components/Datepicker.vue +7 -10
- package/src/components/Datetimepicker.vue +4 -4
- package/src/components/Dropdown.vue +146 -101
- package/src/components/Field.vue +35 -43
- package/src/components/Icon.vue +1 -1
- package/src/components/Input.vue +9 -1
- package/src/components/Loading.vue +13 -14
- package/src/components/Menu.vue +42 -0
- package/src/components/Modal.vue +59 -0
- package/src/components/Notification.vue +6 -6
- package/src/components/Pagination.vue +5 -6
- package/src/components/Radio.vue +55 -39
- package/src/components/Sidebar.vue +34 -17
- package/src/components/Skeleton.vue +43 -25
- package/src/components/Slider.vue +2 -2
- package/src/components/Steps.vue +13 -14
- package/src/components/Switch.vue +22 -19
- package/src/components/Table.vue +30 -37
- package/src/components/Tabs.vue +3 -2
- package/src/components/Taginput.vue +14 -14
- package/src/components/Timepicker.vue +4 -6
- package/src/components/Tooltip.vue +54 -16
- package/dist/scss/components/_inputitems.scss +0 -175
- package/src/assets/scss/components/_inputitems.scss +0 -175
package/dist/oruga.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! Oruga v0.
|
|
1
|
+
/*! Oruga v0.2.1 | MIT License | github.com/oruga-ui/oruga */
|
|
2
2
|
|
|
3
3
|
/***************************************
|
|
4
4
|
* Oruga Default Theme Minimal Style
|
|
@@ -262,20 +262,6 @@ body {
|
|
|
262
262
|
.o-acp {
|
|
263
263
|
position: relative;
|
|
264
264
|
}
|
|
265
|
-
.o-acp__menu {
|
|
266
|
-
display: block;
|
|
267
|
-
width: 100%;
|
|
268
|
-
position: absolute;
|
|
269
|
-
left: 0;
|
|
270
|
-
top: 100%;
|
|
271
|
-
overflow: auto;
|
|
272
|
-
z-index: var(--oruga-autocomplete-menu-zindex, 20);
|
|
273
|
-
background-color: var(--oruga-autocomplete-menu-background, #ffffff);
|
|
274
|
-
}
|
|
275
|
-
.o-acp__menu--top {
|
|
276
|
-
top: auto;
|
|
277
|
-
bottom: 100%;
|
|
278
|
-
}
|
|
279
265
|
.o-acp__item {
|
|
280
266
|
display: block;
|
|
281
267
|
position: relative;
|
|
@@ -287,10 +273,6 @@ body {
|
|
|
287
273
|
.o-acp__item-group-title, .o-acp__item--empty {
|
|
288
274
|
pointer-events: none;
|
|
289
275
|
}
|
|
290
|
-
.o-acp--expanded {
|
|
291
|
-
width: 100%;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
276
|
/* @docs */
|
|
295
277
|
/* @docs */
|
|
296
278
|
@keyframes spinAround {
|
|
@@ -407,7 +389,7 @@ body {
|
|
|
407
389
|
position: fixed;
|
|
408
390
|
z-index: var(--oruga-carousel-overlay-zindex, 40);
|
|
409
391
|
}
|
|
410
|
-
.o-
|
|
392
|
+
.o-car__wrapper {
|
|
411
393
|
position: relative;
|
|
412
394
|
width: 100%;
|
|
413
395
|
}
|
|
@@ -418,6 +400,9 @@ body {
|
|
|
418
400
|
.o-car__item {
|
|
419
401
|
flex-shrink: 0;
|
|
420
402
|
}
|
|
403
|
+
.o-car__item--clickable {
|
|
404
|
+
cursor: pointer;
|
|
405
|
+
}
|
|
421
406
|
.o-car__indicators {
|
|
422
407
|
width: 100%;
|
|
423
408
|
display: flex;
|
|
@@ -485,7 +470,7 @@ body {
|
|
|
485
470
|
-ms-user-select: none;
|
|
486
471
|
user-select: none;
|
|
487
472
|
}
|
|
488
|
-
.o-
|
|
473
|
+
.o-chk__input {
|
|
489
474
|
width: var(--oruga-checkbox-size, 1rem);
|
|
490
475
|
height: var(--oruga-checkbox-size, 1rem);
|
|
491
476
|
outline: none;
|
|
@@ -505,12 +490,12 @@ body {
|
|
|
505
490
|
border-style: solid;
|
|
506
491
|
transition-property: background;
|
|
507
492
|
}
|
|
508
|
-
.o-
|
|
493
|
+
.o-chk__input--checked {
|
|
509
494
|
background-color: var(--oruga-checkbox-active-background-color, #445e00);
|
|
510
495
|
border-color: var(--oruga-checkbox-active-background-color, #445e00);
|
|
511
496
|
background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 234 225' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(3.13817,0,0,3.13817,-69.2796,-49.5156)'%3E%3Cpath style='fill:var(--oruga-checkbox-checkmark-color, %23ffffff)' d='M22.504,26.219L28.637,32.386L39.494,18.284L37.348,16.379L28,27.725L24.46,24.196L22.504,26.219Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
|
512
497
|
}
|
|
513
|
-
.o-
|
|
498
|
+
.o-chk__input--indeterminate {
|
|
514
499
|
background-color: var(--oruga-checkbox-active-background-color, #445e00);
|
|
515
500
|
border-color: var(--oruga-checkbox-active-background-color, #445e00);
|
|
516
501
|
background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 417 417' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(6.96176,0,0,20.5682,-118.661,-806.753)'%3E%3Cpath style='fill:var(--oruga-checkbox-checkmark-color, %23ffffff)' d='M31.265,41.654C31.265,41.324 30.474,41.057 29.5,41.057L18.953,41.057C17.979,41.057 17.188,41.324 17.188,41.654C17.188,41.984 17.979,42.252 18.953,42.252L29.5,42.252C30.474,42.252 31.265,41.984 31.265,41.654Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
|
@@ -543,6 +528,12 @@ body {
|
|
|
543
528
|
justify-content: center;
|
|
544
529
|
text-align: center;
|
|
545
530
|
}
|
|
531
|
+
.o-dpck__header__previous {
|
|
532
|
+
order: 1;
|
|
533
|
+
}
|
|
534
|
+
.o-dpck__header__next {
|
|
535
|
+
order: 3;
|
|
536
|
+
}
|
|
546
537
|
.o-dpck__header__previous, .o-dpck__header__next {
|
|
547
538
|
justify-content: center;
|
|
548
539
|
text-align: center;
|
|
@@ -566,12 +557,6 @@ body {
|
|
|
566
557
|
.o-dpck__header__previous:hover, .o-dpck__header__next:hover {
|
|
567
558
|
text-decoration: none;
|
|
568
559
|
}
|
|
569
|
-
.o-dpck__header__previous {
|
|
570
|
-
order: 1;
|
|
571
|
-
}
|
|
572
|
-
.o-dpck__header__next {
|
|
573
|
-
order: 3;
|
|
574
|
-
}
|
|
575
560
|
.o-dpck__header__list {
|
|
576
561
|
order: 2;
|
|
577
562
|
align-items: center;
|
|
@@ -589,64 +574,64 @@ body {
|
|
|
589
574
|
margin-left: 0.125rem;
|
|
590
575
|
margin-right: 0.125rem;
|
|
591
576
|
}
|
|
592
|
-
.o-dpck__table, .o-
|
|
577
|
+
.o-dpck__table, .o-dpck__month {
|
|
593
578
|
display: table;
|
|
594
579
|
margin: 0 auto 0 auto;
|
|
595
580
|
}
|
|
596
|
-
.o-dpck__table__head, .o-
|
|
581
|
+
.o-dpck__table__head, .o-dpck__month__head {
|
|
597
582
|
display: table-header-group;
|
|
598
583
|
}
|
|
599
|
-
.o-dpck__table__body, .o-
|
|
584
|
+
.o-dpck__table__body, .o-dpck__month__body {
|
|
600
585
|
display: table-row-group;
|
|
601
586
|
}
|
|
602
|
-
.o-dpck__table__row, .o-
|
|
587
|
+
.o-dpck__table__row, .o-dpck__month__row {
|
|
603
588
|
display: table-row;
|
|
604
589
|
}
|
|
605
|
-
.o-dpck__table__cell, .o-
|
|
590
|
+
.o-dpck__table__cell, .o-dpck__month__cell {
|
|
606
591
|
text-align: center;
|
|
607
592
|
vertical-align: middle;
|
|
608
593
|
display: table-cell;
|
|
609
594
|
text-decoration: none;
|
|
610
595
|
}
|
|
611
|
-
.o-dpck__table__cell--unselectable, .o-
|
|
596
|
+
.o-dpck__table__cell--unselectable, .o-dpck__month__cell--unselectable {
|
|
612
597
|
color: var(--oruga-datepicker-item-disabled-color, #b5b5b5);
|
|
613
598
|
}
|
|
614
|
-
.o-dpck__table__cell--selectable, .o-
|
|
599
|
+
.o-dpck__table__cell--selectable, .o-dpck__month__cell--selectable {
|
|
615
600
|
color: var(--oruga-datepicker-item-selectable-color, #4a4a4a);
|
|
616
601
|
}
|
|
617
|
-
.o-dpck__table__cell--first-hovered, .o-
|
|
602
|
+
.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered {
|
|
618
603
|
background-color: var(--oruga-datepicker-item-hovered-background-color, #7a7a7a);
|
|
619
604
|
color: var(--oruga-datepicker-item-hovered-color, #dbdbdb);
|
|
620
605
|
}
|
|
621
|
-
.o-dpck__table__cell--within-hovered, .o-
|
|
606
|
+
.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered {
|
|
622
607
|
color: var(--oruga-datepicker-item-hovered-color, #dbdbdb);
|
|
623
608
|
}
|
|
624
|
-
.o-dpck__table__cell--last-hovered, .o-
|
|
609
|
+
.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered {
|
|
625
610
|
background-color: var(--oruga-datepicker-item-hovered-background-color, #7a7a7a);
|
|
626
611
|
color: var(--oruga-datepicker-item-hovered-color, #dbdbdb);
|
|
627
612
|
}
|
|
628
|
-
.o-dpck__table__cell--selected:not(.o-dpck__table__cell--first-hovered, .o-
|
|
613
|
+
.o-dpck__table__cell--selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered), .o-dpck__month__cell--selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered) {
|
|
629
614
|
background-color: var(--oruga-datepicker-item-selected-background-color, #445e00);
|
|
630
615
|
color: var(--oruga-datepicker-item-selected-color, #ffffff);
|
|
631
616
|
}
|
|
632
|
-
.o-dpck__table__cell--first-selected:not(.o-dpck__table__cell--first-hovered, .o-
|
|
617
|
+
.o-dpck__table__cell--first-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered), .o-dpck__month__cell--first-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered) {
|
|
633
618
|
background-color: var(--oruga-datepicker-item-selected-background-color, #445e00);
|
|
634
619
|
color: var(--oruga-datepicker-item-selected-color, #ffffff);
|
|
635
620
|
}
|
|
636
|
-
.o-dpck__table__cell--within-selected:not(.o-dpck__table__cell--first-hovered, .o-
|
|
621
|
+
.o-dpck__table__cell--within-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered), .o-dpck__month__cell--within-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered) {
|
|
637
622
|
background-color: var(--oruga-datepicker-item-selected-within-background-color, rgba(68, 94, 0, 0.5));
|
|
638
623
|
}
|
|
639
|
-
.o-dpck__table__cell--last-selected:not(.o-dpck__table__cell--first-hovered, .o-
|
|
624
|
+
.o-dpck__table__cell--last-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered), .o-dpck__month__cell--last-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__month__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__month__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__month__cell--last-hovered) {
|
|
640
625
|
background-color: var(--oruga-datepicker-item-selected-background-color, #445e00);
|
|
641
626
|
color: var(--oruga-datepicker-item-selected-color, #ffffff);
|
|
642
627
|
}
|
|
643
|
-
.o-dpck__table__cell--invisible, .o-
|
|
628
|
+
.o-dpck__table__cell--invisible, .o-dpck__month__cell--invisible {
|
|
644
629
|
visibility: hidden;
|
|
645
630
|
}
|
|
646
|
-
.o-dpck__table__cell--events, .o-
|
|
631
|
+
.o-dpck__table__cell--events, .o-dpck__month__cell--events {
|
|
647
632
|
position: relative;
|
|
648
633
|
}
|
|
649
|
-
.o-dpck__table__events, .o-
|
|
634
|
+
.o-dpck__table__events, .o-dpck__month__events {
|
|
650
635
|
display: flex;
|
|
651
636
|
justify-content: center;
|
|
652
637
|
position: absolute;
|
|
@@ -654,22 +639,22 @@ body {
|
|
|
654
639
|
left: 0;
|
|
655
640
|
bottom: 15%;
|
|
656
641
|
}
|
|
657
|
-
.o-dpck__table__event, .o-
|
|
642
|
+
.o-dpck__table__event, .o-dpck__month__event {
|
|
658
643
|
background-color: var(--oruga-datepicker-event-background-color, #b5b5b5);
|
|
659
644
|
}
|
|
660
|
-
.o-dpck__table__event--dots, .o-
|
|
645
|
+
.o-dpck__table__event--dots, .o-dpck__month__event--dots {
|
|
661
646
|
border-radius: 50%;
|
|
662
647
|
}
|
|
663
|
-
.o-dpck__table__event--bars, .o-
|
|
648
|
+
.o-dpck__table__event--bars, .o-dpck__month__event--bars {
|
|
664
649
|
width: 100%;
|
|
665
650
|
}
|
|
666
|
-
.o-
|
|
651
|
+
.o-dpck__month__table {
|
|
667
652
|
display: inline-flex;
|
|
668
653
|
flex-wrap: wrap;
|
|
669
654
|
flex-direction: row;
|
|
670
655
|
width: 17rem;
|
|
671
656
|
}
|
|
672
|
-
.o-
|
|
657
|
+
.o-dpck__month__cell {
|
|
673
658
|
display: flex;
|
|
674
659
|
align-items: center;
|
|
675
660
|
justify-content: center;
|
|
@@ -707,14 +692,6 @@ body {
|
|
|
707
692
|
position: relative;
|
|
708
693
|
vertical-align: top;
|
|
709
694
|
}
|
|
710
|
-
.o-drop--inline {
|
|
711
|
-
display: inline;
|
|
712
|
-
}
|
|
713
|
-
.o-drop--inline .o-drop__menu {
|
|
714
|
-
position: static;
|
|
715
|
-
display: inline-block;
|
|
716
|
-
padding: 0;
|
|
717
|
-
}
|
|
718
695
|
.o-drop__overlay {
|
|
719
696
|
position: fixed;
|
|
720
697
|
bottom: 0;
|
|
@@ -731,30 +708,65 @@ body {
|
|
|
731
708
|
}
|
|
732
709
|
.o-drop__menu {
|
|
733
710
|
position: absolute;
|
|
734
|
-
left: 0;
|
|
735
|
-
top: 100%;
|
|
736
711
|
display: block;
|
|
737
712
|
z-index: var(--oruga-dropdown-menu-zindex, 20);
|
|
738
713
|
background-color: var(--oruga-dropdown-menu-background, #ffffff);
|
|
739
714
|
}
|
|
740
|
-
.o-drop__menu--
|
|
715
|
+
.o-drop__menu--bottom {
|
|
716
|
+
left: 50%;
|
|
717
|
+
right: auto;
|
|
718
|
+
top: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
|
|
719
|
+
bottom: auto;
|
|
720
|
+
transform: translateX(-50%);
|
|
721
|
+
}
|
|
722
|
+
.o-drop__menu--top {
|
|
723
|
+
left: 50%;
|
|
724
|
+
right: auto;
|
|
741
725
|
top: auto;
|
|
742
|
-
bottom: 100
|
|
743
|
-
|
|
726
|
+
bottom: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
|
|
727
|
+
transform: translateX(-50%);
|
|
728
|
+
}
|
|
729
|
+
.o-drop__menu--left {
|
|
730
|
+
right: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
|
|
744
731
|
left: auto;
|
|
732
|
+
top: 50%;
|
|
733
|
+
bottom: auto;
|
|
734
|
+
transform: translateY(-50%);
|
|
745
735
|
}
|
|
746
|
-
.o-drop__menu--
|
|
736
|
+
.o-drop__menu--right {
|
|
737
|
+
right: auto;
|
|
738
|
+
left: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
|
|
739
|
+
top: 50%;
|
|
740
|
+
bottom: auto;
|
|
741
|
+
transform: translateY(-50%);
|
|
742
|
+
}
|
|
743
|
+
.o-drop__menu--top-right {
|
|
747
744
|
right: 0;
|
|
748
745
|
left: auto;
|
|
746
|
+
top: auto;
|
|
747
|
+
bottom: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
|
|
749
748
|
}
|
|
750
|
-
.o-drop__menu--top-
|
|
749
|
+
.o-drop__menu--top-left {
|
|
750
|
+
right: auto;
|
|
751
|
+
left: 0;
|
|
751
752
|
top: auto;
|
|
752
|
-
bottom: 100
|
|
753
|
+
bottom: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
|
|
754
|
+
}
|
|
755
|
+
.o-drop__menu--bottom-right {
|
|
756
|
+
right: 0;
|
|
757
|
+
left: auto;
|
|
758
|
+
top: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
|
|
759
|
+
bottom: auto;
|
|
760
|
+
}
|
|
761
|
+
.o-drop__menu--bottom-left {
|
|
762
|
+
right: auto;
|
|
763
|
+
left: 0;
|
|
764
|
+
top: calc(100% + var(--oruga-dropdown-menu-spacer, 0px));
|
|
765
|
+
bottom: auto;
|
|
753
766
|
}
|
|
754
767
|
.o-drop__item {
|
|
755
768
|
display: block;
|
|
756
769
|
position: relative;
|
|
757
|
-
cursor: pointer;
|
|
758
770
|
}
|
|
759
771
|
.o-drop__item--disabled {
|
|
760
772
|
opacity: var(--oruga-dropdown-item-disabled-opacity, 0.5);
|
|
@@ -764,6 +776,17 @@ body {
|
|
|
764
776
|
background-color: var(--oruga-dropdown-item-active-background-color, #445e00);
|
|
765
777
|
color: var(--oruga-dropdown-item-active-color, #ffffff);
|
|
766
778
|
}
|
|
779
|
+
.o-drop__item--clickable {
|
|
780
|
+
cursor: pointer;
|
|
781
|
+
}
|
|
782
|
+
.o-drop--inline {
|
|
783
|
+
display: inline;
|
|
784
|
+
}
|
|
785
|
+
.o-drop--inline .o-drop__menu {
|
|
786
|
+
position: static;
|
|
787
|
+
display: inline-block;
|
|
788
|
+
padding: 0;
|
|
789
|
+
}
|
|
767
790
|
.o-drop--expanded {
|
|
768
791
|
width: 100%;
|
|
769
792
|
}
|
|
@@ -787,6 +810,9 @@ body {
|
|
|
787
810
|
.o-drop--mobile > .o-drop__overlay {
|
|
788
811
|
display: block;
|
|
789
812
|
}
|
|
813
|
+
.o-drop--teleport {
|
|
814
|
+
width: unset;
|
|
815
|
+
}
|
|
790
816
|
|
|
791
817
|
/* @docs */
|
|
792
818
|
/* @docs */
|
|
@@ -803,21 +829,21 @@ body {
|
|
|
803
829
|
display: flex;
|
|
804
830
|
justify-content: flex-start;
|
|
805
831
|
}
|
|
806
|
-
.o-field--addons > *:first-child:not(:only-child) button,
|
|
807
832
|
.o-field--addons > button:first-child,
|
|
808
|
-
.o-field--addons > *:first-child:not(:only-child)
|
|
833
|
+
.o-field--addons > *:first-child:not(:only-child) button,
|
|
809
834
|
.o-field--addons > input:first-child,
|
|
810
|
-
.o-field--addons > *:first-child:not(:only-child)
|
|
811
|
-
.o-field--addons > select:first-child
|
|
835
|
+
.o-field--addons > *:first-child:not(:only-child) input,
|
|
836
|
+
.o-field--addons > select:first-child,
|
|
837
|
+
.o-field--addons > *:first-child:not(:only-child) select {
|
|
812
838
|
border-bottom-right-radius: 0;
|
|
813
839
|
border-top-right-radius: 0;
|
|
814
840
|
}
|
|
815
|
-
.o-field--addons > *:last-child:not(:only-child) button,
|
|
816
841
|
.o-field--addons > button:last-child,
|
|
817
|
-
.o-field--addons > *:last-child:not(:only-child)
|
|
842
|
+
.o-field--addons > *:last-child:not(:only-child) button,
|
|
818
843
|
.o-field--addons > input:last-child,
|
|
819
|
-
.o-field--addons > *:last-child:not(:only-child)
|
|
820
|
-
.o-field--addons > select:last-child
|
|
844
|
+
.o-field--addons > *:last-child:not(:only-child) input,
|
|
845
|
+
.o-field--addons > select:last-child,
|
|
846
|
+
.o-field--addons > *:last-child:not(:only-child) select {
|
|
821
847
|
border-bottom-left-radius: 0;
|
|
822
848
|
border-top-left-radius: 0;
|
|
823
849
|
}
|
|
@@ -904,22 +930,23 @@ body {
|
|
|
904
930
|
|
|
905
931
|
/* @docs */
|
|
906
932
|
/* @docs */
|
|
907
|
-
.o-ctrl-input {
|
|
908
|
-
display: block;
|
|
909
|
-
position: relative;
|
|
910
|
-
}
|
|
911
|
-
.o-ctrl-input--expanded {
|
|
912
|
-
width: 100%;
|
|
913
|
-
flex-grow: 1;
|
|
914
|
-
flex-shrink: 1;
|
|
915
|
-
}
|
|
916
|
-
|
|
917
933
|
.o-input {
|
|
918
934
|
-moz-appearance: none;
|
|
919
935
|
-webkit-appearance: none;
|
|
920
936
|
display: inline-flex;
|
|
921
937
|
position: relative;
|
|
922
938
|
vertical-align: top;
|
|
939
|
+
}
|
|
940
|
+
.o-input__wrapper {
|
|
941
|
+
display: inline-block;
|
|
942
|
+
position: relative;
|
|
943
|
+
}
|
|
944
|
+
.o-input__wrapper--expanded {
|
|
945
|
+
width: 100%;
|
|
946
|
+
flex-grow: 1;
|
|
947
|
+
flex-shrink: 1;
|
|
948
|
+
}
|
|
949
|
+
.o-input__wrapper--expanded .o-input {
|
|
923
950
|
width: 100%;
|
|
924
951
|
}
|
|
925
952
|
.o-input__textarea {
|
|
@@ -944,59 +971,6 @@ body {
|
|
|
944
971
|
.o-input__icon-left {
|
|
945
972
|
left: 0;
|
|
946
973
|
}
|
|
947
|
-
|
|
948
|
-
/* @docs */
|
|
949
|
-
/* @docs */
|
|
950
|
-
.o-inputit {
|
|
951
|
-
display: block;
|
|
952
|
-
}
|
|
953
|
-
.o-inputit__container {
|
|
954
|
-
display: flex;
|
|
955
|
-
align-items: center;
|
|
956
|
-
justify-content: flex-start;
|
|
957
|
-
position: relative;
|
|
958
|
-
vertical-align: top;
|
|
959
|
-
flex-wrap: wrap;
|
|
960
|
-
border-color: var(--oruga-inputitems-border-color, #dbdbdb);
|
|
961
|
-
border-style: var(--oruga-inputitems-border-style, solid);
|
|
962
|
-
border-width: var(--oruga-inputitems-border-width, 1px);
|
|
963
|
-
color: var(--oruga-inputitems-color, #363636);
|
|
964
|
-
}
|
|
965
|
-
.o-inputit__autocomplete {
|
|
966
|
-
position: static;
|
|
967
|
-
flex: 1;
|
|
968
|
-
}
|
|
969
|
-
.o-inputit__input {
|
|
970
|
-
border: none;
|
|
971
|
-
box-shadow: none;
|
|
972
|
-
}
|
|
973
|
-
.o-inputit__input:focus {
|
|
974
|
-
box-shadow: none;
|
|
975
|
-
}
|
|
976
|
-
.o-inputit__item {
|
|
977
|
-
display: inline-flex;
|
|
978
|
-
justify-content: center;
|
|
979
|
-
align-items: center;
|
|
980
|
-
position: relative;
|
|
981
|
-
margin-left: -0.1875em;
|
|
982
|
-
margin-right: -0.1875em;
|
|
983
|
-
background-color: var(--oruga-inputitems-item-background-color, #445e00);
|
|
984
|
-
color: var(--oruga-inputitems-item-color, #ffffff);
|
|
985
|
-
}
|
|
986
|
-
.o-inputit__item > * {
|
|
987
|
-
margin-left: 0.1875em;
|
|
988
|
-
margin-right: 0.1875em;
|
|
989
|
-
}
|
|
990
|
-
.o-inputit__counter {
|
|
991
|
-
display: block;
|
|
992
|
-
float: right;
|
|
993
|
-
}
|
|
994
|
-
.o-inputit--expanded {
|
|
995
|
-
width: 100%;
|
|
996
|
-
flex-grow: 1;
|
|
997
|
-
flex-shrink: 1;
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
974
|
/* @docs */
|
|
1001
975
|
/* @docs */
|
|
1002
976
|
.o-load {
|
|
@@ -1023,14 +997,13 @@ body {
|
|
|
1023
997
|
|
|
1024
998
|
/* @docs */
|
|
1025
999
|
/* @docs */
|
|
1026
|
-
.o-
|
|
1027
|
-
.o-menu-list .o-menu-item__wrapper {
|
|
1000
|
+
.o-menu__list, .o-menu__item__wrapper {
|
|
1028
1001
|
list-style: none;
|
|
1029
1002
|
}
|
|
1030
|
-
.o-
|
|
1003
|
+
.o-menu__label {
|
|
1031
1004
|
text-transform: uppercase;
|
|
1032
1005
|
}
|
|
1033
|
-
.o-
|
|
1006
|
+
.o-menu__item {
|
|
1034
1007
|
display: block;
|
|
1035
1008
|
list-style: none;
|
|
1036
1009
|
}
|
|
@@ -1208,6 +1181,25 @@ body {
|
|
|
1208
1181
|
text-align: center;
|
|
1209
1182
|
pointer-events: none;
|
|
1210
1183
|
}
|
|
1184
|
+
.o-pag__next {
|
|
1185
|
+
order: 3;
|
|
1186
|
+
}
|
|
1187
|
+
.o-pag__previous {
|
|
1188
|
+
order: 2;
|
|
1189
|
+
}
|
|
1190
|
+
.o-pag__list {
|
|
1191
|
+
align-items: center;
|
|
1192
|
+
display: flex;
|
|
1193
|
+
text-align: center;
|
|
1194
|
+
list-style: none;
|
|
1195
|
+
flex-wrap: wrap;
|
|
1196
|
+
margin: 0;
|
|
1197
|
+
padding: 0;
|
|
1198
|
+
flex-grow: 1;
|
|
1199
|
+
flex-shrink: 1;
|
|
1200
|
+
justify-content: flex-start;
|
|
1201
|
+
order: 1;
|
|
1202
|
+
}
|
|
1211
1203
|
.o-pag--simple {
|
|
1212
1204
|
justify-content: normal;
|
|
1213
1205
|
}
|
|
@@ -1237,25 +1229,6 @@ body {
|
|
|
1237
1229
|
justify-content: flex-end;
|
|
1238
1230
|
order: 2;
|
|
1239
1231
|
}
|
|
1240
|
-
.o-pag__next {
|
|
1241
|
-
order: 3;
|
|
1242
|
-
}
|
|
1243
|
-
.o-pag__previous {
|
|
1244
|
-
order: 2;
|
|
1245
|
-
}
|
|
1246
|
-
.o-pag__list {
|
|
1247
|
-
align-items: center;
|
|
1248
|
-
display: flex;
|
|
1249
|
-
text-align: center;
|
|
1250
|
-
list-style: none;
|
|
1251
|
-
flex-wrap: wrap;
|
|
1252
|
-
margin: 0;
|
|
1253
|
-
padding: 0;
|
|
1254
|
-
flex-grow: 1;
|
|
1255
|
-
flex-shrink: 1;
|
|
1256
|
-
justify-content: flex-start;
|
|
1257
|
-
order: 1;
|
|
1258
|
-
}
|
|
1259
1232
|
.o-pag--mobile {
|
|
1260
1233
|
justify-content: flex-start;
|
|
1261
1234
|
flex-wrap: wrap;
|
|
@@ -1294,7 +1267,7 @@ body {
|
|
|
1294
1267
|
-ms-user-select: none;
|
|
1295
1268
|
user-select: none;
|
|
1296
1269
|
}
|
|
1297
|
-
.o-
|
|
1270
|
+
.o-radio__input {
|
|
1298
1271
|
width: var(--oruga-radio-size, 1rem);
|
|
1299
1272
|
height: var(--oruga-radio-size, 1rem);
|
|
1300
1273
|
margin: 0;
|
|
@@ -1312,7 +1285,7 @@ body {
|
|
|
1312
1285
|
transition-property: background;
|
|
1313
1286
|
background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(10.1032,0,0,10.1032,-255.068,-313.298)'%3E%3Ccircle cx='30.195' cy='35.959' r='4.85' style='fill:var(--oruga-radio-active-background-color, %23445e00);'/%3E%3C/g%3E%3C/svg%3E");
|
|
1314
1287
|
}
|
|
1315
|
-
.o-
|
|
1288
|
+
.o-radio__input--checked {
|
|
1316
1289
|
background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.38544,0,0,4.38544,-94.4336,-58.9876)'%3E%3Cpath d='M32.935,13.679C39.102,13.679 44.108,18.685 44.108,24.852C44.108,31.019 39.102,36.025 32.935,36.025C26.768,36.025 21.761,31.019 21.761,24.852C21.761,18.685 26.768,13.679 32.935,13.679ZM32.798,17.05C37.105,17.05 40.601,20.546 40.601,24.852C40.601,29.158 37.105,32.655 32.798,32.655C28.492,32.655 24.996,29.158 24.996,24.852C24.996,20.546 28.492,17.05 32.798,17.05Z' style='fill:var(--oruga-radio-active-background-color, %23445e00);'/%3E%3Ccircle cx='32.84' cy='24.8' r='7.9' style='fill:transparent;'/%3E%3C/g%3E%3C/svg%3E");
|
|
1317
1290
|
}
|
|
1318
1291
|
.o-radio--disabled {
|
|
@@ -1402,32 +1375,43 @@ body {
|
|
|
1402
1375
|
|
|
1403
1376
|
/* @docs */
|
|
1404
1377
|
/* @docs */
|
|
1405
|
-
.o-
|
|
1406
|
-
background-color: var(--oruga-sidebar-content-background-color, #dbdbdb);
|
|
1407
|
-
z-index: calc(var(--oruga-sidebar-zindex, 38) + 1);
|
|
1408
|
-
}
|
|
1409
|
-
.o-side__content--fixed {
|
|
1378
|
+
.o-side {
|
|
1410
1379
|
position: fixed;
|
|
1411
|
-
left: 0;
|
|
1412
1380
|
top: 0;
|
|
1381
|
+
left: 0;
|
|
1382
|
+
height: 100%;
|
|
1383
|
+
width: 100%;
|
|
1384
|
+
display: none;
|
|
1385
|
+
z-index: var(--oruga-sidebar-zindex, 100);
|
|
1413
1386
|
}
|
|
1414
|
-
.o-side__content
|
|
1387
|
+
.o-side__content {
|
|
1415
1388
|
position: absolute;
|
|
1416
|
-
|
|
1417
|
-
|
|
1389
|
+
background-color: var(--oruga-sidebar-content-background-color, #dbdbdb);
|
|
1390
|
+
}
|
|
1391
|
+
.o-side__content--right, .o-side__content--left {
|
|
1392
|
+
transition: width;
|
|
1393
|
+
}
|
|
1394
|
+
.o-side__content--top, .o-side__content--bottom {
|
|
1395
|
+
transition: height;
|
|
1418
1396
|
}
|
|
1419
1397
|
.o-side__content--right {
|
|
1420
1398
|
left: auto;
|
|
1421
1399
|
right: 0;
|
|
1422
1400
|
}
|
|
1423
|
-
.o-side__content--
|
|
1424
|
-
|
|
1401
|
+
.o-side__content--left {
|
|
1402
|
+
left: 0;
|
|
1403
|
+
right: auto;
|
|
1425
1404
|
}
|
|
1426
|
-
.o-side__content--
|
|
1427
|
-
|
|
1405
|
+
.o-side__content--top {
|
|
1406
|
+
top: 0;
|
|
1407
|
+
bottom: auto;
|
|
1428
1408
|
}
|
|
1429
|
-
.o-side__content--
|
|
1430
|
-
|
|
1409
|
+
.o-side__content--bottom {
|
|
1410
|
+
top: auto;
|
|
1411
|
+
bottom: 0;
|
|
1412
|
+
}
|
|
1413
|
+
.o-side__content--reduced-expand:hover {
|
|
1414
|
+
transition: width;
|
|
1431
1415
|
}
|
|
1432
1416
|
.o-side__content--fullwidth {
|
|
1433
1417
|
width: 100%;
|
|
@@ -1436,20 +1420,26 @@ body {
|
|
|
1436
1420
|
.o-side__content--fullheight {
|
|
1437
1421
|
height: 100%;
|
|
1438
1422
|
max-height: 100%;
|
|
1439
|
-
overflow: hidden;
|
|
1440
|
-
overflow-y: auto;
|
|
1441
|
-
display: flex;
|
|
1442
|
-
flex-direction: column;
|
|
1443
|
-
align-content: stretch;
|
|
1444
1423
|
}
|
|
1445
1424
|
.o-side__overlay {
|
|
1425
|
+
position: absolute;
|
|
1446
1426
|
bottom: 0;
|
|
1447
1427
|
left: 0;
|
|
1448
1428
|
right: 0;
|
|
1449
1429
|
top: 0;
|
|
1450
|
-
position: fixed;
|
|
1451
1430
|
background: var(--oruga-sidebar-overlay, hsla(0, 0%, 4%, 0.86));
|
|
1452
|
-
|
|
1431
|
+
}
|
|
1432
|
+
.o-side--active {
|
|
1433
|
+
display: block;
|
|
1434
|
+
}
|
|
1435
|
+
.o-side--inline {
|
|
1436
|
+
position: relative;
|
|
1437
|
+
}
|
|
1438
|
+
.o-side--inline .o-side__overlay {
|
|
1439
|
+
position: absolute;
|
|
1440
|
+
}
|
|
1441
|
+
.o-side--inline .o-side__content {
|
|
1442
|
+
position: relative;
|
|
1453
1443
|
}
|
|
1454
1444
|
|
|
1455
1445
|
/* @docs */
|
|
@@ -1864,6 +1854,11 @@ body {
|
|
|
1864
1854
|
justify-content: space-between;
|
|
1865
1855
|
display: flex;
|
|
1866
1856
|
}
|
|
1857
|
+
.o-table__pagination > div {
|
|
1858
|
+
flex-basis: auto;
|
|
1859
|
+
flex-grow: 0;
|
|
1860
|
+
flex-shrink: 0;
|
|
1861
|
+
}
|
|
1867
1862
|
.o-table__pagination > div:first-child {
|
|
1868
1863
|
align-items: center;
|
|
1869
1864
|
justify-content: flex-start;
|
|
@@ -1880,11 +1875,6 @@ body {
|
|
|
1880
1875
|
flex-shrink: 0;
|
|
1881
1876
|
justify-content: center;
|
|
1882
1877
|
}
|
|
1883
|
-
.o-table__pagination > div {
|
|
1884
|
-
flex-basis: auto;
|
|
1885
|
-
flex-grow: 0;
|
|
1886
|
-
flex-shrink: 0;
|
|
1887
|
-
}
|
|
1888
1878
|
|
|
1889
1879
|
/* @docs */
|
|
1890
1880
|
/* @docs */
|
|
@@ -2037,6 +2027,58 @@ body {
|
|
|
2037
2027
|
.o-tabs__content--transitioning {
|
|
2038
2028
|
overflow: hidden;
|
|
2039
2029
|
}
|
|
2030
|
+
/* @docs */
|
|
2031
|
+
/* @docs */
|
|
2032
|
+
.o-taginput {
|
|
2033
|
+
display: block;
|
|
2034
|
+
}
|
|
2035
|
+
.o-taginput__container {
|
|
2036
|
+
display: flex;
|
|
2037
|
+
align-items: center;
|
|
2038
|
+
justify-content: flex-start;
|
|
2039
|
+
position: relative;
|
|
2040
|
+
vertical-align: top;
|
|
2041
|
+
flex-wrap: wrap;
|
|
2042
|
+
border-color: var(--oruga-taginput-border-color, #dbdbdb);
|
|
2043
|
+
border-style: var(--oruga-taginput-border-style, solid);
|
|
2044
|
+
border-width: var(--oruga-taginput-border-width, 1px);
|
|
2045
|
+
color: var(--oruga-taginput-color, #363636);
|
|
2046
|
+
}
|
|
2047
|
+
.o-taginput__autocomplete {
|
|
2048
|
+
position: static;
|
|
2049
|
+
flex: 1;
|
|
2050
|
+
}
|
|
2051
|
+
.o-taginput__input {
|
|
2052
|
+
border: none;
|
|
2053
|
+
box-shadow: none;
|
|
2054
|
+
}
|
|
2055
|
+
.o-taginput__input:focus {
|
|
2056
|
+
box-shadow: none;
|
|
2057
|
+
}
|
|
2058
|
+
.o-taginput__item {
|
|
2059
|
+
display: inline-flex;
|
|
2060
|
+
justify-content: center;
|
|
2061
|
+
align-items: center;
|
|
2062
|
+
position: relative;
|
|
2063
|
+
margin-left: -0.1875em;
|
|
2064
|
+
margin-right: -0.1875em;
|
|
2065
|
+
background-color: var(--oruga-taginput-item-background-color, #445e00);
|
|
2066
|
+
color: var(--oruga-taginput-item-color, #ffffff);
|
|
2067
|
+
}
|
|
2068
|
+
.o-taginput__item > * {
|
|
2069
|
+
margin-left: 0.1875em;
|
|
2070
|
+
margin-right: 0.1875em;
|
|
2071
|
+
}
|
|
2072
|
+
.o-taginput__counter {
|
|
2073
|
+
display: block;
|
|
2074
|
+
float: right;
|
|
2075
|
+
}
|
|
2076
|
+
.o-taginput--expanded {
|
|
2077
|
+
width: 100%;
|
|
2078
|
+
flex-grow: 1;
|
|
2079
|
+
flex-shrink: 1;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2040
2082
|
/* @docs */
|
|
2041
2083
|
/* @docs */
|
|
2042
2084
|
.o-tpck__dropdown {
|
|
@@ -2068,6 +2110,28 @@ body {
|
|
|
2068
2110
|
position: relative;
|
|
2069
2111
|
display: inline-flex;
|
|
2070
2112
|
}
|
|
2113
|
+
.o-tip__arrow {
|
|
2114
|
+
position: absolute;
|
|
2115
|
+
content: "";
|
|
2116
|
+
pointer-events: none;
|
|
2117
|
+
z-index: var(--oruga-tooltip-content-zindex, 38);
|
|
2118
|
+
color: var(--oruga-tooltip-background-color, #445e00);
|
|
2119
|
+
}
|
|
2120
|
+
.o-tip__arrow--bottom {
|
|
2121
|
+
top: auto;
|
|
2122
|
+
right: auto;
|
|
2123
|
+
bottom: 100%;
|
|
2124
|
+
left: 50%;
|
|
2125
|
+
transform: translateX(-50%);
|
|
2126
|
+
border-bottom-style: solid;
|
|
2127
|
+
border-right-style: solid;
|
|
2128
|
+
border-right-color: transparent;
|
|
2129
|
+
border-left-style: solid;
|
|
2130
|
+
border-left-color: transparent;
|
|
2131
|
+
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2132
|
+
border-right-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2133
|
+
border-left-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2134
|
+
}
|
|
2071
2135
|
.o-tip__arrow--top {
|
|
2072
2136
|
top: 100%;
|
|
2073
2137
|
right: auto;
|
|
@@ -2075,20 +2139,28 @@ body {
|
|
|
2075
2139
|
left: 50%;
|
|
2076
2140
|
transform: translateX(-50%);
|
|
2077
2141
|
border-top-style: solid;
|
|
2078
|
-
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2079
2142
|
border-right-style: solid;
|
|
2080
2143
|
border-right-color: transparent;
|
|
2081
2144
|
border-left-style: solid;
|
|
2082
2145
|
border-left-color: transparent;
|
|
2146
|
+
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2083
2147
|
border-right-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2084
2148
|
border-left-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2085
2149
|
}
|
|
2086
|
-
.o-
|
|
2087
|
-
top:
|
|
2150
|
+
.o-tip__arrow--left {
|
|
2151
|
+
top: 50%;
|
|
2088
2152
|
right: auto;
|
|
2089
|
-
bottom:
|
|
2090
|
-
left:
|
|
2091
|
-
transform:
|
|
2153
|
+
bottom: auto;
|
|
2154
|
+
left: 100%;
|
|
2155
|
+
transform: translateY(-50%);
|
|
2156
|
+
border-left-style: solid;
|
|
2157
|
+
border-top-style: solid;
|
|
2158
|
+
border-top-color: transparent;
|
|
2159
|
+
border-bottom-style: solid;
|
|
2160
|
+
border-bottom-color: transparent;
|
|
2161
|
+
border-left-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2162
|
+
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2163
|
+
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2092
2164
|
}
|
|
2093
2165
|
.o-tip__arrow--right {
|
|
2094
2166
|
top: 50%;
|
|
@@ -2097,35 +2169,86 @@ body {
|
|
|
2097
2169
|
left: auto;
|
|
2098
2170
|
transform: translateY(-50%);
|
|
2099
2171
|
border-right-style: solid;
|
|
2100
|
-
border-right-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2101
2172
|
border-top-style: solid;
|
|
2102
2173
|
border-top-color: transparent;
|
|
2103
2174
|
border-bottom-style: solid;
|
|
2104
2175
|
border-bottom-color: transparent;
|
|
2176
|
+
border-right-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2105
2177
|
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2106
2178
|
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2107
2179
|
}
|
|
2108
|
-
.o-
|
|
2109
|
-
top:
|
|
2180
|
+
.o-tip__arrow--top-right {
|
|
2181
|
+
top: 100%;
|
|
2110
2182
|
right: auto;
|
|
2111
2183
|
bottom: auto;
|
|
2112
|
-
left:
|
|
2113
|
-
transform:
|
|
2184
|
+
left: 50%;
|
|
2185
|
+
transform: translateX(-50%);
|
|
2186
|
+
border-top-style: solid;
|
|
2187
|
+
border-right-style: solid;
|
|
2188
|
+
border-right-color: transparent;
|
|
2189
|
+
border-left-style: solid;
|
|
2190
|
+
border-left-color: transparent;
|
|
2191
|
+
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2192
|
+
border-right-width: calc(var(--oruga-tooltip-arrow-size, 5px) *2);
|
|
2193
|
+
border-left-width: 0;
|
|
2114
2194
|
}
|
|
2115
|
-
.o-tip__arrow--
|
|
2195
|
+
.o-tip__arrow--top-left {
|
|
2196
|
+
top: 100%;
|
|
2197
|
+
right: auto;
|
|
2198
|
+
bottom: auto;
|
|
2199
|
+
left: 50%;
|
|
2200
|
+
transform: translateX(-50%);
|
|
2201
|
+
border-top-style: solid;
|
|
2202
|
+
border-right-style: solid;
|
|
2203
|
+
border-right-color: transparent;
|
|
2204
|
+
border-left-style: solid;
|
|
2205
|
+
border-left-color: transparent;
|
|
2206
|
+
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2207
|
+
border-left-width: calc(var(--oruga-tooltip-arrow-size, 5px) *2);
|
|
2208
|
+
border-right-width: 0;
|
|
2209
|
+
}
|
|
2210
|
+
.o-tip__arrow--bottom-left {
|
|
2116
2211
|
top: auto;
|
|
2117
2212
|
right: auto;
|
|
2118
2213
|
bottom: 100%;
|
|
2119
2214
|
left: 50%;
|
|
2120
2215
|
transform: translateX(-50%);
|
|
2121
2216
|
border-bottom-style: solid;
|
|
2217
|
+
border-right-style: solid;
|
|
2218
|
+
border-right-color: transparent;
|
|
2219
|
+
border-left-style: solid;
|
|
2220
|
+
border-left-color: transparent;
|
|
2122
2221
|
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2222
|
+
border-left-width: calc(var(--oruga-tooltip-arrow-size, 5px) *2);
|
|
2223
|
+
border-right-width: 0;
|
|
2224
|
+
}
|
|
2225
|
+
.o-tip__arrow--bottom-right {
|
|
2226
|
+
top: auto;
|
|
2227
|
+
right: auto;
|
|
2228
|
+
bottom: 100%;
|
|
2229
|
+
left: 50%;
|
|
2230
|
+
transform: translateX(-50%);
|
|
2231
|
+
border-bottom-style: solid;
|
|
2123
2232
|
border-right-style: solid;
|
|
2124
2233
|
border-right-color: transparent;
|
|
2125
2234
|
border-left-style: solid;
|
|
2126
2235
|
border-left-color: transparent;
|
|
2127
|
-
border-
|
|
2128
|
-
border-
|
|
2236
|
+
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2237
|
+
border-right-width: calc(var(--oruga-tooltip-arrow-size, 5px) *2);
|
|
2238
|
+
border-left-width: 0;
|
|
2239
|
+
}
|
|
2240
|
+
.o-tip__content {
|
|
2241
|
+
position: absolute;
|
|
2242
|
+
white-space: nowrap;
|
|
2243
|
+
z-index: var(--oruga-tooltip-content-zindex, 38);
|
|
2244
|
+
background-color: var(--oruga-tooltip-background-color, #445e00);
|
|
2245
|
+
}
|
|
2246
|
+
.o-tip__content--top {
|
|
2247
|
+
top: auto;
|
|
2248
|
+
right: auto;
|
|
2249
|
+
bottom: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2250
|
+
left: 50%;
|
|
2251
|
+
transform: translateX(-50%);
|
|
2129
2252
|
}
|
|
2130
2253
|
.o-tip__content--bottom {
|
|
2131
2254
|
top: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
@@ -2134,20 +2257,12 @@ body {
|
|
|
2134
2257
|
left: 50%;
|
|
2135
2258
|
transform: translateX(-50%);
|
|
2136
2259
|
}
|
|
2137
|
-
.o-
|
|
2260
|
+
.o-tip__content--right {
|
|
2138
2261
|
top: 50%;
|
|
2139
2262
|
right: auto;
|
|
2140
2263
|
bottom: auto;
|
|
2141
|
-
left: 100
|
|
2264
|
+
left: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2142
2265
|
transform: translateY(-50%);
|
|
2143
|
-
border-left-style: solid;
|
|
2144
|
-
border-left-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2145
|
-
border-top-style: solid;
|
|
2146
|
-
border-top-color: transparent;
|
|
2147
|
-
border-bottom-style: solid;
|
|
2148
|
-
border-bottom-color: transparent;
|
|
2149
|
-
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2150
|
-
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2151
2266
|
}
|
|
2152
2267
|
.o-tip__content--left {
|
|
2153
2268
|
top: 50%;
|
|
@@ -2156,18 +2271,29 @@ body {
|
|
|
2156
2271
|
left: auto;
|
|
2157
2272
|
transform: translateY(-50%);
|
|
2158
2273
|
}
|
|
2159
|
-
.o-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
color: var(--oruga-tooltip-background-color, #445e00);
|
|
2274
|
+
.o-tip__content--top-right {
|
|
2275
|
+
left: auto;
|
|
2276
|
+
top: auto;
|
|
2277
|
+
bottom: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2278
|
+
transform: translateX(50%);
|
|
2165
2279
|
}
|
|
2166
|
-
.o-tip__content {
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2280
|
+
.o-tip__content--top-left {
|
|
2281
|
+
right: auto;
|
|
2282
|
+
top: auto;
|
|
2283
|
+
bottom: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2284
|
+
transform: translateX(-50%);
|
|
2285
|
+
}
|
|
2286
|
+
.o-tip__content--bottom-right {
|
|
2287
|
+
left: auto;
|
|
2288
|
+
bottom: auto;
|
|
2289
|
+
top: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2290
|
+
transform: translateX(50%);
|
|
2291
|
+
}
|
|
2292
|
+
.o-tip__content--bottom-left {
|
|
2293
|
+
left: auto;
|
|
2294
|
+
bottom: auto;
|
|
2295
|
+
top: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2296
|
+
transform: translateX(-50%);
|
|
2171
2297
|
}
|
|
2172
2298
|
.o-tip__content--always {
|
|
2173
2299
|
opacity: 1;
|
|
@@ -2177,6 +2303,18 @@ body {
|
|
|
2177
2303
|
text-align: center;
|
|
2178
2304
|
white-space: normal;
|
|
2179
2305
|
}
|
|
2306
|
+
.o-tip--teleport .o-tip__content--top, .o-tip--teleport .o-tip__content--top-left, .o-tip--teleport .o-tip__content--top-right {
|
|
2307
|
+
margin-top: calc(-1 * (var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)));
|
|
2308
|
+
}
|
|
2309
|
+
.o-tip--teleport .o-tip__content--bottom, .o-tip--teleport .o-tip__content--bottom-left, .o-tip--teleport .o-tip__content--bottom-right {
|
|
2310
|
+
margin-top: calc(var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px));
|
|
2311
|
+
}
|
|
2312
|
+
.o-tip--teleport .o-tip__content--right {
|
|
2313
|
+
margin-left: calc(var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px));
|
|
2314
|
+
}
|
|
2315
|
+
.o-tip--teleport .o-tip__content--left {
|
|
2316
|
+
margin-left: calc(-1 * (var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)));
|
|
2317
|
+
}
|
|
2180
2318
|
.o-tip__trigger {
|
|
2181
2319
|
width: 100%;
|
|
2182
2320
|
}
|