import scaffoldings

This commit is contained in:
Gani Georgiev
2022-08-05 06:00:38 +03:00
parent 95f9d685dc
commit f459dd8812
25 changed files with 1362 additions and 261 deletions
+8 -2
View File
@@ -94,14 +94,14 @@
}
}
// toast alerts
.toasts-wrapper {
position: fixed;
z-index: 999999;
bottom: 0;
left: 0;
right: 0;
padding: 0 var(--smSpacing);
width: 100%;
width: auto;
display: block;
text-align: center;
pointer-events: none;
@@ -112,4 +112,10 @@
margin: var(--baseSpacing) auto;
@include shadowize();
}
.app-sidebar ~ .app-body & {
left: var(--appSidebarWidth);
}
.app-sidebar ~ .app-body .page-sidebar ~ & {
left: calc(var(--appSidebarWidth) + var(--pageSidebarWidth));
}
}
+10
View File
@@ -63,6 +63,16 @@ em {
font-style: italic;
}
ins {
background: var(--successAltColor);
text-decoration: none;
}
del {
background: var(--dangerAltColor);
text-decoration: none;
}
strong {
font-weight: 600;
}
+4 -3
View File
@@ -53,6 +53,7 @@ button {
height: 100%;
pointer-events: none;
user-select: none;
backface-visibility: hidden;
background: var(--primaryColor);
transition: filter var(--baseAnimationSpeed),
opacity var(--baseAnimationSpeed),
@@ -483,13 +484,13 @@ select {
line-height: var(--smLineHeight);
color: var(--txtHintColor);
}
.help-block-error {
color: var(--dangerColor);
}
// states
&.error,
&.invalid {
.help-block-error {
color: var(--dangerColor);
}
> label {
color: var(--dangerColor);
}