@policystudio/policy-studio-ui-vue 1.0.68 → 1.0.69

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.
@@ -13645,6 +13645,10 @@ video {
13645
13645
  z-index: 10;
13646
13646
  }
13647
13647
 
13648
+ .psui-z-15{
13649
+ z-index: 15;
13650
+ }
13651
+
13648
13652
  .psui-z-20{
13649
13653
  z-index: 20;
13650
13654
  }
@@ -16695,6 +16699,43 @@ html {
16695
16699
  -webkit-font-smoothing: antialiased;
16696
16700
  }
16697
16701
 
16702
+ .psui-card {
16703
+ width: 100%;
16704
+ background-color: #ffffff ;
16705
+ border-radius: 0.5rem;
16706
+ padding-left: 1.5rem;
16707
+ padding-right: 1.5rem;
16708
+ padding-top: 1rem;
16709
+ padding-bottom: 1rem;
16710
+ box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.03), 0px 1px 2px rgba(0, 0, 0, 0.1);
16711
+ }
16712
+
16713
+ .psui-card-header {
16714
+ display: flex;
16715
+ align-items: center;
16716
+ justify-content: space-between;
16717
+ margin-bottom: 1rem;
16718
+ }
16719
+
16720
+ .psui-card-header h4 {
16721
+ font-size: 17px;
16722
+ line-height: 120%;
16723
+ font-weight: 700;
16724
+ --text-opacity: 1;
16725
+ color: #28323B;
16726
+ color: rgba(40, 50, 59, var(--text-opacity));
16727
+ }
16728
+
16729
+ .psui-show-childrens-on-hover:hover * {
16730
+ opacity: 1 !important;
16731
+ }
16732
+
16733
+ .psui-transition {
16734
+ transition-property: all;
16735
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
16736
+ transition-duration: 150ms;
16737
+ }
16738
+
16698
16739
  .psui-el-badge-with-icon {
16699
16740
  display: flex;
16700
16741
  align-items: center;
@@ -17886,14 +17927,23 @@ html {
17886
17927
  width: 100%;
17887
17928
  }
17888
17929
 
17889
- .psui-el-simple-progress-bar {
17930
+ .psui-el-progress-bar {
17890
17931
  position: relative;
17891
17932
  height: 0.5rem;
17933
+ border-radius: 9999px;
17934
+ --bg-opacity: 1;
17935
+ background-color: #FCEBEB;
17936
+ background-color: rgba(252, 235, 235, var(--bg-opacity));
17892
17937
  width: 100px;
17893
- border-radius: 15px;
17894
17938
  }
17895
17939
 
17896
- .psui-el-simple-progress-bar-percentage {
17940
+ .psui-el-progress-bar.is-breakeven {
17941
+ --bg-opacity: 1;
17942
+ background-color: #E0EFF6;
17943
+ background-color: rgba(224, 239, 246, var(--bg-opacity));
17944
+ }
17945
+
17946
+ .psui-el-progress-bar-percentage {
17897
17947
  position: absolute;
17898
17948
  display: block;
17899
17949
  height: 100%;
@@ -17905,6 +17955,23 @@ html {
17905
17955
  animation: animate-stripes 3s linear infinite;
17906
17956
  }
17907
17957
 
17958
+ .psui-el-progress-bar-divider {
17959
+ position: absolute;
17960
+ border-radius: 9999px;
17961
+ z-index: auto;
17962
+ --bg-opacity: 1;
17963
+ background-color: #D6DDE5;
17964
+ background-color: rgba(214, 221, 229, var(--bg-opacity));
17965
+ width: 2px; height: 14px;
17966
+ top: -3px;
17967
+ }
17968
+
17969
+ .psui-el-progress-bar-value {
17970
+ height: 0.5rem;
17971
+ border-top-left-radius: 9999px;
17972
+ border-bottom-left-radius: 9999px;
17973
+ }
17974
+
17908
17975
  @-webkit-keyframes animate-stripes {
17909
17976
  0% {
17910
17977
  background-position: 0 0;
@@ -18460,6 +18527,139 @@ html {
18460
18527
  font-size: 24px;
18461
18528
  }
18462
18529
 
18530
+ .psui-el-table-results {
18531
+ position: relative;
18532
+ vertical-align: top;
18533
+ width: 100%;
18534
+ max-width: 100%;
18535
+ font-size: 16px;
18536
+ line-height: 130%;
18537
+ }
18538
+
18539
+ .psui-el-table-results thead {
18540
+ background-color: #ffffff ;
18541
+ align-items: flex-start;
18542
+ box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04), 0px 2px 5px rgba(0, 0, 0, 0.08);
18543
+ position: sticky;
18544
+ top: 0;
18545
+ z-index: 15;
18546
+ }
18547
+
18548
+ .psui-el-table-results thead tr .title {
18549
+ font-size: 14px;
18550
+ line-height: 130%;
18551
+ font-weight: 700;
18552
+ line-height: 1rem;
18553
+ --text-opacity: 1;
18554
+ color: #28323B;
18555
+ color: rgba(40, 50, 59, var(--text-opacity));
18556
+ }
18557
+
18558
+ .psui-el-table-results thead tr th {
18559
+ padding-left: 2rem;
18560
+ --text-opacity: 1;
18561
+ color: #798490;
18562
+ color: rgba(121, 132, 144, var(--text-opacity));
18563
+ text-align: right;
18564
+ width: auto;
18565
+ vertical-align: top;
18566
+ padding-top: 13px;
18567
+ padding-bottom: 13px;
18568
+ }
18569
+
18570
+ .psui-el-table-results thead tr th .description {
18571
+ font-size: 12px;
18572
+ line-height: 130%;
18573
+ font-weight: 400;
18574
+ line-height: 110%;
18575
+ }
18576
+
18577
+ .psui-el-table-results thead tr th:first-child {
18578
+ padding-left: 0;
18579
+ padding-right: 2rem;
18580
+ text-align: left;
18581
+ display: block;
18582
+ background-color: #ffffff ;
18583
+ position: sticky;
18584
+ z-index: 10;
18585
+ left: 0;
18586
+ box-shadow: inset -1px 0px 0px #EBEEF0;
18587
+ min-width: 300px;
18588
+ }
18589
+
18590
+ .psui-el-table-results thead tr th:first-child > div {
18591
+ padding-left: 0;
18592
+ }
18593
+
18594
+ .psui-el-table-results thead tr:first-of-type th {
18595
+ text-align: left;
18596
+ padding-top: 0;
18597
+ padding-bottom: 0;
18598
+ }
18599
+
18600
+ .psui-el-table-results thead tr:first-of-type th > div {
18601
+ display: flex;
18602
+ flex-direction: row;
18603
+ border-bottom-width: 1px;
18604
+ --border-opacity: 1;
18605
+ border-color: #D6DDE5;
18606
+ border-color: rgba(214, 221, 229, var(--border-opacity));
18607
+ padding-top: 11px;
18608
+ padding-bottom: 11px;
18609
+ }
18610
+
18611
+ .psui-el-table-results thead tr:first-of-type p {
18612
+ font-size: 16px;
18613
+ line-height: 130%;
18614
+ line-height: 18px;
18615
+ }
18616
+
18617
+ .psui-el-table-results tbody tr {
18618
+ border-bottom-width: 1px;
18619
+ --border-opacity: 1;
18620
+ border-color: #E6ECF2;
18621
+ border-color: rgba(230, 236, 242, var(--border-opacity));
18622
+ }
18623
+
18624
+ .psui-el-table-results tbody tr td {
18625
+ padding-left: 2rem;
18626
+ --text-opacity: 1;
18627
+ color: #28323B;
18628
+ color: rgba(40, 50, 59, var(--text-opacity));
18629
+ height: 2.5rem;
18630
+ text-align: right;
18631
+ font-size: 14px;
18632
+ line-height: 130%;
18633
+ padding-top: 11px;
18634
+ padding-bottom: 11px;
18635
+ }
18636
+
18637
+ .psui-el-table-results tbody tr td > div {
18638
+ display: flex;
18639
+ align-items: center;
18640
+ }
18641
+
18642
+ .psui-el-table-results tbody tr td:not(:first-child) > div {
18643
+ justify-content: flex-end;
18644
+ }
18645
+
18646
+ .psui-el-table-results tbody tr td:first-child {
18647
+ padding-left: 0;
18648
+ padding-right: 2rem;
18649
+ text-align: left;
18650
+ display: block;
18651
+ background-color: #ffffff ;
18652
+ position: sticky;
18653
+ z-index: 10;
18654
+ left: 0;
18655
+ box-shadow: inset -1px 0px 0px #EBEEF0;
18656
+ padding-top: 8px;
18657
+ padding-bottom: 8px;
18658
+ }
18659
+
18660
+ .psui-el-table-results tfoot tr td {
18661
+ }
18662
+
18463
18663
  .psui-el-table {
18464
18664
  width: 100%;
18465
18665
  table-layout: fixed;
@@ -18678,345 +18878,6 @@ html {
18678
18878
  margin-bottom: 3.5px;
18679
18879
  }
18680
18880
 
18681
- .psui-el-chart-legend {
18682
- display: flex;
18683
- padding: 0.5rem;
18684
- border-radius: 0.25rem;
18685
- }
18686
-
18687
- .psui-el-chart-legend-dot {
18688
- --bg-opacity: 1;
18689
- background-color: #57C0BA;
18690
- background-color: rgba(87, 192, 186, var(--bg-opacity));
18691
- border-radius: 9999px;
18692
- width: 14px; height: 14px;
18693
- margin-right: 6px;
18694
- }
18695
-
18696
- .psui-el-chart-legend-text {
18697
- font-size: 12px;
18698
- line-height: 130%;
18699
- --text-opacity: 1;
18700
- color: #798490;
18701
- color: rgba(121, 132, 144, var(--text-opacity));
18702
- font-weight: 700;
18703
- }
18704
-
18705
- .psui-el-chart-legend-total {
18706
- font-size: 16px;
18707
- line-height: 130%;
18708
- --text-opacity: 1;
18709
- color: #28323B;
18710
- color: rgba(40, 50, 59, var(--text-opacity));
18711
- margin-top: 0.25rem;
18712
- }
18713
-
18714
- .psui-el-chart-legend-percentage {
18715
- --text-opacity: 1;
18716
- color: #798490;
18717
- color: rgba(121, 132, 144, var(--text-opacity));
18718
- }
18719
-
18720
- .psui-el-card-infos {
18721
- border-width: 1px;
18722
- --border-opacity: 1;
18723
- border-color: #E6ECF2;
18724
- border-color: rgba(230, 236, 242, var(--border-opacity));
18725
- border-radius: 0.375rem;
18726
- display: flex;
18727
- flex-direction: column;
18728
- align-items: center;
18729
- justify-content: center;
18730
- padding-left: 0.75rem;
18731
- padding-right: 0.75rem;
18732
- padding-top: 0.5rem;
18733
- padding-bottom: 0.5rem;
18734
- cursor: pointer;
18735
- }
18736
-
18737
- .psui-el-card-infos-title {
18738
- font-size: 12px;
18739
- line-height: 130%;
18740
- font-weight: 700;
18741
- --text-opacity: 1;
18742
- color: #A2ACB7;
18743
- color: rgba(162, 172, 183, var(--text-opacity));
18744
- margin-bottom: 0.25rem;
18745
- }
18746
-
18747
- .psui-el-card-infos-content {
18748
- width: 100%;
18749
- display: flex;
18750
- justify-content: flex-end;
18751
- align-items: center;
18752
- font-size: 16px;
18753
- line-height: 130%;
18754
- }
18755
-
18756
- .psui-el-card-infos-icon {
18757
- --text-opacity: 1;
18758
- color: #64B5CE;
18759
- color: rgba(100, 181, 206, var(--text-opacity));
18760
- margin-right: 0.25rem;
18761
- font-size: 17px;
18762
- }
18763
-
18764
- .psui-el-card-infos:hover .psui-el-card-infos-icon {
18765
- --text-opacity: 1;
18766
- color: #318FAC;
18767
- color: rgba(49, 143, 172, var(--text-opacity));
18768
- }
18769
-
18770
- .psui-el-button {
18771
- font-weight: 700;
18772
- align-items: center;
18773
- display: flex;
18774
- align-content: center;
18775
- border-radius: 0.375rem;
18776
- transition-property: all;
18777
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
18778
- transition-duration: 130ms;
18779
- }
18780
-
18781
- .psui-el-button span {
18782
- font-weight: 700;
18783
- flex-shrink: 0;
18784
- line-height: 130%;
18785
- font-family: inherit;
18786
- text-align: right;
18787
- }
18788
-
18789
- .psui-el-button:focus {
18790
- outline: none;
18791
- }
18792
-
18793
- .psui-el-button.icon-right {
18794
- flex-direction: row-reverse;
18795
- }
18796
-
18797
- .psui-el-button.size-big {
18798
- display: flex;
18799
- align-items: center;
18800
- align-content: center;
18801
- padding: 9.5px 16px;
18802
- }
18803
-
18804
- .psui-el-button.size-big.icon-left {
18805
- padding: 8px 16px;
18806
- }
18807
-
18808
- .psui-el-button.size-big.icon-left i {
18809
- font-size: 24px;
18810
- margin-right: 8px;
18811
- }
18812
-
18813
- .psui-el-button.size-big.icon-right {
18814
- padding: 8px 16px;
18815
- }
18816
-
18817
- .psui-el-button.size-big.icon-right i {
18818
- font-size: 24px;
18819
- margin-left: 8px;
18820
- }
18821
-
18822
- .psui-el-button.size-medium {
18823
- display: flex;
18824
- align-items: center;
18825
- align-content: center;
18826
- padding: 7px 13px;
18827
- font-size: 14px;
18828
- }
18829
-
18830
- .psui-el-button.size-medium.icon-left i {
18831
- font-size: 18px;
18832
- margin-right: 4px;
18833
- }
18834
-
18835
- .psui-el-button.size-medium.icon-right i {
18836
- font-size: 18px;
18837
- margin-left: 4px;
18838
- }
18839
-
18840
- .psui-el-button.size-small {
18841
- display: flex;
18842
- align-items: center;
18843
- justify-content: center;
18844
- border-radius: 0.25rem;
18845
- padding-top: 0.25rem;
18846
- padding-bottom: 0.25rem;
18847
- padding-left: 0.5rem;
18848
- padding-right: 0.5rem;
18849
- font-size: 14px;
18850
- }
18851
-
18852
- .psui-el-button.size-small.layout-onlytext:active:not(.disabled) {
18853
- --bg-opacity: 1;
18854
- background-color: #E0EFF6;
18855
- background-color: rgba(224, 239, 246, var(--bg-opacity));
18856
- --text-opacity: 1;
18857
- color: #318FAC;
18858
- color: rgba(49, 143, 172, var(--text-opacity));
18859
- box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05);
18860
- }
18861
-
18862
- .psui-el-button.size-small.hover.layout-onlytext {
18863
- --text-opacity: 1 !important;
18864
- color: #318FAC !important;
18865
- color: rgba(49, 143, 172, var(--text-opacity)) !important;
18866
- --bg-opacity: 1 !important;
18867
- background-color: #E0EFF6 !important;
18868
- background-color: rgba(224, 239, 246, var(--bg-opacity)) !important;
18869
- }
18870
-
18871
- .psui-el-button.size-small.icon-left i {
18872
- font-size: 18px;
18873
- margin-right: 4px;
18874
- }
18875
-
18876
- .psui-el-button.size-small.icon-right i {
18877
- font-size: 18px;
18878
- margin-left: 4px;
18879
- }
18880
-
18881
- .psui-el-button.layout-solid {
18882
- --bg-opacity: 1;
18883
- background-color: #318FAC;
18884
- background-color: rgba(49, 143, 172, var(--bg-opacity));
18885
- color: #ffffff ;
18886
- }
18887
-
18888
- .psui-el-button.layout-solid.hover {
18889
- --bg-opacity: 1;
18890
- background-color: #64B5CE;
18891
- background-color: rgba(100, 181, 206, var(--bg-opacity));
18892
- color: #ffffff ;
18893
- }
18894
-
18895
- .psui-el-button.layout-solid:active:not(.disabled) {
18896
- --bg-opacity: 1;
18897
- background-color: #64B5CE;
18898
- background-color: rgba(100, 181, 206, var(--bg-opacity));
18899
- color: #ffffff ;
18900
- box-shadow: inset 0px 1px 2px rgba(0,0,0,0.15);
18901
- }
18902
-
18903
- .psui-el-button.layout-solid.disabled {
18904
- --text-opacity: 1;
18905
- color: #A2ACB7;
18906
- color: rgba(162, 172, 183, var(--text-opacity));
18907
- --bg-opacity: 1;
18908
- background-color: #E6ECF2;
18909
- background-color: rgba(230, 236, 242, var(--bg-opacity));
18910
- cursor: default
18911
- }
18912
-
18913
- .psui-el-button.layout-outline {
18914
- --text-opacity: 1;
18915
- color: #318FAC;
18916
- color: rgba(49, 143, 172, var(--text-opacity));
18917
- border-width: 1px;
18918
- --border-opacity: 1;
18919
- border-color: #64B5CE;
18920
- border-color: rgba(100, 181, 206, var(--border-opacity));
18921
- background: transparent;
18922
- }
18923
-
18924
- .psui-el-button.layout-outline.hover,
18925
- .psui-el-button.layout-outline:active {
18926
- border-width: 1px;
18927
- --border-opacity: 1;
18928
- border-color: #318FAC;
18929
- border-color: rgba(49, 143, 172, var(--border-opacity))
18930
- }
18931
-
18932
- .psui-el-button.layout-outline.disabled {
18933
- --text-opacity: 1;
18934
- color: #A2ACB7;
18935
- color: rgba(162, 172, 183, var(--text-opacity));
18936
- --border-opacity: 1;
18937
- border-color: #D6DDE5;
18938
- border-color: rgba(214, 221, 229, var(--border-opacity));
18939
- cursor: default;
18940
- }
18941
-
18942
- .psui-el-button.layout-ghost {
18943
- --bg-opacity: 1;
18944
- background-color: #E0EFF6;
18945
- background-color: rgba(224, 239, 246, var(--bg-opacity));
18946
- --text-opacity: 1;
18947
- color: #318FAC;
18948
- color: rgba(49, 143, 172, var(--text-opacity));
18949
- }
18950
-
18951
- .psui-el-button.layout-ghost.hover {
18952
- --bg-opacity: 1;
18953
- background-color: #ECF7FB;
18954
- background-color: rgba(236, 247, 251, var(--bg-opacity))
18955
- }
18956
-
18957
- .psui-el-button.layout-ghost:active:not(.disabled) {
18958
- box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05)
18959
- }
18960
-
18961
- .psui-el-button.layout-ghost.disabled {
18962
- --text-opacity: 1;
18963
- color: #A2ACB7;
18964
- color: rgba(162, 172, 183, var(--text-opacity));
18965
- --bg-opacity: 1;
18966
- background-color: #E6ECF2;
18967
- background-color: rgba(230, 236, 242, var(--bg-opacity));
18968
- cursor: default
18969
- }
18970
-
18971
- .psui-el-button.layout-onlytext {
18972
- background-color: #ffffff ;
18973
- --text-opacity: 1;
18974
- color: #318FAC;
18975
- color: rgba(49, 143, 172, var(--text-opacity));
18976
- }
18977
-
18978
- .psui-el-button.layout-onlytext.disabled {
18979
- --text-opacity: 1;
18980
- color: #A2ACB7;
18981
- color: rgba(162, 172, 183, var(--text-opacity));
18982
- cursor: default
18983
- }
18984
-
18985
- .psui-el-button.layout-onlytext.hover {
18986
- --text-opacity: 1;
18987
- color: #64B5CE;
18988
- color: rgba(100, 181, 206, var(--text-opacity))
18989
- }
18990
-
18991
- .psui-el-button.layout-caution {
18992
- --bg-opacity: 1;
18993
- background-color: #FCEBEB;
18994
- background-color: rgba(252, 235, 235, var(--bg-opacity));
18995
- --text-opacity: 1;
18996
- color: #D65C5A;
18997
- color: rgba(214, 92, 90, var(--text-opacity));
18998
- }
18999
-
19000
- .psui-el-button.layout-caution.hover,
19001
- .psui-el-button.layout-caution:active:not(.disabled) {
19002
- --bg-opacity: 1;
19003
- background-color: #FCEBEB;
19004
- background-color: rgba(252, 235, 235, var(--bg-opacity));
19005
- --text-opacity: 1;
19006
- color: #AA3937;
19007
- color: rgba(170, 57, 55, var(--text-opacity));
19008
- }
19009
-
19010
- .psui-el-button.layout-caution.disabled {
19011
- --text-opacity: 1;
19012
- color: #A2ACB7;
19013
- color: rgba(162, 172, 183, var(--text-opacity));
19014
- --bg-opacity: 1;
19015
- background-color: #E6ECF2;
19016
- background-color: rgba(230, 236, 242, var(--bg-opacity));
19017
- cursor: default
19018
- }
19019
-
19020
18881
  .psui-el-chips {
19021
18882
  display: inline-flex;
19022
18883
  position: relative;
@@ -19764,6 +19625,345 @@ html {
19764
19625
  color: rgba(81, 94, 106, var(--text-opacity))
19765
19626
  }
19766
19627
 
19628
+ .psui-el-button {
19629
+ font-weight: 700;
19630
+ align-items: center;
19631
+ display: flex;
19632
+ align-content: center;
19633
+ border-radius: 0.375rem;
19634
+ transition-property: all;
19635
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19636
+ transition-duration: 130ms;
19637
+ }
19638
+
19639
+ .psui-el-button span {
19640
+ font-weight: 700;
19641
+ flex-shrink: 0;
19642
+ line-height: 130%;
19643
+ font-family: inherit;
19644
+ text-align: right;
19645
+ }
19646
+
19647
+ .psui-el-button:focus {
19648
+ outline: none;
19649
+ }
19650
+
19651
+ .psui-el-button.icon-right {
19652
+ flex-direction: row-reverse;
19653
+ }
19654
+
19655
+ .psui-el-button.size-big {
19656
+ display: flex;
19657
+ align-items: center;
19658
+ align-content: center;
19659
+ padding: 9.5px 16px;
19660
+ }
19661
+
19662
+ .psui-el-button.size-big.icon-left {
19663
+ padding: 8px 16px;
19664
+ }
19665
+
19666
+ .psui-el-button.size-big.icon-left i {
19667
+ font-size: 24px;
19668
+ margin-right: 8px;
19669
+ }
19670
+
19671
+ .psui-el-button.size-big.icon-right {
19672
+ padding: 8px 16px;
19673
+ }
19674
+
19675
+ .psui-el-button.size-big.icon-right i {
19676
+ font-size: 24px;
19677
+ margin-left: 8px;
19678
+ }
19679
+
19680
+ .psui-el-button.size-medium {
19681
+ display: flex;
19682
+ align-items: center;
19683
+ align-content: center;
19684
+ padding: 7px 13px;
19685
+ font-size: 14px;
19686
+ }
19687
+
19688
+ .psui-el-button.size-medium.icon-left i {
19689
+ font-size: 18px;
19690
+ margin-right: 4px;
19691
+ }
19692
+
19693
+ .psui-el-button.size-medium.icon-right i {
19694
+ font-size: 18px;
19695
+ margin-left: 4px;
19696
+ }
19697
+
19698
+ .psui-el-button.size-small {
19699
+ display: flex;
19700
+ align-items: center;
19701
+ justify-content: center;
19702
+ border-radius: 0.25rem;
19703
+ padding-top: 0.25rem;
19704
+ padding-bottom: 0.25rem;
19705
+ padding-left: 0.5rem;
19706
+ padding-right: 0.5rem;
19707
+ font-size: 14px;
19708
+ }
19709
+
19710
+ .psui-el-button.size-small.layout-onlytext:active:not(.disabled) {
19711
+ --bg-opacity: 1;
19712
+ background-color: #E0EFF6;
19713
+ background-color: rgba(224, 239, 246, var(--bg-opacity));
19714
+ --text-opacity: 1;
19715
+ color: #318FAC;
19716
+ color: rgba(49, 143, 172, var(--text-opacity));
19717
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05);
19718
+ }
19719
+
19720
+ .psui-el-button.size-small.hover.layout-onlytext {
19721
+ --text-opacity: 1 !important;
19722
+ color: #318FAC !important;
19723
+ color: rgba(49, 143, 172, var(--text-opacity)) !important;
19724
+ --bg-opacity: 1 !important;
19725
+ background-color: #E0EFF6 !important;
19726
+ background-color: rgba(224, 239, 246, var(--bg-opacity)) !important;
19727
+ }
19728
+
19729
+ .psui-el-button.size-small.icon-left i {
19730
+ font-size: 18px;
19731
+ margin-right: 4px;
19732
+ }
19733
+
19734
+ .psui-el-button.size-small.icon-right i {
19735
+ font-size: 18px;
19736
+ margin-left: 4px;
19737
+ }
19738
+
19739
+ .psui-el-button.layout-solid {
19740
+ --bg-opacity: 1;
19741
+ background-color: #318FAC;
19742
+ background-color: rgba(49, 143, 172, var(--bg-opacity));
19743
+ color: #ffffff ;
19744
+ }
19745
+
19746
+ .psui-el-button.layout-solid.hover {
19747
+ --bg-opacity: 1;
19748
+ background-color: #64B5CE;
19749
+ background-color: rgba(100, 181, 206, var(--bg-opacity));
19750
+ color: #ffffff ;
19751
+ }
19752
+
19753
+ .psui-el-button.layout-solid:active:not(.disabled) {
19754
+ --bg-opacity: 1;
19755
+ background-color: #64B5CE;
19756
+ background-color: rgba(100, 181, 206, var(--bg-opacity));
19757
+ color: #ffffff ;
19758
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.15);
19759
+ }
19760
+
19761
+ .psui-el-button.layout-solid.disabled {
19762
+ --text-opacity: 1;
19763
+ color: #A2ACB7;
19764
+ color: rgba(162, 172, 183, var(--text-opacity));
19765
+ --bg-opacity: 1;
19766
+ background-color: #E6ECF2;
19767
+ background-color: rgba(230, 236, 242, var(--bg-opacity));
19768
+ cursor: default
19769
+ }
19770
+
19771
+ .psui-el-button.layout-outline {
19772
+ --text-opacity: 1;
19773
+ color: #318FAC;
19774
+ color: rgba(49, 143, 172, var(--text-opacity));
19775
+ border-width: 1px;
19776
+ --border-opacity: 1;
19777
+ border-color: #64B5CE;
19778
+ border-color: rgba(100, 181, 206, var(--border-opacity));
19779
+ background: transparent;
19780
+ }
19781
+
19782
+ .psui-el-button.layout-outline.hover,
19783
+ .psui-el-button.layout-outline:active {
19784
+ border-width: 1px;
19785
+ --border-opacity: 1;
19786
+ border-color: #318FAC;
19787
+ border-color: rgba(49, 143, 172, var(--border-opacity))
19788
+ }
19789
+
19790
+ .psui-el-button.layout-outline.disabled {
19791
+ --text-opacity: 1;
19792
+ color: #A2ACB7;
19793
+ color: rgba(162, 172, 183, var(--text-opacity));
19794
+ --border-opacity: 1;
19795
+ border-color: #D6DDE5;
19796
+ border-color: rgba(214, 221, 229, var(--border-opacity));
19797
+ cursor: default;
19798
+ }
19799
+
19800
+ .psui-el-button.layout-ghost {
19801
+ --bg-opacity: 1;
19802
+ background-color: #E0EFF6;
19803
+ background-color: rgba(224, 239, 246, var(--bg-opacity));
19804
+ --text-opacity: 1;
19805
+ color: #318FAC;
19806
+ color: rgba(49, 143, 172, var(--text-opacity));
19807
+ }
19808
+
19809
+ .psui-el-button.layout-ghost.hover {
19810
+ --bg-opacity: 1;
19811
+ background-color: #ECF7FB;
19812
+ background-color: rgba(236, 247, 251, var(--bg-opacity))
19813
+ }
19814
+
19815
+ .psui-el-button.layout-ghost:active:not(.disabled) {
19816
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05)
19817
+ }
19818
+
19819
+ .psui-el-button.layout-ghost.disabled {
19820
+ --text-opacity: 1;
19821
+ color: #A2ACB7;
19822
+ color: rgba(162, 172, 183, var(--text-opacity));
19823
+ --bg-opacity: 1;
19824
+ background-color: #E6ECF2;
19825
+ background-color: rgba(230, 236, 242, var(--bg-opacity));
19826
+ cursor: default
19827
+ }
19828
+
19829
+ .psui-el-button.layout-onlytext {
19830
+ background-color: #ffffff ;
19831
+ --text-opacity: 1;
19832
+ color: #318FAC;
19833
+ color: rgba(49, 143, 172, var(--text-opacity));
19834
+ }
19835
+
19836
+ .psui-el-button.layout-onlytext.disabled {
19837
+ --text-opacity: 1;
19838
+ color: #A2ACB7;
19839
+ color: rgba(162, 172, 183, var(--text-opacity));
19840
+ cursor: default
19841
+ }
19842
+
19843
+ .psui-el-button.layout-onlytext.hover {
19844
+ --text-opacity: 1;
19845
+ color: #64B5CE;
19846
+ color: rgba(100, 181, 206, var(--text-opacity))
19847
+ }
19848
+
19849
+ .psui-el-button.layout-caution {
19850
+ --bg-opacity: 1;
19851
+ background-color: #FCEBEB;
19852
+ background-color: rgba(252, 235, 235, var(--bg-opacity));
19853
+ --text-opacity: 1;
19854
+ color: #D65C5A;
19855
+ color: rgba(214, 92, 90, var(--text-opacity));
19856
+ }
19857
+
19858
+ .psui-el-button.layout-caution.hover,
19859
+ .psui-el-button.layout-caution:active:not(.disabled) {
19860
+ --bg-opacity: 1;
19861
+ background-color: #FCEBEB;
19862
+ background-color: rgba(252, 235, 235, var(--bg-opacity));
19863
+ --text-opacity: 1;
19864
+ color: #AA3937;
19865
+ color: rgba(170, 57, 55, var(--text-opacity));
19866
+ }
19867
+
19868
+ .psui-el-button.layout-caution.disabled {
19869
+ --text-opacity: 1;
19870
+ color: #A2ACB7;
19871
+ color: rgba(162, 172, 183, var(--text-opacity));
19872
+ --bg-opacity: 1;
19873
+ background-color: #E6ECF2;
19874
+ background-color: rgba(230, 236, 242, var(--bg-opacity));
19875
+ cursor: default
19876
+ }
19877
+
19878
+ .psui-el-card-infos {
19879
+ border-width: 1px;
19880
+ --border-opacity: 1;
19881
+ border-color: #E6ECF2;
19882
+ border-color: rgba(230, 236, 242, var(--border-opacity));
19883
+ border-radius: 0.375rem;
19884
+ display: flex;
19885
+ flex-direction: column;
19886
+ align-items: center;
19887
+ justify-content: center;
19888
+ padding-left: 0.75rem;
19889
+ padding-right: 0.75rem;
19890
+ padding-top: 0.5rem;
19891
+ padding-bottom: 0.5rem;
19892
+ cursor: pointer;
19893
+ }
19894
+
19895
+ .psui-el-card-infos-title {
19896
+ font-size: 12px;
19897
+ line-height: 130%;
19898
+ font-weight: 700;
19899
+ --text-opacity: 1;
19900
+ color: #A2ACB7;
19901
+ color: rgba(162, 172, 183, var(--text-opacity));
19902
+ margin-bottom: 0.25rem;
19903
+ }
19904
+
19905
+ .psui-el-card-infos-content {
19906
+ width: 100%;
19907
+ display: flex;
19908
+ justify-content: flex-end;
19909
+ align-items: center;
19910
+ font-size: 16px;
19911
+ line-height: 130%;
19912
+ }
19913
+
19914
+ .psui-el-card-infos-icon {
19915
+ --text-opacity: 1;
19916
+ color: #64B5CE;
19917
+ color: rgba(100, 181, 206, var(--text-opacity));
19918
+ margin-right: 0.25rem;
19919
+ font-size: 17px;
19920
+ }
19921
+
19922
+ .psui-el-card-infos:hover .psui-el-card-infos-icon {
19923
+ --text-opacity: 1;
19924
+ color: #318FAC;
19925
+ color: rgba(49, 143, 172, var(--text-opacity));
19926
+ }
19927
+
19928
+ .psui-el-chart-legend {
19929
+ display: flex;
19930
+ padding: 0.5rem;
19931
+ border-radius: 0.25rem;
19932
+ }
19933
+
19934
+ .psui-el-chart-legend-dot {
19935
+ --bg-opacity: 1;
19936
+ background-color: #57C0BA;
19937
+ background-color: rgba(87, 192, 186, var(--bg-opacity));
19938
+ border-radius: 9999px;
19939
+ width: 14px; height: 14px;
19940
+ margin-right: 6px;
19941
+ }
19942
+
19943
+ .psui-el-chart-legend-text {
19944
+ font-size: 12px;
19945
+ line-height: 130%;
19946
+ --text-opacity: 1;
19947
+ color: #798490;
19948
+ color: rgba(121, 132, 144, var(--text-opacity));
19949
+ font-weight: 700;
19950
+ }
19951
+
19952
+ .psui-el-chart-legend-total {
19953
+ font-size: 16px;
19954
+ line-height: 130%;
19955
+ --text-opacity: 1;
19956
+ color: #28323B;
19957
+ color: rgba(40, 50, 59, var(--text-opacity));
19958
+ margin-top: 0.25rem;
19959
+ }
19960
+
19961
+ .psui-el-chart-legend-percentage {
19962
+ --text-opacity: 1;
19963
+ color: #798490;
19964
+ color: rgba(121, 132, 144, var(--text-opacity));
19965
+ }
19966
+
19767
19967
  @media (min-width: 640px){
19768
19968
  .sm\:psui-container{
19769
19969
  width: 100%;
@@ -30746,6 +30946,10 @@ html {
30746
30946
  z-index: 10;
30747
30947
  }
30748
30948
 
30949
+ .sm\:psui-z-15{
30950
+ z-index: 15;
30951
+ }
30952
+
30749
30953
  .sm\:psui-z-20{
30750
30954
  z-index: 20;
30751
30955
  }
@@ -44684,6 +44888,10 @@ html {
44684
44888
  z-index: 10;
44685
44889
  }
44686
44890
 
44891
+ .md\:psui-z-15{
44892
+ z-index: 15;
44893
+ }
44894
+
44687
44895
  .md\:psui-z-20{
44688
44896
  z-index: 20;
44689
44897
  }
@@ -58622,6 +58830,10 @@ html {
58622
58830
  z-index: 10;
58623
58831
  }
58624
58832
 
58833
+ .lg\:psui-z-15{
58834
+ z-index: 15;
58835
+ }
58836
+
58625
58837
  .lg\:psui-z-20{
58626
58838
  z-index: 20;
58627
58839
  }
@@ -72560,6 +72772,10 @@ html {
72560
72772
  z-index: 10;
72561
72773
  }
72562
72774
 
72775
+ .xl\:psui-z-15{
72776
+ z-index: 15;
72777
+ }
72778
+
72563
72779
  .xl\:psui-z-20{
72564
72780
  z-index: 20;
72565
72781
  }
@@ -75514,4 +75730,4 @@ html {
75514
75730
  -webkit-animation: bounce 1s infinite;
75515
75731
  animation: bounce 1s infinite;
75516
75732
  }
75517
- }
75733
+ }