Lots of small fixes and tweaks

This commit is contained in:
Jamie.Rees 2016-12-02 14:51:14 +00:00
commit d8e7693d8d
29 changed files with 185 additions and 67 deletions

View file

@ -56,6 +56,17 @@ label {
margin-bottom: 0.5rem !important;
font-size: 16px !important; }
.small-label {
display: inline-block !important;
margin-bottom: 0.5rem !important;
font-size: 11px !important; }
.small-checkbox {
min-height: 0 !important; }
.round-checkbox {
border-radius: 8px; }
.nav-tabs > li {
font-size: 13px;
line-height: 21px; }
@ -294,6 +305,45 @@ label {
text-align: center;
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 !important; }
.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 !important;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer; }
.input-group-sm {
padding-top: 2px;
padding-bottom: 2px; }