mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
Lots of small fixes and tweaks
This commit is contained in:
parent
0185e8238d
commit
d8e7693d8d
29 changed files with 185 additions and 67 deletions
|
@ -86,6 +86,21 @@ label {
|
|||
margin-bottom: .5rem $i;
|
||||
font-size: 16px $i;
|
||||
}
|
||||
.small-label {
|
||||
display: inline-block $i;
|
||||
margin-bottom: .5rem $i;
|
||||
font-size: 11px $i;
|
||||
}
|
||||
|
||||
.small-checkbox{
|
||||
min-height:0 $i;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.round-checkbox {
|
||||
border-radius:8px;
|
||||
}
|
||||
|
||||
.nav-tabs > li {
|
||||
font-size: 13px;
|
||||
|
@ -369,6 +384,50 @@ $border-radius: 10px;
|
|||
line-height: 13px;
|
||||
}
|
||||
|
||||
.small-checkbox label {
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
padding-left: 25px;
|
||||
margin-right: 15px;
|
||||
font-size: 13px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.small-checkbox label:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin-right: 10px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 1px;
|
||||
border: 2px solid #eee;
|
||||
border-radius: 8px;
|
||||
min-height:0px $i;
|
||||
}
|
||||
|
||||
.small-checkbox input[type=checkbox] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.small-checkbox input[type=checkbox]:checked + label:before {
|
||||
content: "\2713";
|
||||
font-size: 13px;
|
||||
color: #fafafa;
|
||||
text-align: center;
|
||||
line-height: 13px;
|
||||
}
|
||||
|
||||
.small-checkbox label {
|
||||
min-height: 0 $i;
|
||||
padding-left: 20px;
|
||||
margin-bottom: 0;
|
||||
font-weight: normal;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.input-group-sm {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue