mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 03:08:41 +00:00
label icon alignment
This commit is contained in:
parent
afca381d01
commit
2b67caf151
|
|
@ -54,6 +54,12 @@ div.sticky, section.sticky {
|
||||||
label {
|
label {
|
||||||
font-size: .9rem;
|
font-size: .9rem;
|
||||||
flex: 0 0 100%;
|
flex: 0 0 100%;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
&> i {
|
||||||
|
margin-right: .5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span.checkbox+span.checkbox {
|
span.checkbox+span.checkbox {
|
||||||
|
|
|
||||||
15
styles.css
15
styles.css
|
|
@ -1953,7 +1953,11 @@ div.sticky, section.sticky {
|
||||||
margin-top: .75rem; }
|
margin-top: .75rem; }
|
||||||
.form-group label {
|
.form-group label {
|
||||||
font-size: .9rem;
|
font-size: .9rem;
|
||||||
flex: 0 0 100%; }
|
flex: 0 0 100%;
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center; }
|
||||||
|
.form-group label > i {
|
||||||
|
margin-right: .5rem; }
|
||||||
.form-group span.checkbox + span.checkbox {
|
.form-group span.checkbox + span.checkbox {
|
||||||
margin-left: 1.5rem; }
|
margin-left: 1.5rem; }
|
||||||
.form-group .input-control {
|
.form-group .input-control {
|
||||||
|
|
@ -3610,6 +3614,8 @@ table.default {
|
||||||
table.default td {
|
table.default td {
|
||||||
padding: 3px 10px 3px 10px;
|
padding: 3px 10px 3px 10px;
|
||||||
white-space: nowrap; }
|
white-space: nowrap; }
|
||||||
|
table.default tbody td, table.default tbody th {
|
||||||
|
border-bottom: 1px solid #ebedf2; }
|
||||||
table.default tbody tr {
|
table.default tbody tr {
|
||||||
height: 2.5rem; }
|
height: 2.5rem; }
|
||||||
table.default tbody tr:nth-of-type(2n) {
|
table.default tbody tr:nth-of-type(2n) {
|
||||||
|
|
@ -3618,8 +3624,6 @@ table.default {
|
||||||
background: var(--table-row-background-alt); }
|
background: var(--table-row-background-alt); }
|
||||||
table.default tbody tr:hover td, table.default tbody tr:focus td {
|
table.default tbody tr:hover td, table.default tbody tr:focus td {
|
||||||
background: var(--table-row-background-hover); }
|
background: var(--table-row-background-hover); }
|
||||||
table.default tbody tr td, table.default tbody tr th {
|
|
||||||
border-bottom: 1px solid #ebedf2; }
|
|
||||||
table.default tbody tr:last-child td, table.default tbody tr:last-child th {
|
table.default tbody tr:last-child td, table.default tbody tr:last-child th {
|
||||||
border: none; }
|
border: none; }
|
||||||
table.default tbody tr:focus, table.default tbody tr:hover {
|
table.default tbody tr:focus, table.default tbody tr:hover {
|
||||||
|
|
@ -3628,6 +3632,11 @@ table.default {
|
||||||
box-shadow: 0 0 5px var(--box-border); }
|
box-shadow: 0 0 5px var(--box-border); }
|
||||||
table.default tbody th {
|
table.default tbody th {
|
||||||
background: var(--table-head-background); }
|
background: var(--table-head-background); }
|
||||||
|
table.default tbody a {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center; }
|
||||||
|
table.default tbody a i {
|
||||||
|
margin-right: .5rem; }
|
||||||
table.default thead {
|
table.default thead {
|
||||||
background: var(--table-head-background); }
|
background: var(--table-head-background); }
|
||||||
table.default thead tr {
|
table.default thead tr {
|
||||||
|
|
|
||||||
17
table.scss
17
table.scss
|
|
@ -78,6 +78,10 @@ table {
|
||||||
}
|
}
|
||||||
|
|
||||||
tbody {
|
tbody {
|
||||||
|
td, th {
|
||||||
|
border-bottom: 1px solid #ebedf2;
|
||||||
|
}
|
||||||
|
|
||||||
tr {
|
tr {
|
||||||
height: 2.5rem;
|
height: 2.5rem;
|
||||||
|
|
||||||
|
|
@ -93,10 +97,6 @@ table {
|
||||||
background: var(--table-row-background-hover);
|
background: var(--table-row-background-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
td, th {
|
|
||||||
border-bottom: 1px solid #ebedf2;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:last-child td, &:last-child th {
|
&:last-child td, &:last-child th {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
@ -111,6 +111,15 @@ table {
|
||||||
th {
|
th {
|
||||||
background: var(--table-head-background);
|
background: var(--table-head-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
i {
|
||||||
|
margin-right: .5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user