height: 125px;
background-color: @menu-button-background;
opacity: 0.25;
- z-index: 2;
}
.bookmark-thumbnails {
// 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;
}
// 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;
}
}