mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 03:08:41 +00:00
continue implementations
This commit is contained in:
parent
0f581090fd
commit
5496ee39f0
|
|
@ -452,7 +452,7 @@ input[type="range"] {
|
||||||
|
|
||||||
button {
|
button {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: inline-block;
|
// display: inline-block; If I add this, icons in a button are no longer centered
|
||||||
background: var(--button-colored-background);
|
background: var(--button-colored-background);
|
||||||
height: 30px;
|
height: 30px;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
|
|
||||||
23
layout.scss
23
layout.scss
|
|
@ -10,7 +10,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.ipt-second {
|
.ipt-second {
|
||||||
padding-left: 5px;
|
padding-left: .75rem;
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
@ -20,13 +20,22 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
||||||
div {
|
& + * {
|
||||||
|
margin-top: .75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
> div {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
|
||||||
&:nth-child(n+1) {
|
&:nth-child(n+2) {
|
||||||
padding-left: 5px;
|
padding-left: .75rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> div.fixed {
|
||||||
|
flex: 0;
|
||||||
|
flex-basis: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
div.sticky, section.sticky {
|
div.sticky, section.sticky {
|
||||||
|
|
@ -82,12 +91,8 @@ div.sticky, section.sticky {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
* + .form-group {
|
|
||||||
margin-top: .75rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.form-group {
|
.form-group, .flex-line {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
19
styles.css
19
styles.css
|
|
@ -1936,17 +1936,22 @@ article {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
vertical-align: inherit; }
|
vertical-align: inherit; }
|
||||||
.ipt-wrap .ipt-second {
|
.ipt-wrap .ipt-second {
|
||||||
padding-left: 5px;
|
padding-left: .75rem;
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
vertical-align: inherit; }
|
vertical-align: inherit; }
|
||||||
|
|
||||||
.flex-line {
|
.flex-line {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row; }
|
flex-direction: row; }
|
||||||
.flex-line div {
|
.flex-line + * {
|
||||||
|
margin-top: .75rem; }
|
||||||
|
.flex-line > div {
|
||||||
flex: 1; }
|
flex: 1; }
|
||||||
.flex-line div:nth-child(n+1) {
|
.flex-line > div:nth-child(n+2) {
|
||||||
padding-left: 5px; }
|
padding-left: .75rem; }
|
||||||
|
.flex-line > div.fixed {
|
||||||
|
flex: 0;
|
||||||
|
flex-basis: auto; }
|
||||||
|
|
||||||
div.sticky, section.sticky {
|
div.sticky, section.sticky {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
|
|
@ -1982,11 +1987,8 @@ div.sticky, section.sticky {
|
||||||
.form-group textarea, .form-group .contenteditable {
|
.form-group textarea, .form-group .contenteditable {
|
||||||
height: 8rem; }
|
height: 8rem; }
|
||||||
|
|
||||||
* + .form-group {
|
|
||||||
margin-top: .75rem; }
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
.form-group {
|
.form-group, .flex-line {
|
||||||
flex-direction: column; } }
|
flex-direction: column; } }
|
||||||
.wf-100 {
|
.wf-100 {
|
||||||
width: 100%; }
|
width: 100%; }
|
||||||
|
|
@ -2663,7 +2665,6 @@ input[type="range"] {
|
||||||
flex-wrap: nowrap; }
|
flex-wrap: nowrap; }
|
||||||
.input button {
|
.input button {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: inline-block;
|
|
||||||
background: var(--button-colored-background);
|
background: var(--button-colored-background);
|
||||||
height: 30px;
|
height: 30px;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user