@oruga-ui/theme-oruga 0.0.1 → 0.2.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.
Files changed (75) hide show
  1. package/dist/oruga-full.css +530 -388
  2. package/dist/oruga-full.min.css +1 -1
  3. package/dist/oruga.css +364 -225
  4. package/dist/oruga.min.css +1 -1
  5. package/dist/scss/components/_autocomplete.scss +0 -62
  6. package/dist/scss/components/_carousel.scss +10 -6
  7. package/dist/scss/components/_checkbox.scss +4 -4
  8. package/dist/scss/components/_datepicker.scss +11 -11
  9. package/dist/scss/components/_dropdown.scss +144 -31
  10. package/dist/scss/components/_field.scss +8 -8
  11. package/dist/scss/components/_icon.scss +3 -1
  12. package/dist/scss/components/_input.scss +38 -40
  13. package/dist/scss/components/_menu.scss +68 -68
  14. package/dist/scss/components/_pagination.scss +22 -22
  15. package/dist/scss/components/_radio.scss +8 -10
  16. package/dist/scss/components/_sidebar.scss +147 -42
  17. package/dist/scss/components/_switch.scss +4 -2
  18. package/dist/scss/components/_table.scss +14 -10
  19. package/dist/scss/components/_taginput.scss +163 -0
  20. package/dist/scss/components/_tooltip.scss +422 -218
  21. package/dist/scss/oruga-common.scss +1 -1
  22. package/dist/scss/oruga.scss +15 -20
  23. package/dist/scss/utils/_helpers.scss +3 -7
  24. package/dist/scss/utils/_variables.scss +0 -1
  25. package/package.json +28 -28
  26. package/src/App.vue +1 -0
  27. package/src/assets/scss/components/_autocomplete.scss +0 -62
  28. package/src/assets/scss/components/_carousel.scss +10 -6
  29. package/src/assets/scss/components/_checkbox.scss +4 -4
  30. package/src/assets/scss/components/_datepicker.scss +11 -11
  31. package/src/assets/scss/components/_dropdown.scss +144 -31
  32. package/src/assets/scss/components/_field.scss +8 -8
  33. package/src/assets/scss/components/_icon.scss +3 -1
  34. package/src/assets/scss/components/_input.scss +38 -40
  35. package/src/assets/scss/components/_menu.scss +68 -68
  36. package/src/assets/scss/components/_pagination.scss +22 -22
  37. package/src/assets/scss/components/_radio.scss +8 -10
  38. package/src/assets/scss/components/_sidebar.scss +147 -42
  39. package/src/assets/scss/components/_switch.scss +4 -2
  40. package/src/assets/scss/components/_table.scss +14 -10
  41. package/src/assets/scss/components/_taginput.scss +163 -0
  42. package/src/assets/scss/components/_tooltip.scss +422 -218
  43. package/src/assets/scss/oruga-common.scss +1 -1
  44. package/src/assets/scss/oruga.scss +15 -20
  45. package/src/assets/scss/utils/_helpers.scss +3 -7
  46. package/src/assets/scss/utils/_variables.scss +0 -1
  47. package/src/components/Autocomplete.vue +7 -7
  48. package/src/components/Button.vue +28 -28
  49. package/src/components/Carousel.vue +19 -20
  50. package/src/components/Checkbox.vue +43 -42
  51. package/src/components/Collapse.vue +3 -1
  52. package/src/components/Datepicker.vue +7 -10
  53. package/src/components/Datetimepicker.vue +4 -4
  54. package/src/components/Dropdown.vue +146 -101
  55. package/src/components/Field.vue +35 -43
  56. package/src/components/Icon.vue +1 -1
  57. package/src/components/Input.vue +9 -1
  58. package/src/components/Loading.vue +13 -14
  59. package/src/components/Menu.vue +42 -0
  60. package/src/components/Modal.vue +59 -0
  61. package/src/components/Notification.vue +6 -6
  62. package/src/components/Pagination.vue +5 -6
  63. package/src/components/Radio.vue +55 -39
  64. package/src/components/Sidebar.vue +34 -17
  65. package/src/components/Skeleton.vue +43 -25
  66. package/src/components/Slider.vue +2 -2
  67. package/src/components/Steps.vue +13 -14
  68. package/src/components/Switch.vue +22 -19
  69. package/src/components/Table.vue +30 -37
  70. package/src/components/Tabs.vue +3 -2
  71. package/src/components/Taginput.vue +14 -14
  72. package/src/components/Timepicker.vue +4 -6
  73. package/src/components/Tooltip.vue +54 -16
  74. package/dist/scss/components/_inputitems.scss +0 -175
  75. package/src/assets/scss/components/_inputitems.scss +0 -175
