@rolster/styles-foundations 2.2.2 → 2.2.4

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.
@@ -3009,6 +3009,55 @@ p {
3009
3009
  white-space: nowrap;
3010
3010
  }
3011
3011
 
3012
+ :root {
3013
+ --rls-app-font-size: 2px;
3014
+ --rls-heading1-font-size: 16rem;
3015
+ --rls-heading1-letter-spacing: 0.0234375em;
3016
+ --rls-heading1-line-height: 18.25rem;
3017
+ --rls-heading2-font-size: 14.45rem;
3018
+ --rls-heading2-letter-spacing: 0.0234375em;
3019
+ --rls-heading2-line-height: 15.45rem;
3020
+ --rls-heading3-font-size: 13.45rem;
3021
+ --rls-heading3-letter-spacing: 0.0234375em;
3022
+ --rls-heading3-line-height: 14.45rem;
3023
+ --rls-heading4-font-size: 12rem;
3024
+ --rls-heading4-letter-spacing: 0.0234375em;
3025
+ --rls-heading4-line-height: 13rem;
3026
+ --rls-heading5-font-size: 11rem;
3027
+ --rls-heading5-letter-spacing: 0.0234375em;
3028
+ --rls-heading5-line-height: 12.65rem;
3029
+ --rls-heading6-font-size: 10rem;
3030
+ --rls-heading6-letter-spacing: 0.0234375em;
3031
+ --rls-heading6-line-height: 11rem;
3032
+ --rls-title-font-size: 9rem;
3033
+ --rls-title-letter-spacing: 0.0546875em;
3034
+ --rls-title-line-height: 10rem;
3035
+ --rls-subtitle-font-size: 8.75rem;
3036
+ --rls-subtitle-letter-spacing: 0.0546875em;
3037
+ --rls-subtitle-line-height: 8.95rem;
3038
+ --rls-body-font-size: 8rem;
3039
+ --rls-body-letter-spacing: 0.03125em;
3040
+ --rls-body-line-height: 9rem;
3041
+ --rls-input-font-size: 7.65rem;
3042
+ --rls-input-letter-spacing: 0.03125em;
3043
+ --rls-input-line-height: 9rem;
3044
+ --rls-label-font-size: 7rem;
3045
+ --rls-label-letter-spacing: 0.03125em;
3046
+ --rls-label-line-height: 8.25rem;
3047
+ --rls-button-font-size: 7.125rem;
3048
+ --rls-button-letter-spacing: 0.05725em;
3049
+ --rls-button-line-height: 8.5rem;
3050
+ --rls-smalltext-font-size: 6rem;
3051
+ --rls-smalltext-letter-spacing: 0.03125em;
3052
+ --rls-smalltext-line-height: 8.5rem;
3053
+ --rls-caption-font-size: 5.75rem;
3054
+ --rls-caption-letter-spacing: 0.046875em;
3055
+ --rls-caption-line-height: 7.25rem;
3056
+ --rls-overline-font-size: 5.35rem;
3057
+ --rls-overline-letter-spacing: 0.0625em;
3058
+ --rls-overline-line-height: 7.25rem;
3059
+ }
3060
+
3012
3061
  h1 {
3013
3062
  font-size: var(--rls-heading1-font-size);
3014
3063
  letter-spacing: var(--rls-heading1-letter-spacing);
@@ -4018,8 +4067,10 @@ button {
4018
4067
 
4019
4068
  :root {
4020
4069
  --rlc-app-header-background: var(--rls-app-background-100);
4021
- --rlc-app-content-background: var(--rls-app-background-500);
4070
+ --rlc-app-header-height: var(--rls-sizing-x28);
4022
4071
  --rlc-app-navbar-background: var(--rls-app-background-100);
4072
+ --rlc-app-navbar-width: 160rem;
4073
+ --rlc-app-content-background: var(--rls-app-background-500);
4023
4074
  --rlc-action-color: var(--rls-app-color-300);
4024
4075
  --rlc-action-ripple-color: var(--rlc-action-color);
4025
4076
  --rlc-action-ripple-dimension: var(--rls-sizing-x18);
@@ -4048,6 +4099,8 @@ button {
4048
4099
  --rlc-datatable-font-size: 7rem;
4049
4100
  --rlc-datatable-width-scroll: var(--rls-sizing-x4);
4050
4101
  --rlc-datatable-padding-scroll: 0rem;
4102
+ --rlc-datatable-header-background: transparent;
4103
+ --rlc-datatable-row-background: rgb(252, 252, 252);
4051
4104
  --rlc-form-footer-justify-content: end;
4052
4105
  --rlc-icon-font-size: var(--rls-sizing-x12);
4053
4106
  --rlc-icon-width: var(--rls-sizing-x12);
@@ -4097,14 +4150,14 @@ button {
4097
4150
  --rlc-toolbar-height: 100%;
4098
4151
  position: relative;
4099
4152
  width: 100%;
4100
- height: var(--rls-sizing-x28);
4153
+ height: var(--rlc-app-header-height);
4101
4154
  box-sizing: border-box;
4102
4155
  z-index: var(--rls-z-index-8);
4103
4156
  background: var(--rlc-app-header-background);
4104
4157
  }
4105
4158
  .rls-app__header + .rls-app__page,
4106
4159
  .rls-app__header + .rls-app__content {
4107
- height: calc(100vh - var(--rls-sizing-x28));
4160
+ height: calc(100vh - var(--rlc-app-header-height));
4108
4161
  }
4109
4162
 
4110
4163
  .rls-app__content {
@@ -4130,7 +4183,7 @@ button {
4130
4183
  }
4131
4184
  .rls-app__page__nav {
4132
4185
  position: relative;
4133
- width: 160rem;
4186
+ width: var(--rlc-app-navbar-width);
4134
4187
  height: 100%;
4135
4188
  margin: 0rem;
4136
4189
  padding: 0rem;
@@ -4141,7 +4194,7 @@ button {
4141
4194
  }
4142
4195
  .rls-app__page__nav + .rls-app__page__content {
4143
4196
  --rlc-snackbar-left: calc(50% + 80rem);
4144
- width: calc(100% - 160rem);
4197
+ width: calc(100% - var(--rlc-app-navbar-width));
4145
4198
  }
4146
4199
  .rls-app__page__content {
4147
4200
  display: flex;
@@ -4279,6 +4332,7 @@ button {
4279
4332
  column-gap: var(--rls-sizing-x4);
4280
4333
  padding: 0rem var(--rls-sizing-x6);
4281
4334
  box-sizing: border-box;
4335
+ background: var(--rlc-datatable-header-background);
4282
4336
  border: var(--rls-app-border-1-100);
4283
4337
  border-radius: var(--rls-sizing-x4);
4284
4338
  }
@@ -4341,7 +4395,7 @@ button {
4341
4395
  box-sizing: border-box;
4342
4396
  border: var(--rls-app-border-1-100);
4343
4397
  border-radius: var(--rls-sizing-x4);
4344
- background: #fcfcfc;
4398
+ background: var(--rlc-datatable-row-background);
4345
4399
  }
4346
4400
  .rls-datatable__data--error,
4347
4401
  .rls-datatable__totals--error {