From 0906ad56e595cdd0f30984a6766fe5d0ccf7c7e5 Mon Sep 17 00:00:00 2001 From: Stephen Cameron Date: Thu, 29 Nov 2018 11:13:27 +0100 Subject: [PATCH] WIP #817 @2 --- style/print.less | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/style/print.less b/style/print.less index a04e6658..8744447a 100644 --- a/style/print.less +++ b/style/print.less @@ -42,7 +42,6 @@ height: 125px; background-color: @menu-button-background; opacity: 0.25; - z-index: 2; } .bookmark-thumbnails { @@ -87,12 +86,12 @@ // Unchecked styling input[type=radio] + label:before { content: ''; - border: 0.35em solid @menu-button-background; + //border: 0.35em solid @menu-button-background; background-color: @menu-button-background; display: inline-block; box-sizing: border-box; - width: 1.4em; - height: 1.4em; + width: 22px; + height: 22px; margin-right: 0.5em; margin-top: -0.1em; vertical-align: middle; @@ -103,12 +102,23 @@ } // Checked styling - input[type=radio]:checked + label:before { + input[type=radio]:checked + label:after { + content: ''; background-color: #fff; // Color of dot inside radio input + display: block; + box-sizing: border-box; + width: 12px; + height: 12px; + cursor: pointer; + border-radius: 100%; + position: absolute; + left: 5px; + top: 6px; } label { cursor: pointer; + position: relative; } } -- 2.39.5