@rolster/styles-foundations 2.6.12 → 2.6.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/styles.css +393 -17
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +16 -4
- package/dist/styles.rtl.css +393 -17
- package/dist/styles.rtl.min.css +16 -4
- package/package.json +1 -1
- package/scss/components/data-table.scss +422 -0
- package/scss/components/field-list.scss +11 -2
- package/scss/components.scss +3 -2
- package/scss/foundations/colors.scss +12 -12
- package/scss/utilities/normalize.scss +3 -3
package/dist/styles.rtl.css
CHANGED
|
@@ -365,25 +365,25 @@ body {
|
|
|
365
365
|
var(--rls-warning-color-300) 15%,
|
|
366
366
|
var(--rls-warning-color-400) 85%
|
|
367
367
|
);
|
|
368
|
-
--rls-danger-color-950: #
|
|
369
|
-
--rls-danger-color-900: #
|
|
370
|
-
--rls-danger-backdrop-900: rgba(
|
|
371
|
-
--rls-danger-color-800: #
|
|
372
|
-
--rls-danger-color-700: #
|
|
373
|
-
--rls-danger-skeleton-500: rgba(
|
|
374
|
-
--rls-danger-skeleton-400: rgba(
|
|
375
|
-
--rls-danger-skeleton-300: rgba(
|
|
376
|
-
--rls-danger-skeleton-200: rgba(
|
|
377
|
-
--rls-danger-skeleton-100: rgba(
|
|
378
|
-
--rls-danger-color-600: #
|
|
368
|
+
--rls-danger-color-950: #4b0404;
|
|
369
|
+
--rls-danger-color-900: #881415;
|
|
370
|
+
--rls-danger-backdrop-900: rgba(136, 20, 21, 0.8);
|
|
371
|
+
--rls-danger-color-800: #a50f10;
|
|
372
|
+
--rls-danger-color-700: #c80d0e;
|
|
373
|
+
--rls-danger-skeleton-500: rgba(200, 13, 14, 0.5);
|
|
374
|
+
--rls-danger-skeleton-400: rgba(200, 13, 14, 0.325);
|
|
375
|
+
--rls-danger-skeleton-300: rgba(200, 13, 14, 0.25);
|
|
376
|
+
--rls-danger-skeleton-200: rgba(200, 13, 14, 0.175);
|
|
377
|
+
--rls-danger-skeleton-100: rgba(200, 13, 14, 0.1);
|
|
378
|
+
--rls-danger-color-600: #ed1516;
|
|
379
379
|
--rls-danger-color-500: #ff2627;
|
|
380
380
|
--rls-danger-shadow-color-500: rgba(255, 38, 39, 0.24);
|
|
381
381
|
--rls-danger-shadow-500: 0px 0px 0px 3px var(--rls-danger-shadow-color-500);
|
|
382
|
-
--rls-danger-color-400: #
|
|
383
|
-
--rls-danger-color-300: #
|
|
384
|
-
--rls-danger-color-200: #
|
|
385
|
-
--rls-danger-color-100: #
|
|
386
|
-
--rls-danger-color-050: #
|
|
382
|
+
--rls-danger-color-400: #ff6465;
|
|
383
|
+
--rls-danger-color-300: #ff9d9d;
|
|
384
|
+
--rls-danger-color-200: #ffc5c5;
|
|
385
|
+
--rls-danger-color-100: #ffdfdf;
|
|
386
|
+
--rls-danger-color-050: #fff1f1;
|
|
387
387
|
--rls-danger-gradient-700: linear-gradient(
|
|
388
388
|
180deg,
|
|
389
389
|
var(--rls-danger-color-700) 15%,
|
|
@@ -3546,7 +3546,7 @@ body {
|
|
|
3546
3546
|
--rls-font-weight-black: 900;
|
|
3547
3547
|
}
|
|
3548
3548
|
:root {
|
|
3549
|
-
--rls-app-font-family: -
|
|
3549
|
+
--rls-app-font-family: -rolster-system-font, -apple-system, BlinkMacSystemFont,
|
|
3550
3550
|
'Segoe UI', Roboto, Helvetica;
|
|
3551
3551
|
}
|
|
3552
3552
|
html {
|
|
@@ -5796,6 +5796,374 @@ button {
|
|
|
5796
5796
|
--pvt-navbar-dimension: calc(100vw - 32rem);
|
|
5797
5797
|
}
|
|
5798
5798
|
}
|
|
5799
|
+
.rls-datatable {
|
|
5800
|
+
--pvt-datatable-font-size: var(
|
|
5801
|
+
--rlc-datatable-font-size,
|
|
5802
|
+
var(--rls-label-font-size)
|
|
5803
|
+
);
|
|
5804
|
+
--pvt-datatable-letter-spacing: var(
|
|
5805
|
+
--rlc-datatable-letter-spacing,
|
|
5806
|
+
var(--rls-label-letter-spacing)
|
|
5807
|
+
);
|
|
5808
|
+
--pvt-datatable-font-color: var(
|
|
5809
|
+
--rlc-datatable-font-color,
|
|
5810
|
+
var(--rls-app-color-900)
|
|
5811
|
+
);
|
|
5812
|
+
--pvt-datatable-padding-component: 0rem;
|
|
5813
|
+
--pvt-datatable-padding-scroll: var(--rlc-datatable-padding-scroll, 0rem);
|
|
5814
|
+
--pvt-datatable-table-overflow: initial;
|
|
5815
|
+
--pvt-datatable-body-overflow: initial;
|
|
5816
|
+
--pvt-datatable-header-padding-right: var(--pvt-datatable-padding-scroll);
|
|
5817
|
+
--pvt-datatable-header-background: var(
|
|
5818
|
+
--rlc-datatable-header-background,
|
|
5819
|
+
var(--rls-app-color-100)
|
|
5820
|
+
);
|
|
5821
|
+
--pvt-datatable-record-background: var(
|
|
5822
|
+
--rlc-datatable-record-background,
|
|
5823
|
+
transparent
|
|
5824
|
+
);
|
|
5825
|
+
--pvt-datatable-floating-background: var(--rls-app-color-100);
|
|
5826
|
+
--rlc-amount-font-size: var(--pvt-datatable-font-size);
|
|
5827
|
+
--rlc-amount-width: 100%;
|
|
5828
|
+
--rlc-badge-padding: 0.5rem 1.5rem;
|
|
5829
|
+
--rlc-ballot-padding: 0rem;
|
|
5830
|
+
--rlc-ballot-component-row-gap: var(--rls-sizing-x1);
|
|
5831
|
+
--rlc-ballot-title-letter-spacing: var(--rls-smalltext-letter-spacing);
|
|
5832
|
+
--rlc-ballot-title-font-size: var(--rls-smalltext-font-size);
|
|
5833
|
+
--rlc-ballot-title-height: var(--rls-smalltext-line-height);
|
|
5834
|
+
--rlc-ballot-subtitle-letter-spacing: var(--rls-overline-letter-spacing);
|
|
5835
|
+
--rlc-ballot-subtitle-font-size: var(--rls-overline-font-size);
|
|
5836
|
+
--rlc-ballot-subtitle-height: var(--rls-overline-line-height);
|
|
5837
|
+
--rlc-field-box-body-background: transparent;
|
|
5838
|
+
--rlc-field-box-padding: 0rem;
|
|
5839
|
+
--rlc-field-box-width: 100%;
|
|
5840
|
+
--rlc-field-box-error-display: none;
|
|
5841
|
+
--rlc-field-box-label-display: none;
|
|
5842
|
+
--rlc-input-font-size: var(--pvt-datatable-font-size);
|
|
5843
|
+
--rlc-input-letter-spacing: var(--pvt-datatable-letter-spacing);
|
|
5844
|
+
--rlc-skeleton-text-column-gap: var(--rls-sizing-x2);
|
|
5845
|
+
position: relative;
|
|
5846
|
+
display: flex;
|
|
5847
|
+
width: 100%;
|
|
5848
|
+
height: var(--rlc-datatable-height, auto);
|
|
5849
|
+
flex-direction: column;
|
|
5850
|
+
row-gap: var(--rls-sizing-x6);
|
|
5851
|
+
border-radius: var(--rls-sizing-x4);
|
|
5852
|
+
box-sizing: border-box;
|
|
5853
|
+
}
|
|
5854
|
+
.rls-datatable--resizable {
|
|
5855
|
+
--pvt-datatable-table-overflow: hidden;
|
|
5856
|
+
--pvt-datatable-body-overflow: auto;
|
|
5857
|
+
height: 100%;
|
|
5858
|
+
}
|
|
5859
|
+
.rls-datatable--scrolleable {
|
|
5860
|
+
--pvt-datatable-padding-scroll: var(--rls-sizing-x4);
|
|
5861
|
+
--pvt-datatable-header-padding-right: calc(
|
|
5862
|
+
var(--pvt-datatable-padding-scroll) +
|
|
5863
|
+
var(--rlc-datatable-width-scroll, var(--rls-sizing-x4))
|
|
5864
|
+
);
|
|
5865
|
+
--pvt-datatable-padding-component: 0rem
|
|
5866
|
+
calc(var(--pvt-datatable-padding-scroll) + 5rem) 0rem 0rem;
|
|
5867
|
+
}
|
|
5868
|
+
.rls-datatable__toolbar {
|
|
5869
|
+
display: flex;
|
|
5870
|
+
flex: 0 0 auto;
|
|
5871
|
+
column-gap: var(--rls-sizing-x6);
|
|
5872
|
+
padding: var(--pvt-datatable-padding-component);
|
|
5873
|
+
box-sizing: border-box;
|
|
5874
|
+
background: var(--pvt-datatable-header-background);
|
|
5875
|
+
border-radius: var(--rls-sizing-x4);
|
|
5876
|
+
}
|
|
5877
|
+
.rls-datatable__table {
|
|
5878
|
+
display: flex;
|
|
5879
|
+
flex: 0 1 auto;
|
|
5880
|
+
overflow: var(--pvt-datatable-table-overflow);
|
|
5881
|
+
}
|
|
5882
|
+
.rls-datatable__table > table {
|
|
5883
|
+
display: flex;
|
|
5884
|
+
width: 100%;
|
|
5885
|
+
flex-direction: column;
|
|
5886
|
+
row-gap: var(--rls-sizing-x4);
|
|
5887
|
+
border-spacing: 0;
|
|
5888
|
+
border-collapse: collapse;
|
|
5889
|
+
}
|
|
5890
|
+
.rls-datatable__head {
|
|
5891
|
+
flex: 0 0 auto;
|
|
5892
|
+
width: 100%;
|
|
5893
|
+
padding-left: var(--pvt-datatable-header-padding-right);
|
|
5894
|
+
box-sizing: border-box;
|
|
5895
|
+
}
|
|
5896
|
+
.rls-datatable__header {
|
|
5897
|
+
display: flex;
|
|
5898
|
+
column-gap: var(--rls-sizing-x6);
|
|
5899
|
+
padding: 0rem var(--rls-sizing-x6);
|
|
5900
|
+
box-sizing: border-box;
|
|
5901
|
+
background: var(--pvt-datatable-header-background);
|
|
5902
|
+
border: var(--rls-app-border-1-200);
|
|
5903
|
+
border-radius: var(--rls-sizing-x4);
|
|
5904
|
+
}
|
|
5905
|
+
.rls-datatable__header .rls-poster {
|
|
5906
|
+
width: calc(100% - var(--rls-sizing-x2));
|
|
5907
|
+
margin: auto 0rem;
|
|
5908
|
+
overflow: hidden;
|
|
5909
|
+
text-overflow: ellipsis;
|
|
5910
|
+
white-space: nowrap;
|
|
5911
|
+
}
|
|
5912
|
+
.rls-datatable__title {
|
|
5913
|
+
position: relative;
|
|
5914
|
+
display: flex;
|
|
5915
|
+
height: var(--rls-sizing-x20);
|
|
5916
|
+
line-height: var(--rls-sizing-x20);
|
|
5917
|
+
color: var(--rls-app-color-700);
|
|
5918
|
+
font-weight: var(
|
|
5919
|
+
--rlc-datatable-header-font-weight,
|
|
5920
|
+
var(--rls-font-weight-semibold)
|
|
5921
|
+
);
|
|
5922
|
+
font-size: var(--pvt-datatable-font-size);
|
|
5923
|
+
letter-spacing: var(--pvt-datatable-letter-spacing);
|
|
5924
|
+
text-align: right;
|
|
5925
|
+
overflow: hidden;
|
|
5926
|
+
white-space: nowrap;
|
|
5927
|
+
}
|
|
5928
|
+
.rls-datatable__title--control {
|
|
5929
|
+
--rlc-action-ripple-dimension: var(--rls-sizing-x16);
|
|
5930
|
+
--rlc-action-ripple-position: -8rem;
|
|
5931
|
+
--rlc-avatar-radius: var(--rls-sizing-x3);
|
|
5932
|
+
--rlc-avatar-width: var(--rls-sizing-x16);
|
|
5933
|
+
--rlc-avatar-height: var(--rls-sizing-x16);
|
|
5934
|
+
--rlc-avatar-font-size: var(--pvt-datatable-font-size);
|
|
5935
|
+
--rlc-image-width: var(--rls-sizing-x12);
|
|
5936
|
+
--rlc-image-height: var(--rls-sizing-x12);
|
|
5937
|
+
--rlc-switch-max-width: var(--rls-sizing-x16);
|
|
5938
|
+
--rlc-switch-component-height: var(--rls-sizing-x8);
|
|
5939
|
+
--rlc-switch-element-width: var(--rls-sizing-x6);
|
|
5940
|
+
--rlc-switch-element-height: var(--rls-sizing-x4);
|
|
5941
|
+
--rlc-switch-element-radius: var(--rls-sizing-x4);
|
|
5942
|
+
display: flex;
|
|
5943
|
+
justify-content: center;
|
|
5944
|
+
align-items: center;
|
|
5945
|
+
width: var(--rls-sizing-x24);
|
|
5946
|
+
padding: 0rem;
|
|
5947
|
+
}
|
|
5948
|
+
.rls-datatable__title--control > img {
|
|
5949
|
+
width: var(--rls-sizing-x12);
|
|
5950
|
+
}
|
|
5951
|
+
.rls-datatable__title > span {
|
|
5952
|
+
display: block;
|
|
5953
|
+
width: 100%;
|
|
5954
|
+
text-overflow: ellipsis;
|
|
5955
|
+
overflow: hidden;
|
|
5956
|
+
}
|
|
5957
|
+
.rls-datatable__body {
|
|
5958
|
+
display: flex;
|
|
5959
|
+
flex: 1 1 auto;
|
|
5960
|
+
flex-direction: column;
|
|
5961
|
+
row-gap: var(--rls-sizing-x6);
|
|
5962
|
+
padding-left: var(--pvt-datatable-padding-scroll);
|
|
5963
|
+
box-sizing: border-box;
|
|
5964
|
+
overflow-y: var(--pvt-datatable-body-overflow);
|
|
5965
|
+
}
|
|
5966
|
+
.rls-datatable__subheader,
|
|
5967
|
+
.rls-datatable__record,
|
|
5968
|
+
.rls-datatable__totals {
|
|
5969
|
+
position: relative;
|
|
5970
|
+
display: flex;
|
|
5971
|
+
column-gap: var(--rls-sizing-x6);
|
|
5972
|
+
padding: 0rem var(--rls-sizing-x6);
|
|
5973
|
+
box-sizing: border-box;
|
|
5974
|
+
background: var(--pvt-datatable-record-background);
|
|
5975
|
+
border: var(--rls-app-border-1-200);
|
|
5976
|
+
border-radius: var(--rls-sizing-x4);
|
|
5977
|
+
}
|
|
5978
|
+
.rls-datatable__subheader--success,
|
|
5979
|
+
.rls-datatable__record--success,
|
|
5980
|
+
.rls-datatable__totals--success {
|
|
5981
|
+
--pvt-datatable-floating-background: var(--rls-success-color-100);
|
|
5982
|
+
background: var(--rls-success-color-050);
|
|
5983
|
+
border: var(--rls-success-border-1-200);
|
|
5984
|
+
}
|
|
5985
|
+
.rls-datatable__subheader--info,
|
|
5986
|
+
.rls-datatable__record--info,
|
|
5987
|
+
.rls-datatable__totals--info {
|
|
5988
|
+
--pvt-datatable-floating-background: var(--rls-info-color-100);
|
|
5989
|
+
background: var(--rls-info-color-050);
|
|
5990
|
+
border: var(--rls-info-border-1-200);
|
|
5991
|
+
}
|
|
5992
|
+
.rls-datatable__subheader--warning,
|
|
5993
|
+
.rls-datatable__record--warning,
|
|
5994
|
+
.rls-datatable__totals--warning {
|
|
5995
|
+
--pvt-datatable-floating-background: var(--rls-warning-color-100);
|
|
5996
|
+
background: var(--rls-warning-color-050);
|
|
5997
|
+
border: var(--rls-warning-border-1-200);
|
|
5998
|
+
}
|
|
5999
|
+
.rls-datatable__subheader--error,
|
|
6000
|
+
.rls-datatable__record--error,
|
|
6001
|
+
.rls-datatable__totals--error {
|
|
6002
|
+
--pvt-datatable-floating-background: var(--rls-danger-color-100);
|
|
6003
|
+
background: var(--rls-danger-color-050);
|
|
6004
|
+
border: var(--rls-danger-border-1-200);
|
|
6005
|
+
}
|
|
6006
|
+
.rls-datatable__subheader--contained,
|
|
6007
|
+
.rls-datatable__record--contained,
|
|
6008
|
+
.rls-datatable__totals--contained {
|
|
6009
|
+
overflow: hidden;
|
|
6010
|
+
}
|
|
6011
|
+
.rls-datatable__subheader {
|
|
6012
|
+
position: sticky;
|
|
6013
|
+
top: 0px;
|
|
6014
|
+
z-index: var(--rls-z-index-4);
|
|
6015
|
+
background: rgba(241, 238, 247, 0.8);
|
|
6016
|
+
backdrop-filter: blur(2px);
|
|
6017
|
+
}
|
|
6018
|
+
.rls-datatable__cell,
|
|
6019
|
+
.rls-datatable__data {
|
|
6020
|
+
--rlc-field-box-body-background: transparent;
|
|
6021
|
+
--rlc-field-box-body-background-focused: transparent;
|
|
6022
|
+
--rlc-field-box-body-background-disabled: transparent;
|
|
6023
|
+
--rlc-field-box-body-padding: 0rem;
|
|
6024
|
+
--rlc-field-box-body-border: none;
|
|
6025
|
+
--rlc-field-box-body-border-focused: none;
|
|
6026
|
+
--rlc-field-box-body-border-error: none;
|
|
6027
|
+
--rlc-field-box-body-border-disabled: none;
|
|
6028
|
+
--rlc-field-box-body-shadow: none;
|
|
6029
|
+
--rlc-field-box-body-shadow-error: none;
|
|
6030
|
+
--rlc-field-box-action-background: transparent;
|
|
6031
|
+
--rlc-field-list-control-font-size: var(--pvt-datatable-font-size);
|
|
6032
|
+
--rlc-field-list-control-font-weight: var(--rls-font-weight-medium);
|
|
6033
|
+
--rlc-field-list-control-letter-spacing: var(--rls-body-letter-spacing);
|
|
6034
|
+
--rlc-field-list-element-padding: var(--rls-sizing-x4);
|
|
6035
|
+
--rlc-field-list-suggestions-bottom: var(--rls-sizing-x24);
|
|
6036
|
+
--rlc-field-list-suggestions-top: var(--rls-sizing-x24);
|
|
6037
|
+
--rlc-poster-font-size: var(--pvt-datatable-font-size);
|
|
6038
|
+
--rlc-poster-width: calc(100% - var(--rls-sizing-x2));
|
|
6039
|
+
--rlc-poster-height: var(--rls-sizing-x8);
|
|
6040
|
+
--rlc-poster-padding: var(--rls-sizing-x2);
|
|
6041
|
+
position: relative;
|
|
6042
|
+
display: flex;
|
|
6043
|
+
align-items: center;
|
|
6044
|
+
cursor: default;
|
|
6045
|
+
text-align: right;
|
|
6046
|
+
min-height: var(--rls-sizing-x20);
|
|
6047
|
+
font-weight: var(--rls-font-weight-regular);
|
|
6048
|
+
color: var(--pvt-datatable-font-color);
|
|
6049
|
+
font-size: var(--pvt-datatable-font-size);
|
|
6050
|
+
letter-spacing: var(--pvt-datatable-letter-spacing);
|
|
6051
|
+
}
|
|
6052
|
+
.rls-datatable__cell--contained,
|
|
6053
|
+
.rls-datatable__data--contained {
|
|
6054
|
+
overflow: hidden;
|
|
6055
|
+
}
|
|
6056
|
+
.rls-datatable__cell--control,
|
|
6057
|
+
.rls-datatable__data--control {
|
|
6058
|
+
--rlc-action-ripple-dimension: var(--rls-sizing-x16);
|
|
6059
|
+
--rlc-action-ripple-position: -8rem;
|
|
6060
|
+
--rlc-avatar-radius: var(--rls-sizing-x3);
|
|
6061
|
+
--rlc-avatar-width: var(--rls-sizing-x16);
|
|
6062
|
+
--rlc-avatar-height: var(--rls-sizing-x16);
|
|
6063
|
+
--rlc-avatar-font-size: var(--pvt-datatable-font-size);
|
|
6064
|
+
--rlc-image-width: var(--rls-sizing-x12);
|
|
6065
|
+
--rlc-image-height: var(--rls-sizing-x12);
|
|
6066
|
+
--rlc-switch-max-width: var(--rls-sizing-x16);
|
|
6067
|
+
--rlc-switch-component-height: var(--rls-sizing-x8);
|
|
6068
|
+
--rlc-switch-element-width: var(--rls-sizing-x6);
|
|
6069
|
+
--rlc-switch-element-height: var(--rls-sizing-x4);
|
|
6070
|
+
--rlc-switch-element-radius: var(--rls-sizing-x4);
|
|
6071
|
+
display: flex;
|
|
6072
|
+
justify-content: center;
|
|
6073
|
+
align-items: center;
|
|
6074
|
+
width: var(--rls-sizing-x24);
|
|
6075
|
+
padding: 0rem;
|
|
6076
|
+
}
|
|
6077
|
+
.rls-datatable__cell--control > img,
|
|
6078
|
+
.rls-datatable__data--control > img {
|
|
6079
|
+
width: var(--rls-sizing-x12);
|
|
6080
|
+
}
|
|
6081
|
+
.rls-datatable__cell.rls-align-center,
|
|
6082
|
+
.rls-datatable__data.rls-align-center {
|
|
6083
|
+
justify-content: center;
|
|
6084
|
+
}
|
|
6085
|
+
.rls-datatable__cell > span,
|
|
6086
|
+
.rls-datatable__data > span {
|
|
6087
|
+
display: block;
|
|
6088
|
+
width: 100%;
|
|
6089
|
+
white-space: nowrap;
|
|
6090
|
+
text-overflow: ellipsis;
|
|
6091
|
+
overflow: hidden;
|
|
6092
|
+
}
|
|
6093
|
+
.rls-datatable__cell > p,
|
|
6094
|
+
.rls-datatable__data > p {
|
|
6095
|
+
padding: var(--rls-sizing-x2) 0rem;
|
|
6096
|
+
}
|
|
6097
|
+
.rls-datatable__cell .rls-field-list,
|
|
6098
|
+
.rls-datatable__data .rls-field-list {
|
|
6099
|
+
--rlc-field-box-body-padding: var(--rls-sizing-x4) 0rem;
|
|
6100
|
+
--rlc-field-box-action-dimension: var(--rls-sizing-x10);
|
|
6101
|
+
}
|
|
6102
|
+
.rls-datatable__cell .rls-poster,
|
|
6103
|
+
.rls-datatable__data .rls-poster {
|
|
6104
|
+
overflow: hidden;
|
|
6105
|
+
text-overflow: ellipsis;
|
|
6106
|
+
white-space: nowrap;
|
|
6107
|
+
}
|
|
6108
|
+
.rls-datatable__cell > a:hover,
|
|
6109
|
+
.rls-datatable__data > a:hover {
|
|
6110
|
+
color: var(--rls-app-color-700);
|
|
6111
|
+
text-decoration: underline;
|
|
6112
|
+
}
|
|
6113
|
+
.rls-datatable__floating {
|
|
6114
|
+
--pvt-action-tooltip-left: 0;
|
|
6115
|
+
--pvt-action-tooltip-right: initial;
|
|
6116
|
+
--pvt-action-tooltip-transform: translate(calc(-100% - var(--rls-sizing-x4)));
|
|
6117
|
+
position: absolute;
|
|
6118
|
+
display: flex;
|
|
6119
|
+
right: initial;
|
|
6120
|
+
left: 0;
|
|
6121
|
+
height: 100%;
|
|
6122
|
+
column-gap: 4rem;
|
|
6123
|
+
align-items: center;
|
|
6124
|
+
z-index: var(--rls-z-index-2);
|
|
6125
|
+
padding: 0rem var(--rls-sizing-x6);
|
|
6126
|
+
background: var(--pvt-datatable-floating-background);
|
|
6127
|
+
border-left: none;
|
|
6128
|
+
transform: translateX(calc(-1 * (100% - var(--rls-sizing-x4))));
|
|
6129
|
+
transition: transform 240ms var(--rls-standard-curve);
|
|
6130
|
+
}
|
|
6131
|
+
.rls-datatable__floating:hover {
|
|
6132
|
+
transform: translateX(0);
|
|
6133
|
+
}
|
|
6134
|
+
.rls-datatable__floating--invested {
|
|
6135
|
+
--pvt-action-tooltip-left: initial;
|
|
6136
|
+
--pvt-action-tooltip-right: 0;
|
|
6137
|
+
--pvt-action-tooltip-transform: translate(calc(100% + var(--rls-sizing-x4)));
|
|
6138
|
+
left: initial;
|
|
6139
|
+
right: 0;
|
|
6140
|
+
transform: translateX(calc(-1 * (-100% + var(--rls-sizing-x4))));
|
|
6141
|
+
}
|
|
6142
|
+
.rls-datatable__floating[rls-theme] {
|
|
6143
|
+
background: var(--rls-theme-color-050);
|
|
6144
|
+
}
|
|
6145
|
+
.rls-datatable__floating .rls-button-action__tooltip {
|
|
6146
|
+
top: 0;
|
|
6147
|
+
right: var(--pvt-action-tooltip-left);
|
|
6148
|
+
left: var(--pvt-action-tooltip-right);
|
|
6149
|
+
transform: var(--pvt-action-tooltip-transform);
|
|
6150
|
+
z-index: var(--rls-z-index-2);
|
|
6151
|
+
}
|
|
6152
|
+
.rls-datatable__summary {
|
|
6153
|
+
--pvt-datatable-record-background: var(--rls-app-color-100);
|
|
6154
|
+
flex: 0 0 auto;
|
|
6155
|
+
padding-left: var(--pvt-datatable-header-padding-right);
|
|
6156
|
+
box-sizing: border-box;
|
|
6157
|
+
}
|
|
6158
|
+
.rls-datatable__footer {
|
|
6159
|
+
--pvt-datatable-record-background: var(--rls-app-color-100);
|
|
6160
|
+
position: relative;
|
|
6161
|
+
flex: 0 0 auto;
|
|
6162
|
+
width: 100%;
|
|
6163
|
+
padding: var(--pvt-datatable-padding-component);
|
|
6164
|
+
box-sizing: border-box;
|
|
6165
|
+
overflow: hidden;
|
|
6166
|
+
}
|
|
5799
6167
|
.rls-field-box {
|
|
5800
6168
|
--pvt-body-background: var(--rlc-field-box-body-background, transparent);
|
|
5801
6169
|
--pvt-body-background-disabled: var(
|
|
@@ -5931,6 +6299,8 @@ button {
|
|
|
5931
6299
|
--pvt-list-body-max-height: 160rem;
|
|
5932
6300
|
--pvt-list-body-border: var(--rls-theme-border-1-500);
|
|
5933
6301
|
--pvt-list-component-padding: 0rem var(--rls-sizing-x4);
|
|
6302
|
+
--pvt-element-opacity: 1;
|
|
6303
|
+
--pvt-element-pointer-events: initial;
|
|
5934
6304
|
--pvt-backdrop-opacity: 0;
|
|
5935
6305
|
--pvt-backdrop-bottom: initial;
|
|
5936
6306
|
--rlc-field-box-body-padding: var(--rls-sizing-x3) var(--rls-sizing-x4);
|
|
@@ -6022,6 +6392,10 @@ button {
|
|
|
6022
6392
|
calc(100% - var(--rls-sizing-x4))
|
|
6023
6393
|
);
|
|
6024
6394
|
}
|
|
6395
|
+
.rls-field-list__suggestions--disabled {
|
|
6396
|
+
--pvt-element-opacity: 0.5;
|
|
6397
|
+
--pvt-element-pointer-events: none;
|
|
6398
|
+
}
|
|
6025
6399
|
.rls-field-list__suggestions__body {
|
|
6026
6400
|
display: flex;
|
|
6027
6401
|
flex-direction: column;
|
|
@@ -6066,6 +6440,8 @@ button {
|
|
|
6066
6440
|
border-radius: var(--rls-sizing-x4);
|
|
6067
6441
|
padding: var(--rlc-field-list-element-padding, var(--rls-sizing-x2));
|
|
6068
6442
|
box-sizing: border-box;
|
|
6443
|
+
opacity: var(--pvt-element-opacity);
|
|
6444
|
+
pointer-events: var(--pvt-element-pointer-events);
|
|
6069
6445
|
}
|
|
6070
6446
|
.rls-field-list__element:hover {
|
|
6071
6447
|
background: var(--rls-app-color-100);
|