Update to Deathwatch, the 2nd

This commit is contained in:
CoalPoweredPuppet
2015-09-01 11:48:51 -04:00
parent 4088de5b3d
commit 50f77f593c
+56
View File
@@ -490,6 +490,62 @@ padding-right: 1%;
.sheet-mainright {
width:39%;
float:right;
}
/* Radio buttons that look like checkboxes */
/* Hide actual radio/checkbox */
input.sheet-checkradio[type="radio"]
{
opacity: 0;
width: 16px;
height: 16px;
position: relative;
top: 5px;
left: 6px;
margin: -10px;
cursor: pointer;
z-index: 1;
}
/* Fake radio/checkbox */
input.sheet-checkradio[type="radio"] + span::before
{
margin-right: 0px;
margin-left: 4px;
border: solid 1px #a6a6a6;
line-height: 10px;
text-align: center;
display: inline-block;
vertical-align: middle;
-moz-box-shadow: 0 0 2px #ccc;
-webkit-box-shadow: 0 0 2px #ccc;
box-shadow: 0 0 2px #ccc;
background: #f6f6f6;
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
background: radial-gradient(#f6f6f6, #dfdfdf);
}
/* Fake radio */
input.sheet-checkradio[type="radio"] + span::before
{
content: "";
width: 10px;
height: 10px;
font-size: 10px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
input.sheet-checkradio[type="radio"]:checked + span::before
{
content: "✓";
color: white;
background:black;
}
/*----- tabs -----*/