@rolster/styles-foundations 2.5.29 → 2.5.31
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 +27 -12
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +3 -3
- package/dist/styles.rtl.css +27 -12
- package/dist/styles.rtl.min.css +3 -3
- package/package.json +1 -1
- package/scss/components/app.scss +28 -12
- package/scss/styles.scss +7 -2
package/dist/styles.rtl.css
CHANGED
|
@@ -4289,12 +4289,13 @@ button {
|
|
|
4289
4289
|
}
|
|
4290
4290
|
.rls-app__body {
|
|
4291
4291
|
--pvt-navbar-width: var(--rlc-app-navbar-width, 160rem);
|
|
4292
|
+
--pvt-navbar-width-condense: 36rem;
|
|
4292
4293
|
display: flex;
|
|
4293
4294
|
flex-direction: column;
|
|
4294
4295
|
padding: 0rem;
|
|
4295
4296
|
margin: 0rem;
|
|
4296
|
-
width:
|
|
4297
|
-
height:
|
|
4297
|
+
width: var(--rls-html-max-width);
|
|
4298
|
+
height: var(--rls-html-max-height);
|
|
4298
4299
|
overflow: hidden;
|
|
4299
4300
|
z-index: var(--rls-z-index-8);
|
|
4300
4301
|
}
|
|
@@ -4302,7 +4303,7 @@ button {
|
|
|
4302
4303
|
--rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-width) / 2));
|
|
4303
4304
|
}
|
|
4304
4305
|
.rls-app__body--navbar-condense {
|
|
4305
|
-
--pvt-navbar-width:
|
|
4306
|
+
--pvt-navbar-width: var(--pvt-navbar-width-condense);
|
|
4306
4307
|
}
|
|
4307
4308
|
.rls-app__header {
|
|
4308
4309
|
--rlc-toolbar-height: 100%;
|
|
@@ -4316,12 +4317,12 @@ button {
|
|
|
4316
4317
|
}
|
|
4317
4318
|
.rls-app__header + .rls-app__page,
|
|
4318
4319
|
.rls-app__header + .rls-app__content {
|
|
4319
|
-
height: calc(
|
|
4320
|
+
height: calc(var(--rls-html-max-height) - var(--pvt-header-height));
|
|
4320
4321
|
}
|
|
4321
4322
|
.rls-app__content {
|
|
4322
4323
|
position: relative;
|
|
4323
4324
|
width: 100%;
|
|
4324
|
-
height:
|
|
4325
|
+
height: var(--rls-html-max-height);
|
|
4325
4326
|
margin: 0rem;
|
|
4326
4327
|
padding: 0rem;
|
|
4327
4328
|
overflow: auto;
|
|
@@ -4332,7 +4333,7 @@ button {
|
|
|
4332
4333
|
position: relative;
|
|
4333
4334
|
display: flex;
|
|
4334
4335
|
width: 100%;
|
|
4335
|
-
height:
|
|
4336
|
+
height: var(--rls-html-max-height);
|
|
4336
4337
|
margin: 0rem;
|
|
4337
4338
|
padding: 0rem;
|
|
4338
4339
|
overflow: hidden;
|
|
@@ -4344,12 +4345,7 @@ button {
|
|
|
4344
4345
|
height: 100%;
|
|
4345
4346
|
margin: 0rem;
|
|
4346
4347
|
padding: 0rem;
|
|
4347
|
-
|
|
4348
|
-
overflow-x: hidden;
|
|
4349
|
-
overflow-y: auto;
|
|
4350
|
-
border-radius: 0rem 0rem 0rem var(--rls-sizing-x16);
|
|
4351
|
-
background: var(--rlc-app-navbar-background, var(--rls-app-color-100));
|
|
4352
|
-
transition: width 240ms var(--rls-acceleration-curve);
|
|
4348
|
+
transition: width 280ms var(--rls-acceleration-curve);
|
|
4353
4349
|
}
|
|
4354
4350
|
.rls-app__page__nav + .rls-app__page__content {
|
|
4355
4351
|
--rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-width) / 2));
|
|
@@ -4366,6 +4362,21 @@ button {
|
|
|
4366
4362
|
box-sizing: border-box;
|
|
4367
4363
|
transition: width 240ms var(--rls-acceleration-curve);
|
|
4368
4364
|
}
|
|
4365
|
+
@media screen and (max-width: 640px) {
|
|
4366
|
+
.rls-app__body {
|
|
4367
|
+
--pvt-navbar-width: 140rem;
|
|
4368
|
+
--pvt-navbar-width-condense: 140rem;
|
|
4369
|
+
--pvt-section-navbar: 0rem;
|
|
4370
|
+
}
|
|
4371
|
+
.rls-app__body--navbar-condense {
|
|
4372
|
+
--pvt-section-navbar: 140rem;
|
|
4373
|
+
}
|
|
4374
|
+
.rls-app__page {
|
|
4375
|
+
width: calc(var(--rls-html-max-width) + var(--pvt-navbar-width));
|
|
4376
|
+
right: calc(var(--pvt-section-navbar) * -1);
|
|
4377
|
+
transition: right 280ms var(--rls-standard-curve);
|
|
4378
|
+
}
|
|
4379
|
+
}
|
|
4369
4380
|
.rls-datatable {
|
|
4370
4381
|
--pvt-datatable-letter-spacing: var(--rlc-datatable-letter-spacing, 0.0625em);
|
|
4371
4382
|
--pvt-datatable-font-size: var(--rlc-datatable-font-size, 7rem);
|
|
@@ -5043,6 +5054,10 @@ button {
|
|
|
5043
5054
|
background-size: var(--rlc-divider-size, var(--rls-sizing-x4));
|
|
5044
5055
|
background-repeat: repeat-x;
|
|
5045
5056
|
}
|
|
5057
|
+
:root {
|
|
5058
|
+
--rls-html-max-width: 100%;
|
|
5059
|
+
--rls-html-max-height: 100%;
|
|
5060
|
+
}
|
|
5046
5061
|
.rls-aspect-ratio {
|
|
5047
5062
|
--rls-app-font-size-1360: 2.5px;
|
|
5048
5063
|
--rls-app-font-size-1820: 2.925px;
|