@rolster/styles-foundations 2.5.30 → 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 +21 -30
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +2 -2
- package/dist/styles.rtl.css +21 -30
- package/dist/styles.rtl.min.css +2 -2
- package/package.json +1 -1
- package/scss/components/app.scss +16 -33
- package/scss/styles.scss +7 -2
package/dist/styles.rtl.css
CHANGED
|
@@ -4289,13 +4289,13 @@ button {
|
|
|
4289
4289
|
}
|
|
4290
4290
|
.rls-app__body {
|
|
4291
4291
|
--pvt-navbar-width: var(--rlc-app-navbar-width, 160rem);
|
|
4292
|
-
--pvt-navbar-
|
|
4292
|
+
--pvt-navbar-width-condense: 36rem;
|
|
4293
4293
|
display: flex;
|
|
4294
4294
|
flex-direction: column;
|
|
4295
4295
|
padding: 0rem;
|
|
4296
4296
|
margin: 0rem;
|
|
4297
|
-
width:
|
|
4298
|
-
height:
|
|
4297
|
+
width: var(--rls-html-max-width);
|
|
4298
|
+
height: var(--rls-html-max-height);
|
|
4299
4299
|
overflow: hidden;
|
|
4300
4300
|
z-index: var(--rls-z-index-8);
|
|
4301
4301
|
}
|
|
@@ -4303,7 +4303,7 @@ button {
|
|
|
4303
4303
|
--rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-width) / 2));
|
|
4304
4304
|
}
|
|
4305
4305
|
.rls-app__body--navbar-condense {
|
|
4306
|
-
--pvt-navbar-width:
|
|
4306
|
+
--pvt-navbar-width: var(--pvt-navbar-width-condense);
|
|
4307
4307
|
}
|
|
4308
4308
|
.rls-app__header {
|
|
4309
4309
|
--rlc-toolbar-height: 100%;
|
|
@@ -4317,12 +4317,12 @@ button {
|
|
|
4317
4317
|
}
|
|
4318
4318
|
.rls-app__header + .rls-app__page,
|
|
4319
4319
|
.rls-app__header + .rls-app__content {
|
|
4320
|
-
height: calc(
|
|
4320
|
+
height: calc(var(--rls-html-max-height) - var(--pvt-header-height));
|
|
4321
4321
|
}
|
|
4322
4322
|
.rls-app__content {
|
|
4323
4323
|
position: relative;
|
|
4324
4324
|
width: 100%;
|
|
4325
|
-
height:
|
|
4325
|
+
height: var(--rls-html-max-height);
|
|
4326
4326
|
margin: 0rem;
|
|
4327
4327
|
padding: 0rem;
|
|
4328
4328
|
overflow: auto;
|
|
@@ -4333,7 +4333,7 @@ button {
|
|
|
4333
4333
|
position: relative;
|
|
4334
4334
|
display: flex;
|
|
4335
4335
|
width: 100%;
|
|
4336
|
-
height:
|
|
4336
|
+
height: var(--rls-html-max-height);
|
|
4337
4337
|
margin: 0rem;
|
|
4338
4338
|
padding: 0rem;
|
|
4339
4339
|
overflow: hidden;
|
|
@@ -4345,22 +4345,12 @@ button {
|
|
|
4345
4345
|
height: 100%;
|
|
4346
4346
|
margin: 0rem;
|
|
4347
4347
|
padding: 0rem;
|
|
4348
|
-
transition: width
|
|
4348
|
+
transition: width 280ms var(--rls-acceleration-curve);
|
|
4349
4349
|
}
|
|
4350
4350
|
.rls-app__page__nav + .rls-app__page__content {
|
|
4351
4351
|
--rlc-snackbar-left: calc(50% + calc(var(--pvt-navbar-width) / 2));
|
|
4352
4352
|
width: calc(100% - var(--pvt-navbar-width));
|
|
4353
4353
|
}
|
|
4354
|
-
.rls-app__page__nav__content {
|
|
4355
|
-
position: relative;
|
|
4356
|
-
width: 100%;
|
|
4357
|
-
height: 100%;
|
|
4358
|
-
background: var(--rlc-app-navbar-background, var(--rls-app-color-100));
|
|
4359
|
-
border-radius: 0rem 0rem 0rem var(--rls-sizing-x16);
|
|
4360
|
-
overflow-x: hidden;
|
|
4361
|
-
overflow-y: auto;
|
|
4362
|
-
box-sizing: border-box;
|
|
4363
|
-
}
|
|
4364
4354
|
.rls-app__page__content {
|
|
4365
4355
|
display: flex;
|
|
4366
4356
|
flex-direction: column;
|
|
@@ -4372,22 +4362,19 @@ button {
|
|
|
4372
4362
|
box-sizing: border-box;
|
|
4373
4363
|
transition: width 240ms var(--rls-acceleration-curve);
|
|
4374
4364
|
}
|
|
4375
|
-
@media screen and (max-width:
|
|
4365
|
+
@media screen and (max-width: 640px) {
|
|
4376
4366
|
.rls-app__body {
|
|
4377
|
-
--pvt-navbar-width:
|
|
4378
|
-
--pvt-navbar-
|
|
4379
|
-
|
|
4380
|
-
.rls-app__body--snackbar {
|
|
4381
|
-
--rlc-snackbar-left: 50%;
|
|
4367
|
+
--pvt-navbar-width: 140rem;
|
|
4368
|
+
--pvt-navbar-width-condense: 140rem;
|
|
4369
|
+
--pvt-section-navbar: 0rem;
|
|
4382
4370
|
}
|
|
4383
4371
|
.rls-app__body--navbar-condense {
|
|
4384
|
-
--pvt-navbar
|
|
4385
|
-
--pvt-navbar-left: 0%;
|
|
4372
|
+
--pvt-section-navbar: 140rem;
|
|
4386
4373
|
}
|
|
4387
|
-
.rls-
|
|
4388
|
-
|
|
4389
|
-
right: var(--pvt-navbar-
|
|
4390
|
-
transition: right
|
|
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);
|
|
4391
4378
|
}
|
|
4392
4379
|
}
|
|
4393
4380
|
.rls-datatable {
|
|
@@ -5067,6 +5054,10 @@ button {
|
|
|
5067
5054
|
background-size: var(--rlc-divider-size, var(--rls-sizing-x4));
|
|
5068
5055
|
background-repeat: repeat-x;
|
|
5069
5056
|
}
|
|
5057
|
+
:root {
|
|
5058
|
+
--rls-html-max-width: 100%;
|
|
5059
|
+
--rls-html-max-height: 100%;
|
|
5060
|
+
}
|
|
5070
5061
|
.rls-aspect-ratio {
|
|
5071
5062
|
--rls-app-font-size-1360: 2.5px;
|
|
5072
5063
|
--rls-app-font-size-1820: 2.925px;
|