@rolster/styles-foundations 2.5.37 → 2.5.39
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 +13 -3
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +3 -3
- package/dist/styles.rtl.css +13 -3
- package/dist/styles.rtl.min.css +3 -3
- package/package.json +1 -1
- package/scss/components/app.scss +4 -1
- package/scss/components/field-list.scss +12 -4
package/dist/styles.rtl.css
CHANGED
|
@@ -4291,6 +4291,7 @@ button {
|
|
|
4291
4291
|
--pvt-navbar-dimension: 0rem;
|
|
4292
4292
|
--pvt-navbar-width: var(--rlc-app-navbar-width, 160rem);
|
|
4293
4293
|
--pvt-navbar-width-condense: 36rem;
|
|
4294
|
+
--pvt-nabvar-snackbar: var(--pvt-navbar-width);
|
|
4294
4295
|
display: flex;
|
|
4295
4296
|
flex-direction: column;
|
|
4296
4297
|
padding: 0rem;
|
|
@@ -4301,10 +4302,11 @@ button {
|
|
|
4301
4302
|
z-index: var(--rls-z-index-8);
|
|
4302
4303
|
}
|
|
4303
4304
|
.rls-app__body--navbar-snackbar {
|
|
4304
|
-
--rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-
|
|
4305
|
+
--rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-snackbar) / 2));
|
|
4305
4306
|
}
|
|
4306
4307
|
.rls-app__body--navbar-condense {
|
|
4307
4308
|
--pvt-navbar-width: var(--pvt-navbar-width-condense);
|
|
4309
|
+
--pvt-nabvar-snackbar: var(--pvt-navbar-width-condense);
|
|
4308
4310
|
}
|
|
4309
4311
|
.rls-app__header {
|
|
4310
4312
|
--rlc-toolbar-height: 100%;
|
|
@@ -4379,6 +4381,7 @@ button {
|
|
|
4379
4381
|
--pvt-navbar-width: var(--pvt-navbar-dimension);
|
|
4380
4382
|
--pvt-navbar-width-condense: var(--pvt-navbar-dimension);
|
|
4381
4383
|
--pvt-section-navbar: 0rem;
|
|
4384
|
+
--pvt-navbar-snackbar: 0rem;
|
|
4382
4385
|
}
|
|
4383
4386
|
.rls-app__body--navbar-condense {
|
|
4384
4387
|
--pvt-section-navbar: var(--pvt-navbar-dimension);
|
|
@@ -4822,6 +4825,8 @@ button {
|
|
|
4822
4825
|
var(--rls-sizing-x12)
|
|
4823
4826
|
);
|
|
4824
4827
|
--pvt-action-font-color: var(--rls-app-color-600);
|
|
4828
|
+
--pvt-control-width: calc(100% - var(--pvt-action-dimension));
|
|
4829
|
+
--pvt-control-pointer-events: initial;
|
|
4825
4830
|
--pvt-list-height: 0rem;
|
|
4826
4831
|
--pvt-list-max-height: 160rem;
|
|
4827
4832
|
--pvt-list-opacity: 0;
|
|
@@ -4835,13 +4840,17 @@ button {
|
|
|
4835
4840
|
.rls-field-list.rls-field-box--disabled {
|
|
4836
4841
|
--pvt-action-font-color: var(--rls-app-color-400);
|
|
4837
4842
|
}
|
|
4843
|
+
.rls-field-list.rls-field-box--readonly {
|
|
4844
|
+
--pvt-control-width: 100%;
|
|
4845
|
+
--pvt-control-pointer-events: none;
|
|
4846
|
+
}
|
|
4838
4847
|
.rls-field-list__control {
|
|
4839
4848
|
position: relative;
|
|
4840
|
-
width:
|
|
4849
|
+
width: var(--pvt-control-width);
|
|
4841
4850
|
height: var(--rls-sizing-x12);
|
|
4842
4851
|
line-height: var(--rls-sizing-x12);
|
|
4843
4852
|
padding: 0rem;
|
|
4844
|
-
cursor:
|
|
4853
|
+
cursor: var(--rlc-fieldlist-control-cursor, default);
|
|
4845
4854
|
border: none;
|
|
4846
4855
|
outline: none;
|
|
4847
4856
|
background: rgba(0, 0, 0, 0);
|
|
@@ -4865,6 +4874,7 @@ button {
|
|
|
4865
4874
|
}
|
|
4866
4875
|
.rls-field-list__control:disabled {
|
|
4867
4876
|
opacity: 0.5;
|
|
4877
|
+
cursor: not-allowed;
|
|
4868
4878
|
}
|
|
4869
4879
|
.rls-field-list__action {
|
|
4870
4880
|
--rlc-icon-dimension: calc(var(--pvt-action-dimension) - 2rem);
|