@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.
@@ -10,6 +10,7 @@
10
10
  --pvt-navbar-dimension: 0rem;
11
11
  --pvt-navbar-width: var(--rlc-app-navbar-width, 160rem);
12
12
  --pvt-navbar-width-condense: 36rem;
13
+ --pvt-nabvar-snackbar: var(--pvt-navbar-width);
13
14
 
14
15
  display: flex;
15
16
  flex-direction: column;
@@ -21,11 +22,12 @@
21
22
  z-index: var(--rls-z-index-8);
22
23
 
23
24
  &--navbar-snackbar {
24
- --rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-width) / 2));
25
+ --rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-snackbar) / 2));
25
26
  }
26
27
 
27
28
  &--navbar-condense {
28
29
  --pvt-navbar-width: var(--pvt-navbar-width-condense);
30
+ --pvt-nabvar-snackbar: var(--pvt-navbar-width-condense);
29
31
  }
30
32
  }
31
33
 
@@ -114,6 +116,7 @@
114
116
  --pvt-navbar-width: var(--pvt-navbar-dimension);
115
117
  --pvt-navbar-width-condense: var(--pvt-navbar-dimension);
116
118
  --pvt-section-navbar: 0rem;
119
+ --pvt-navbar-snackbar: 0rem;
117
120
 
118
121
  &--navbar-condense {
119
122
  --pvt-section-navbar: var(--pvt-navbar-dimension);
@@ -1,9 +1,9 @@
1
1
  // Rolster Technology FieldList Component
2
- // v1.4.1
2
+ // v1.4.2
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 14/May/2025
6
+ // Updated: 17/Sep/2025
7
7
 
8
8
  .rls-field-list {
9
9
  --pvt-action-dimension: var(
@@ -12,6 +12,8 @@
12
12
  );
13
13
 
14
14
  --pvt-action-font-color: var(--rls-app-color-600);
15
+ --pvt-control-width: calc(100% - var(--pvt-action-dimension));
16
+ --pvt-control-pointer-events: initial;
15
17
  --pvt-list-height: 0rem;
16
18
  --pvt-list-max-height: 160rem;
17
19
  --pvt-list-opacity: 0;
@@ -28,13 +30,18 @@
28
30
  --pvt-action-font-color: var(--rls-app-color-400);
29
31
  }
30
32
 
33
+ &.rls-field-box--readonly {
34
+ --pvt-control-width: 100%;
35
+ --pvt-control-pointer-events: none;
36
+ }
37
+
31
38
  &__control {
32
39
  position: relative;
33
- width: calc(100% - var(--pvt-action-dimension));
40
+ width: var(--pvt-control-width);
34
41
  height: var(--rls-sizing-x12);
35
42
  line-height: var(--rls-sizing-x12);
36
43
  padding: 0rem;
37
- cursor: text;
44
+ cursor: var(--rlc-fieldlist-control-cursor, default);
38
45
  border: none;
39
46
  outline: none;
40
47
  background: transparent;
@@ -63,6 +70,7 @@
63
70
 
64
71
  &:disabled {
65
72
  opacity: 0.5;
73
+ cursor: not-allowed;
66
74
  }
67
75
  }
68
76