package/dist/oruga.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! Oruga v0.0.1 | MIT License | github.com/oruga-ui/oruga */
1
+ /*! Oruga v0.2.0 | 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-car__scene {
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-chk__check {
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-chk__check--checked {
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-chk__check--indeterminate {
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-dpck__molist.nth {
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-dpck__molist.nth__head {
581
+ .o-dpck__table__head, .o-dpck__month__head {
597
582
  display: table-header-group;
598
583
  }
599
- .o-dpck__table__body, .o-dpck__molist.nth__body {
584
+ .o-dpck__table__body, .o-dpck__month__body {
600
585
  display: table-row-group;
601
586
  }
602
- .o-dpck__table__row, .o-dpck__molist.nth__row {
587
+ .o-dpck__table__row, .o-dpck__month__row {
603
588
  display: table-row;
604
589
  }
605
- .o-dpck__table__cell, .o-dpck__molist.nth__cell {
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-dpck__molist.nth__cell--unselectable {
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-dpck__molist.nth__cell--selectable {
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-dpck__molist.nth__cell--first-hovered {
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-dpck__molist.nth__cell--within-hovered {
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-dpck__molist.nth__cell--last-hovered {
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-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered), .o-dpck__molist.nth__cell--selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered) {
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-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered), .o-dpck__molist.nth__cell--first-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered) {
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-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered), .o-dpck__molist.nth__cell--within-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered) {
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-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered), .o-dpck__molist.nth__cell--last-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered) {
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-dpck__molist.nth__cell--invisible {
628
+ .o-dpck__table__cell--invisible, .o-dpck__month__cell--invisible {
644
629
  visibility: hidden;
645
630
  }
646
- .o-dpck__table__cell--events, .o-dpck__molist.nth__cell--events {
631
+ .o-dpck__table__cell--events, .o-dpck__month__cell--events {
647
632
  position: relative;
648
633
  }
649
- .o-dpck__table__events, .o-dpck__molist.nth__events {
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-dpck__molist.nth__event {
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-dpck__molist.nth__event--dots {
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-dpck__molist.nth__event--bars {
648
+ .o-dpck__table__event--bars, .o-dpck__month__event--bars {
664
649
  width: 100%;
665
650
  }
666
- .o-dpck__molist.nth__table {
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-dpck__molist.nth__cell {
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--top-left {
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
- right: 0;
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--bottom-left {
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-right {
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) input,
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) select,
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) input,
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) select,
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-menu-list .o-menu-list,
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-menu-label {
1003
+ .o-menu__label {
1031
1004
  text-transform: uppercase;
1032
1005
  }
1033
- .o-menu-item {
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-radio__check {
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-radio__check--checked {
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 */
1378
+ .o-side {
1379
+ display: none;
1380
+ position: absolute;
1381
+ top: 0;
1382
+ left: 0;
1383
+ height: 100%;
1384
+ width: 100%;
1385
+ }
1405
1386
  .o-side__content {
1387
+ position: absolute;
1406
1388
  background-color: var(--oruga-sidebar-content-background-color, #dbdbdb);
1407
- z-index: calc(var(--oruga-sidebar-zindex, 38) + 1);
1389
+ z-index: calc(var(--oruga-sidebar-zindex, 100) + 1);
1408
1390
  }
1409
- .o-side__content--fixed {
1410
- position: fixed;
1411
- left: 0;
1412
- top: 0;
1391
+ .o-side__content--right, .o-side__content--left {
1392
+ transition: width;
1413
1393
  }
1414
- .o-side__content--absolute {
1415
- position: absolute;
1416
- left: 0;
1417
- top: 0;
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--mini-expand:hover {
1424
- transition: width;
1401
+ .o-side__content--left {
1402
+ left: 0;
1403
+ right: auto;
1425
1404
  }
1426
- .o-side__content--static {
1427
- position: static;
1405
+ .o-side__content--top {
1406
+ top: 0;
1407
+ bottom: auto;
1428
1408
  }
1429
- .o-side__content--absolute, .o-side__content--static {
1430
- transition: width 150ms ease-out;
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,11 +1420,6 @@ 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 {
1446
1425
  bottom: 0;
@@ -1449,7 +1428,19 @@ body {
1449
1428
  top: 0;
1450
1429
  position: fixed;
1451
1430
  background: var(--oruga-sidebar-overlay, hsla(0, 0%, 4%, 0.86));
1452
- z-index: var(--oruga-sidebar-zindex, 38);
1431
+ z-index: var(--oruga-sidebar-zindex, 100);
1432
+ }
1433
+ .o-side--active {
1434
+ display: block;
1435
+ }
1436
+ .o-side--inline {
1437
+ position: relative;
1438
+ }
1439
+ .o-side--inline .o-side__overlay {
1440
+ position: absolute;
1441
+ }
1442
+ .o-side--inline .o-side__content {
1443
+ position: relative;
1453
1444
  }
1454
1445
 
1455
1446
  /* @docs */
@@ -1864,6 +1855,11 @@ body {
1864
1855
  justify-content: space-between;
1865
1856
  display: flex;
1866
1857
  }
1858
+ .o-table__pagination > div {
1859
+ flex-basis: auto;
1860
+ flex-grow: 0;
1861
+ flex-shrink: 0;
1862
+ }
1867
1863
  .o-table__pagination > div:first-child {
1868
1864
  align-items: center;
1869
1865
  justify-content: flex-start;
@@ -1880,11 +1876,6 @@ body {
1880
1876
  flex-shrink: 0;
1881
1877
  justify-content: center;
1882
1878
  }
1883
- .o-table__pagination > div {
1884
- flex-basis: auto;
1885
- flex-grow: 0;
1886
- flex-shrink: 0;
1887
- }
1888
1879
 
1889
1880
  /* @docs */
1890
1881
  /* @docs */
@@ -2037,6 +2028,58 @@ body {
2037
2028
  .o-tabs__content--transitioning {
2038
2029
  overflow: hidden;
2039
2030
  }
2031
+ /* @docs */
2032
+ /* @docs */
2033
+ .o-taginput {
2034
+ display: block;
2035
+ }
2036
+ .o-taginput__container {
2037
+ display: flex;
2038
+ align-items: center;
2039
+ justify-content: flex-start;
2040
+ position: relative;
2041
+ vertical-align: top;
2042
+ flex-wrap: wrap;
2043
+ border-color: var(--oruga-taginput-border-color, #dbdbdb);
2044
+ border-style: var(--oruga-taginput-border-style, solid);
2045
+ border-width: var(--oruga-taginput-border-width, 1px);
2046
+ color: var(--oruga-taginput-color, #363636);
2047
+ }
2048
+ .o-taginput__autocomplete {
2049
+ position: static;
2050
+ flex: 1;
2051
+ }
2052
+ .o-taginput__input {
2053
+ border: none;
2054
+ box-shadow: none;
2055
+ }
2056
+ .o-taginput__input:focus {
2057
+ box-shadow: none;
2058
+ }
2059
+ .o-taginput__item {
2060
+ display: inline-flex;
2061
+ justify-content: center;
2062
+ align-items: center;
2063
+ position: relative;
2064
+ margin-left: -0.1875em;
2065
+ margin-right: -0.1875em;
2066
+ background-color: var(--oruga-taginput-item-background-color, #445e00);
2067
+ color: var(--oruga-taginput-item-color, #ffffff);
2068
+ }
2069
+ .o-taginput__item > * {
2070
+ margin-left: 0.1875em;
2071
+ margin-right: 0.1875em;
2072
+ }
2073
+ .o-taginput__counter {
2074
+ display: block;
2075
+ float: right;
2076
+ }
2077
+ .o-taginput--expanded {
2078
+ width: 100%;
2079
+ flex-grow: 1;
2080
+ flex-shrink: 1;
2081
+ }
2082
+
2040
2083
  /* @docs */
2041
2084
  /* @docs */
2042
2085
  .o-tpck__dropdown {
@@ -2068,6 +2111,28 @@ body {
2068
2111
  position: relative;
2069
2112
  display: inline-flex;
2070
2113
  }
2114
+ .o-tip__arrow {
2115
+ position: absolute;
2116
+ content: "";
2117
+ pointer-events: none;
2118
+ z-index: var(--oruga-tooltip-content-zindex, 38);
2119
+ color: var(--oruga-tooltip-background-color, #445e00);
2120
+ }
2121
+ .o-tip__arrow--bottom {
2122
+ top: auto;
2123
+ right: auto;
2124
+ bottom: 100%;
2125
+ left: 50%;
2126
+ transform: translateX(-50%);
2127
+ border-bottom-style: solid;
2128
+ border-right-style: solid;
2129
+ border-right-color: transparent;
2130
+ border-left-style: solid;
2131
+ border-left-color: transparent;
2132
+ border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
2133
+ border-right-width: var(--oruga-tooltip-arrow-size, 5px);
2134
+ border-left-width: var(--oruga-tooltip-arrow-size, 5px);
2135
+ }
2071
2136
  .o-tip__arrow--top {
2072
2137
  top: 100%;
2073
2138
  right: auto;
@@ -2075,20 +2140,28 @@ body {
2075
2140
  left: 50%;
2076
2141
  transform: translateX(-50%);
2077
2142
  border-top-style: solid;
2078
- border-top-width: var(--oruga-tooltip-arrow-size, 5px);
2079
2143
  border-right-style: solid;
2080
2144
  border-right-color: transparent;
2081
2145
  border-left-style: solid;
2082
2146
  border-left-color: transparent;
2147
+ border-top-width: var(--oruga-tooltip-arrow-size, 5px);
2083
2148
  border-right-width: var(--oruga-tooltip-arrow-size, 5px);
2084
2149
  border-left-width: var(--oruga-tooltip-arrow-size, 5px);
2085
2150
  }
2086
- .o-tip__content--top {
2087
- top: auto;
2151
+ .o-tip__arrow--left {
2152
+ top: 50%;
2088
2153
  right: auto;
2089
- bottom: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
2090
- left: 50%;
2091
- transform: translateX(-50%);
2154
+ bottom: auto;
2155
+ left: 100%;
2156
+ transform: translateY(-50%);
2157
+ border-left-style: solid;
2158
+ border-top-style: solid;
2159
+ border-top-color: transparent;
2160
+ border-bottom-style: solid;
2161
+ border-bottom-color: transparent;
2162
+ border-left-width: var(--oruga-tooltip-arrow-size, 5px);
2163
+ border-top-width: var(--oruga-tooltip-arrow-size, 5px);
2164
+ border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
2092
2165
  }
2093
2166
  .o-tip__arrow--right {
2094
2167
  top: 50%;
@@ -2097,35 +2170,86 @@ body {
2097
2170
  left: auto;
2098
2171
  transform: translateY(-50%);
2099
2172
  border-right-style: solid;
2100
- border-right-width: var(--oruga-tooltip-arrow-size, 5px);
2101
2173
  border-top-style: solid;
2102
2174
  border-top-color: transparent;
2103
2175
  border-bottom-style: solid;
2104
2176
  border-bottom-color: transparent;
2177
+ border-right-width: var(--oruga-tooltip-arrow-size, 5px);
2105
2178
  border-top-width: var(--oruga-tooltip-arrow-size, 5px);
2106
2179
  border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
2107
2180
  }
2108
- .o-tip__content--right {
2109
- top: 50%;
2181
+ .o-tip__arrow--top-right {
2182
+ top: 100%;
2110
2183
  right: auto;
2111
2184
  bottom: auto;
2112
- left: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
2113
- transform: translateY(-50%);
2185
+ left: 50%;
2186
+ transform: translateX(-50%);
2187
+ border-top-style: solid;
2188
+ border-right-style: solid;
2189
+ border-right-color: transparent;
2190
+ border-left-style: solid;
2191
+ border-left-color: transparent;
2192
+ border-top-width: var(--oruga-tooltip-arrow-size, 5px);
2193
+ border-right-width: calc(var(--oruga-tooltip-arrow-size, 5px) *2);
2194
+ border-left-width: 0;
2114
2195
  }
2115
- .o-tip__arrow--bottom {
2196
+ .o-tip__arrow--top-left {
2197
+ top: 100%;
2198
+ right: auto;
2199
+ bottom: auto;
2200
+ left: 50%;
2201
+ transform: translateX(-50%);
2202
+ border-top-style: solid;
2203
+ border-right-style: solid;
2204
+ border-right-color: transparent;
2205
+ border-left-style: solid;
2206
+ border-left-color: transparent;
2207
+ border-top-width: var(--oruga-tooltip-arrow-size, 5px);
2208
+ border-left-width: calc(var(--oruga-tooltip-arrow-size, 5px) *2);
2209
+ border-right-width: 0;
2210
+ }
2211
+ .o-tip__arrow--bottom-left {
2116
2212
  top: auto;
2117
2213
  right: auto;
2118
2214
  bottom: 100%;
2119
2215
  left: 50%;
2120
2216
  transform: translateX(-50%);
2121
2217
  border-bottom-style: solid;
2218
+ border-right-style: solid;
2219
+ border-right-color: transparent;
2220
+ border-left-style: solid;
2221
+ border-left-color: transparent;
2122
2222
  border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
2223
+ border-left-width: calc(var(--oruga-tooltip-arrow-size, 5px) *2);
2224
+ border-right-width: 0;
2225
+ }
2226
+ .o-tip__arrow--bottom-right {
2227
+ top: auto;
2228
+ right: auto;
2229
+ bottom: 100%;
2230
+ left: 50%;
2231
+ transform: translateX(-50%);
2232
+ border-bottom-style: solid;
2123
2233
  border-right-style: solid;
2124
2234
  border-right-color: transparent;
2125
2235
  border-left-style: solid;
2126
2236
  border-left-color: transparent;
2127
- border-right-width: var(--oruga-tooltip-arrow-size, 5px);
2128
- border-left-width: var(--oruga-tooltip-arrow-size, 5px);
2237
+ border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
2238
+ border-right-width: calc(var(--oruga-tooltip-arrow-size, 5px) *2);
2239
+ border-left-width: 0;
2240
+ }
2241
+ .o-tip__content {
2242
+ position: absolute;
2243
+ white-space: nowrap;
2244
+ z-index: var(--oruga-tooltip-content-zindex, 38);
2245
+ background-color: var(--oruga-tooltip-background-color, #445e00);
2246
+ }
2247
+ .o-tip__content--top {
2248
+ top: auto;
2249
+ right: auto;
2250
+ bottom: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
2251
+ left: 50%;
2252
+ transform: translateX(-50%);
2129
2253
  }
2130
2254
  .o-tip__content--bottom {
2131
2255
  top: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
@@ -2134,20 +2258,12 @@ body {
2134
2258
  left: 50%;
2135
2259
  transform: translateX(-50%);
2136
2260
  }
2137
- .o-tip__arrow--left {
2261
+ .o-tip__content--right {
2138
2262
  top: 50%;
2139
2263
  right: auto;
2140
2264
  bottom: auto;
2141
- left: 100%;
2265
+ left: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
2142
2266
  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
2267
  }
2152
2268
  .o-tip__content--left {
2153
2269
  top: 50%;
@@ -2156,18 +2272,29 @@ body {
2156
2272
  left: auto;
2157
2273
  transform: translateY(-50%);
2158
2274
  }
2159
- .o-tip__arrow {
2160
- position: absolute;
2161
- content: "";
2162
- pointer-events: none;
2163
- z-index: var(--oruga-tooltip-content-zindex, 38);
2164
- color: var(--oruga-tooltip-background-color, #445e00);
2275
+ .o-tip__content--top-right {
2276
+ left: auto;
2277
+ top: auto;
2278
+ bottom: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
2279
+ transform: translateX(50%);
2165
2280
  }
2166
- .o-tip__content {
2167
- position: absolute;
2168
- white-space: nowrap;
2169
- z-index: var(--oruga-tooltip-content-zindex, 38);
2170
- background-color: var(--oruga-tooltip-background-color, #445e00);
2281
+ .o-tip__content--top-left {
2282
+ right: auto;
2283
+ top: auto;
2284
+ bottom: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
2285
+ transform: translateX(-50%);
2286
+ }
2287
+ .o-tip__content--bottom-right {
2288
+ left: auto;
2289
+ bottom: auto;
2290
+ top: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
2291
+ transform: translateX(50%);
2292
+ }
2293
+ .o-tip__content--bottom-left {
2294
+ left: auto;
2295
+ bottom: auto;
2296
+ top: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
2297
+ transform: translateX(-50%);
2171
2298
  }
2172
2299
  .o-tip__content--always {
2173
2300
  opacity: 1;
@@ -2177,6 +2304,18 @@ body {
2177
2304
  text-align: center;
2178
2305
  white-space: normal;
2179
2306
  }
2307
+ .o-tip--teleport .o-tip__content--top, .o-tip--teleport .o-tip__content--top-left, .o-tip--teleport .o-tip__content--top-right {
2308
+ margin-top: calc(-1 * (var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)));
2309
+ }
2310
+ .o-tip--teleport .o-tip__content--bottom, .o-tip--teleport .o-tip__content--bottom-left, .o-tip--teleport .o-tip__content--bottom-right {
2311
+ margin-top: calc(var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px));
2312
+ }
2313
+ .o-tip--teleport .o-tip__content--right {
2314
+ margin-left: calc(var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px));
2315
+ }
2316
+ .o-tip--teleport .o-tip__content--left {
2317
+ margin-left: calc(-1 * (var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)));
2318
+ }
2180
2319
  .o-tip__trigger {
2181
2320
  width: 100%;
2182
2321
  }