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

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,145 @@ 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
+ background-color: #ffffff ;
18582
+ position: sticky;
18583
+ z-index: 10;
18584
+ left: 0;
18585
+ box-shadow: inset -1px 0px 0px #EBEEF0;
18586
+ min-width: 300px;
18587
+ }
18588
+
18589
+ .psui-el-table-results thead tr th:first-child > div {
18590
+ padding-left: 0;
18591
+ }
18592
+
18593
+ .psui-el-table-results thead tr:first-of-type th {
18594
+ text-align: left;
18595
+ padding-top: 0;
18596
+ padding-bottom: 0;
18597
+ }
18598
+
18599
+ .psui-el-table-results thead tr:first-of-type th > div {
18600
+ display: flex;
18601
+ flex-direction: row;
18602
+ border-bottom-width: 1px;
18603
+ --border-opacity: 1;
18604
+ border-color: #D6DDE5;
18605
+ border-color: rgba(214, 221, 229, var(--border-opacity));
18606
+ padding-top: 11px;
18607
+ padding-bottom: 11px;
18608
+ }
18609
+
18610
+ .psui-el-table-results thead tr:first-of-type p {
18611
+ font-size: 16px;
18612
+ line-height: 130%;
18613
+ line-height: 18px;
18614
+ }
18615
+
18616
+ .psui-el-table-results tbody tr {
18617
+ border-bottom-width: 1px;
18618
+ --border-opacity: 1;
18619
+ border-color: #E6ECF2;
18620
+ border-color: rgba(230, 236, 242, var(--border-opacity));
18621
+ }
18622
+
18623
+ .psui-el-table-results tbody tr td {
18624
+ padding-left: 2rem;
18625
+ --text-opacity: 1;
18626
+ color: #28323B;
18627
+ color: rgba(40, 50, 59, var(--text-opacity));
18628
+ height: 2.5rem;
18629
+ text-align: right;
18630
+ font-size: 14px;
18631
+ line-height: 130%;
18632
+ padding-top: 11px;
18633
+ padding-bottom: 11px;
18634
+ }
18635
+
18636
+ .psui-el-table-results tbody tr td > div {
18637
+ display: flex;
18638
+ align-items: center;
18639
+ }
18640
+
18641
+ .psui-el-table-results tbody tr td .actions {
18642
+ display: flex;
18643
+ align-items: center;
18644
+ height: 100%;
18645
+ position: relative;
18646
+ }
18647
+
18648
+ .psui-el-table-results tbody tr td:not(:first-child) > div {
18649
+ justify-content: flex-end;
18650
+ }
18651
+
18652
+ .psui-el-table-results tbody tr td:first-child {
18653
+ padding-left: 0;
18654
+ padding-right: 2rem;
18655
+ text-align: left;
18656
+ display: block;
18657
+ background-color: #ffffff ;
18658
+ position: sticky;
18659
+ z-index: 10;
18660
+ left: 0;
18661
+ box-shadow: inset -1px 0px 0px #EBEEF0;
18662
+ padding-top: 8px;
18663
+ padding-bottom: 8px;
18664
+ }
18665
+
18666
+ .psui-el-table-results tfoot tr td {
18667
+ }
18668
+
18463
18669
  .psui-el-table {
18464
18670
  width: 100%;
18465
18671
  table-layout: fixed;
@@ -18678,345 +18884,6 @@ html {
18678
18884
  margin-bottom: 3.5px;
18679
18885
  }
18680
18886
 
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
18887
  .psui-el-chips {
19021
18888
  display: inline-flex;
19022
18889
  position: relative;
@@ -19764,6 +19631,345 @@ html {
19764
19631
  color: rgba(81, 94, 106, var(--text-opacity))
19765
19632
  }
19766
19633
 
19634
+ .psui-el-button {
19635
+ font-weight: 700;
19636
+ align-items: center;
19637
+ display: flex;
19638
+ align-content: center;
19639
+ border-radius: 0.375rem;
19640
+ transition-property: all;
19641
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19642
+ transition-duration: 130ms;
19643
+ }
19644
+
19645
+ .psui-el-button span {
19646
+ font-weight: 700;
19647
+ flex-shrink: 0;
19648
+ line-height: 130%;
19649
+ font-family: inherit;
19650
+ text-align: right;
19651
+ }
19652
+
19653
+ .psui-el-button:focus {
19654
+ outline: none;
19655
+ }
19656
+
19657
+ .psui-el-button.icon-right {
19658
+ flex-direction: row-reverse;
19659
+ }
19660
+
19661
+ .psui-el-button.size-big {
19662
+ display: flex;
19663
+ align-items: center;
19664
+ align-content: center;
19665
+ padding: 9.5px 16px;
19666
+ }
19667
+
19668
+ .psui-el-button.size-big.icon-left {
19669
+ padding: 8px 16px;
19670
+ }
19671
+
19672
+ .psui-el-button.size-big.icon-left i {
19673
+ font-size: 24px;
19674
+ margin-right: 8px;
19675
+ }
19676
+
19677
+ .psui-el-button.size-big.icon-right {
19678
+ padding: 8px 16px;
19679
+ }
19680
+
19681
+ .psui-el-button.size-big.icon-right i {
19682
+ font-size: 24px;
19683
+ margin-left: 8px;
19684
+ }
19685
+
19686
+ .psui-el-button.size-medium {
19687
+ display: flex;
19688
+ align-items: center;
19689
+ align-content: center;
19690
+ padding: 7px 13px;
19691
+ font-size: 14px;
19692
+ }
19693
+
19694
+ .psui-el-button.size-medium.icon-left i {
19695
+ font-size: 18px;
19696
+ margin-right: 4px;
19697
+ }
19698
+
19699
+ .psui-el-button.size-medium.icon-right i {
19700
+ font-size: 18px;
19701
+ margin-left: 4px;
19702
+ }
19703
+
19704
+ .psui-el-button.size-small {
19705
+ display: flex;
19706
+ align-items: center;
19707
+ justify-content: center;
19708
+ border-radius: 0.25rem;
19709
+ padding-top: 0.25rem;
19710
+ padding-bottom: 0.25rem;
19711
+ padding-left: 0.5rem;
19712
+ padding-right: 0.5rem;
19713
+ font-size: 14px;
19714
+ }
19715
+
19716
+ .psui-el-button.size-small.layout-onlytext:active:not(.disabled) {
19717
+ --bg-opacity: 1;
19718
+ background-color: #E0EFF6;
19719
+ background-color: rgba(224, 239, 246, var(--bg-opacity));
19720
+ --text-opacity: 1;
19721
+ color: #318FAC;
19722
+ color: rgba(49, 143, 172, var(--text-opacity));
19723
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05);
19724
+ }
19725
+
19726
+ .psui-el-button.size-small.hover.layout-onlytext {
19727
+ --text-opacity: 1 !important;
19728
+ color: #318FAC !important;
19729
+ color: rgba(49, 143, 172, var(--text-opacity)) !important;
19730
+ --bg-opacity: 1 !important;
19731
+ background-color: #E0EFF6 !important;
19732
+ background-color: rgba(224, 239, 246, var(--bg-opacity)) !important;
19733
+ }
19734
+
19735
+ .psui-el-button.size-small.icon-left i {
19736
+ font-size: 18px;
19737
+ margin-right: 4px;
19738
+ }
19739
+
19740
+ .psui-el-button.size-small.icon-right i {
19741
+ font-size: 18px;
19742
+ margin-left: 4px;
19743
+ }
19744
+
19745
+ .psui-el-button.layout-solid {
19746
+ --bg-opacity: 1;
19747
+ background-color: #318FAC;
19748
+ background-color: rgba(49, 143, 172, var(--bg-opacity));
19749
+ color: #ffffff ;
19750
+ }
19751
+
19752
+ .psui-el-button.layout-solid.hover {
19753
+ --bg-opacity: 1;
19754
+ background-color: #64B5CE;
19755
+ background-color: rgba(100, 181, 206, var(--bg-opacity));
19756
+ color: #ffffff ;
19757
+ }
19758
+
19759
+ .psui-el-button.layout-solid:active:not(.disabled) {
19760
+ --bg-opacity: 1;
19761
+ background-color: #64B5CE;
19762
+ background-color: rgba(100, 181, 206, var(--bg-opacity));
19763
+ color: #ffffff ;
19764
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.15);
19765
+ }
19766
+
19767
+ .psui-el-button.layout-solid.disabled {
19768
+ --text-opacity: 1;
19769
+ color: #A2ACB7;
19770
+ color: rgba(162, 172, 183, var(--text-opacity));
19771
+ --bg-opacity: 1;
19772
+ background-color: #E6ECF2;
19773
+ background-color: rgba(230, 236, 242, var(--bg-opacity));
19774
+ cursor: default
19775
+ }
19776
+
19777
+ .psui-el-button.layout-outline {
19778
+ --text-opacity: 1;
19779
+ color: #318FAC;
19780
+ color: rgba(49, 143, 172, var(--text-opacity));
19781
+ border-width: 1px;
19782
+ --border-opacity: 1;
19783
+ border-color: #64B5CE;
19784
+ border-color: rgba(100, 181, 206, var(--border-opacity));
19785
+ background: transparent;
19786
+ }
19787
+
19788
+ .psui-el-button.layout-outline.hover,
19789
+ .psui-el-button.layout-outline:active {
19790
+ border-width: 1px;
19791
+ --border-opacity: 1;
19792
+ border-color: #318FAC;
19793
+ border-color: rgba(49, 143, 172, var(--border-opacity))
19794
+ }
19795
+
19796
+ .psui-el-button.layout-outline.disabled {
19797
+ --text-opacity: 1;
19798
+ color: #A2ACB7;
19799
+ color: rgba(162, 172, 183, var(--text-opacity));
19800
+ --border-opacity: 1;
19801
+ border-color: #D6DDE5;
19802
+ border-color: rgba(214, 221, 229, var(--border-opacity));
19803
+ cursor: default;
19804
+ }
19805
+
19806
+ .psui-el-button.layout-ghost {
19807
+ --bg-opacity: 1;
19808
+ background-color: #E0EFF6;
19809
+ background-color: rgba(224, 239, 246, var(--bg-opacity));
19810
+ --text-opacity: 1;
19811
+ color: #318FAC;
19812
+ color: rgba(49, 143, 172, var(--text-opacity));
19813
+ }
19814
+
19815
+ .psui-el-button.layout-ghost.hover {
19816
+ --bg-opacity: 1;
19817
+ background-color: #ECF7FB;
19818
+ background-color: rgba(236, 247, 251, var(--bg-opacity))
19819
+ }
19820
+
19821
+ .psui-el-button.layout-ghost:active:not(.disabled) {
19822
+ box-shadow: inset 0px 1px 2px rgba(0,0,0,0.05)
19823
+ }
19824
+
19825
+ .psui-el-button.layout-ghost.disabled {
19826
+ --text-opacity: 1;
19827
+ color: #A2ACB7;
19828
+ color: rgba(162, 172, 183, var(--text-opacity));
19829
+ --bg-opacity: 1;
19830
+ background-color: #E6ECF2;
19831
+ background-color: rgba(230, 236, 242, var(--bg-opacity));
19832
+ cursor: default
19833
+ }
19834
+
19835
+ .psui-el-button.layout-onlytext {
19836
+ background-color: #ffffff ;
19837
+ --text-opacity: 1;
19838
+ color: #318FAC;
19839
+ color: rgba(49, 143, 172, var(--text-opacity));
19840
+ }
19841
+
19842
+ .psui-el-button.layout-onlytext.disabled {
19843
+ --text-opacity: 1;
19844
+ color: #A2ACB7;
19845
+ color: rgba(162, 172, 183, var(--text-opacity));
19846
+ cursor: default
19847
+ }
19848
+
19849
+ .psui-el-button.layout-onlytext.hover {
19850
+ --text-opacity: 1;
19851
+ color: #64B5CE;
19852
+ color: rgba(100, 181, 206, var(--text-opacity))
19853
+ }
19854
+
19855
+ .psui-el-button.layout-caution {
19856
+ --bg-opacity: 1;
19857
+ background-color: #FCEBEB;
19858
+ background-color: rgba(252, 235, 235, var(--bg-opacity));
19859
+ --text-opacity: 1;
19860
+ color: #D65C5A;
19861
+ color: rgba(214, 92, 90, var(--text-opacity));
19862
+ }
19863
+
19864
+ .psui-el-button.layout-caution.hover,
19865
+ .psui-el-button.layout-caution:active:not(.disabled) {
19866
+ --bg-opacity: 1;
19867
+ background-color: #FCEBEB;
19868
+ background-color: rgba(252, 235, 235, var(--bg-opacity));
19869
+ --text-opacity: 1;
19870
+ color: #AA3937;
19871
+ color: rgba(170, 57, 55, var(--text-opacity));
19872
+ }
19873
+
19874
+ .psui-el-button.layout-caution.disabled {
19875
+ --text-opacity: 1;
19876
+ color: #A2ACB7;
19877
+ color: rgba(162, 172, 183, var(--text-opacity));
19878
+ --bg-opacity: 1;
19879
+ background-color: #E6ECF2;
19880
+ background-color: rgba(230, 236, 242, var(--bg-opacity));
19881
+ cursor: default
19882
+ }
19883
+
19884
+ .psui-el-card-infos {
19885
+ border-width: 1px;
19886
+ --border-opacity: 1;
19887
+ border-color: #E6ECF2;
19888
+ border-color: rgba(230, 236, 242, var(--border-opacity));
19889
+ border-radius: 0.375rem;
19890
+ display: flex;
19891
+ flex-direction: column;
19892
+ align-items: center;
19893
+ justify-content: center;
19894
+ padding-left: 0.75rem;
19895
+ padding-right: 0.75rem;
19896
+ padding-top: 0.5rem;
19897
+ padding-bottom: 0.5rem;
19898
+ cursor: pointer;
19899
+ }
19900
+
19901
+ .psui-el-card-infos-title {
19902
+ font-size: 12px;
19903
+ line-height: 130%;
19904
+ font-weight: 700;
19905
+ --text-opacity: 1;
19906
+ color: #A2ACB7;
19907
+ color: rgba(162, 172, 183, var(--text-opacity));
19908
+ margin-bottom: 0.25rem;
19909
+ }
19910
+
19911
+ .psui-el-card-infos-content {
19912
+ width: 100%;
19913
+ display: flex;
19914
+ justify-content: flex-end;
19915
+ align-items: center;
19916
+ font-size: 16px;
19917
+ line-height: 130%;
19918
+ }
19919
+
19920
+ .psui-el-card-infos-icon {
19921
+ --text-opacity: 1;
19922
+ color: #64B5CE;
19923
+ color: rgba(100, 181, 206, var(--text-opacity));
19924
+ margin-right: 0.25rem;
19925
+ font-size: 17px;
19926
+ }
19927
+
19928
+ .psui-el-card-infos:hover .psui-el-card-infos-icon {
19929
+ --text-opacity: 1;
19930
+ color: #318FAC;
19931
+ color: rgba(49, 143, 172, var(--text-opacity));
19932
+ }
19933
+
19934
+ .psui-el-chart-legend {
19935
+ display: flex;
19936
+ padding: 0.5rem;
19937
+ border-radius: 0.25rem;
19938
+ }
19939
+
19940
+ .psui-el-chart-legend-dot {
19941
+ --bg-opacity: 1;
19942
+ background-color: #57C0BA;
19943
+ background-color: rgba(87, 192, 186, var(--bg-opacity));
19944
+ border-radius: 9999px;
19945
+ width: 14px; height: 14px;
19946
+ margin-right: 6px;
19947
+ }
19948
+
19949
+ .psui-el-chart-legend-text {
19950
+ font-size: 12px;
19951
+ line-height: 130%;
19952
+ --text-opacity: 1;
19953
+ color: #798490;
19954
+ color: rgba(121, 132, 144, var(--text-opacity));
19955
+ font-weight: 700;
19956
+ }
19957
+
19958
+ .psui-el-chart-legend-total {
19959
+ font-size: 16px;
19960
+ line-height: 130%;
19961
+ --text-opacity: 1;
19962
+ color: #28323B;
19963
+ color: rgba(40, 50, 59, var(--text-opacity));
19964
+ margin-top: 0.25rem;
19965
+ }
19966
+
19967
+ .psui-el-chart-legend-percentage {
19968
+ --text-opacity: 1;
19969
+ color: #798490;
19970
+ color: rgba(121, 132, 144, var(--text-opacity));
19971
+ }
19972
+
19767
19973
  @media (min-width: 640px){
19768
19974
  .sm\:psui-container{
19769
19975
  width: 100%;
@@ -30746,6 +30952,10 @@ html {
30746
30952
  z-index: 10;
30747
30953
  }
30748
30954
 
30955
+ .sm\:psui-z-15{
30956
+ z-index: 15;
30957
+ }
30958
+
30749
30959
  .sm\:psui-z-20{
30750
30960
  z-index: 20;
30751
30961
  }
@@ -44684,6 +44894,10 @@ html {
44684
44894
  z-index: 10;
44685
44895
  }
44686
44896
 
44897
+ .md\:psui-z-15{
44898
+ z-index: 15;
44899
+ }
44900
+
44687
44901
  .md\:psui-z-20{
44688
44902
  z-index: 20;
44689
44903
  }
@@ -58622,6 +58836,10 @@ html {
58622
58836
  z-index: 10;
58623
58837
  }
58624
58838
 
58839
+ .lg\:psui-z-15{
58840
+ z-index: 15;
58841
+ }
58842
+
58625
58843
  .lg\:psui-z-20{
58626
58844
  z-index: 20;
58627
58845
  }
@@ -72560,6 +72778,10 @@ html {
72560
72778
  z-index: 10;
72561
72779
  }
72562
72780
 
72781
+ .xl\:psui-z-15{
72782
+ z-index: 15;
72783
+ }
72784
+
72563
72785
  .xl\:psui-z-20{
72564
72786
  z-index: 20;
72565
72787
  }
@@ -75514,4 +75736,4 @@ html {
75514
75736
  -webkit-animation: bounce 1s infinite;
75515
75737
  animation: bounce 1s infinite;
75516
75738
  }
75517
- }
75739
+ }