Signed-off-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
Adam Warner
2020-06-02 16:40:12 +01:00
parent a4a678b584
commit b75ebb1cab
3 changed files with 11 additions and 10 deletions
+3 -3
View File
@@ -129,11 +129,11 @@ function testCookies() {
function initCheckboxRadioStyle() {
function getCheckboxURL(style) {
var extra = style.startsWith("material-") ? "material" : "bootstrap";
return "style/vendor/icheck-" + extra + ".min.css"
return "style/vendor/icheck-" + extra + ".min.css";
}
function applyCheckboxRadioStyle(style) {
boxsheet.attr('href', getCheckboxURL(style));
boxsheet.attr("href", getCheckboxURL(style));
var sel = $("input[type='radio'],input[type='checkbox']");
sel.parent().removeClass();
sel.parent().addClass("icheck-" + style);
@@ -146,7 +146,7 @@ function initCheckboxRadioStyle() {
}
var boxsheet = $('<link href="' + getCheckboxURL(chkboxStyle) + '" rel="stylesheet" />');
boxsheet.appendTo('head');
boxsheet.appendTo("head");
applyCheckboxRadioStyle(chkboxStyle);
+4 -4
View File
@@ -296,7 +296,7 @@
}
.form-inline .form-control {
display: inline-block;
width: 100%;
vertical-align: middle;
}
display: inline-block;
width: 100%;
vertical-align: middle;
}
+4 -3
View File
@@ -517,12 +517,13 @@ fieldset[disabled] .form-control {
background-color: rgba(53, 60, 66, 0.733);
border-radius: 3px;
}
.box .overlay > .fa, .overlay-wrapper .overlay > .fa,
.box .overlay > .fa,
.overlay-wrapper .overlay > .fa,
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
color: #bec5cb !important;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
background-color: #353c42bb;
padding: 10px;
background-color: #353c42bb;
padding: 10px;
}