@rolster/styles-foundations 2.2.2 → 2.2.3

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.
@@ -1,5 +1,5 @@
1
1
  // Rolster Technology Components
2
- // v2.0.2
2
+ // v2.0.3
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 13/Abr/2023
@@ -7,8 +7,10 @@
7
7
 
8
8
  :root {
9
9
  --rlc-app-header-background: var(--rls-app-background-100);
10
- --rlc-app-content-background: var(--rls-app-background-500);
10
+ --rlc-app-header-height: var(--rls-sizing-x28);
11
11
  --rlc-app-navbar-background: var(--rls-app-background-100);
12
+ --rlc-app-navbar-width: 160rem;
13
+ --rlc-app-content-background: var(--rls-app-background-500);
12
14
 
13
15
  --rlc-action-color: var(--rls-app-color-300);
14
16
  --rlc-action-ripple-color: var(--rlc-action-color);
@@ -46,6 +48,8 @@
46
48
  --rlc-datatable-font-size: 7rem;
47
49
  --rlc-datatable-width-scroll: var(--rls-sizing-x4);
48
50
  --rlc-datatable-padding-scroll: 0rem;
51
+ --rlc-datatable-header-background: transparent;
52
+ --rlc-datatable-row-background: rgb(252, 252, 252);
49
53
 
50
54
  --rlc-form-footer-justify-content: end;
51
55
 
@@ -1,9 +1,9 @@
1
1
  // Rolster Technology App Component
2
- // v2.0.0
2
+ // v2.1.0
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
6
- // Updated: 26/May/2024
6
+ // Updated: 13/Jun/2024
7
7
 
8
8
  .rls-app {
9
9
  &__body {
@@ -28,14 +28,14 @@
28
28
 
29
29
  position: relative;
30
30
  width: 100%;
31
- height: var(--rls-sizing-x28);
31
+ height: var(--rlc-app-header-height);
32
32
  box-sizing: border-box;
33
33
  z-index: var(--rls-z-index-8);
34
34
  background: var(--rlc-app-header-background);
35
35
 
36
36
  & + .rls-app__page,
37
37
  & + .rls-app__content {
38
- height: calc(100vh - var(--rls-sizing-x28));
38
+ height: calc(100vh - var(--rlc-app-header-height));
39
39
  }
40
40
  }
41
41
 
@@ -62,7 +62,7 @@
62
62
 
63
63
  &__nav {
64
64
  position: relative;
65
- width: 160rem;
65
+ width: var(--rlc-app-navbar-width);
66
66
  height: 100%;
67
67
  margin: 0rem;
68
68
  padding: 0rem;
@@ -74,7 +74,7 @@
74
74
  & + .rls-app__page__content {
75
75
  --rlc-snackbar-left: calc(50% + 80rem);
76
76
 
77
- width: calc(100% - 160rem);
77
+ width: calc(100% - var(--rlc-app-navbar-width));
78
78
  }
79
79
  }
80
80
 
@@ -1,5 +1,5 @@
1
1
  // Rolster Technology Datatable Component
2
- // v2.0.1
2
+ // v2.0.2
3
3
  // @license MIT
4
4
  // Author: Rolster Developers
5
5
  // Created: 20/Mar/2018
@@ -69,6 +69,7 @@
69
69
  column-gap: var(--rls-sizing-x4);
70
70
  padding: 0rem var(--rls-sizing-x6);
71
71
  box-sizing: border-box;
72
+ background: var(--rlc-datatable-header-background);
72
73
  border: var(--rls-app-border-1-100);
73
74
  border-radius: var(--rls-sizing-x4);
74
75
  }
@@ -124,7 +125,7 @@
124
125
  box-sizing: border-box;
125
126
  border: var(--rls-app-border-1-100);
126
127
  border-radius: var(--rls-sizing-x4);
127
- background: rgba(252, 252, 252, 1);
128
+ background: var(--rlc-datatable-row-background);
128
129
 
129
130
  &--error {
130
131
  background: var(--rls-danger-color-100);