diff options
author | Simon Rettberg | 2017-08-16 18:20:25 +0200 |
---|---|---|
committer | Simon Rettberg | 2017-08-16 18:20:25 +0200 |
commit | 71803d3e3714922c7fe23af6081ef85ca5308652 (patch) | |
tree | b6879d398c390d6a61dce968acd642bf3a93cd68 /style | |
parent | [runmode] Add isclient property per client, implement overview page (diff) | |
download | slx-admin-71803d3e3714922c7fe23af6081ef85ca5308652.tar.gz slx-admin-71803d3e3714922c7fe23af6081ef85ca5308652.tar.xz slx-admin-71803d3e3714922c7fe23af6081ef85ca5308652.zip |
Fix checkbox style
Diffstat (limited to 'style')
-rw-r--r-- | style/default.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/style/default.css b/style/default.css index 81d40458..6566e7c3 100644 --- a/style/default.css +++ b/style/default.css @@ -493,6 +493,7 @@ it only applies if they're in a container that has the checkbox class */ padding-left: 5px; } .checkbox label::before { + top: 1px; content: ""; display: inline-block; position: absolute; @@ -513,7 +514,7 @@ it only applies if they're in a container that has the checkbox class */ width: 16px; height: 16px; left: 0; - top: 0; + top: 1px; margin-left: -20px; padding-left: 3px; padding-top: 1px; @@ -524,7 +525,9 @@ it only applies if they're in a container that has the checkbox class */ .checkbox input[type="radio"] { opacity: 0; z-index: 1; - top: -6px; + top: -3px; + width: 17px; + height: 17px; } |