mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-22 23:46:55 +01:00
* Time to become our TGUI God. * Visually sprucing the copyrights. These shouldn't be ignored :) * babababa * https://github.com/tgstation/tgstation/pull/50422 * dooootdooot * Holy fuck Updates the tools folder Updates our build tooling Updates TGUI MASSIVELY I'm going to go scream in a hole now * ?? * Was it this dum thing? * orrrr * It's this isn't it * Did it manually * hubah * TGUI Changelog * oops * What if I use the original? * Lets try this again * Shit commenting out for now * asdasd * Fuck it use the old one and remember to replace later * Updates yarn.lock * Lets try something horrid * Nope it HATES THAT * fucc * The great eslinting * HOLY SHIT * Final? * ? * asd tgstation/tgstation/pull/59914 tgstation/tgstation/pull/66317 * Improved Asset handling. * Oops * Subsystem stuff * Recompiles the Changelong again. * Finally Fixed Communicators * Compiled Changelogs... AGAIN
79 lines
1.2 KiB
CSS
79 lines
1.2 KiB
CSS
.inputlabel {
|
|
position: relative;
|
|
display: inline;
|
|
cursor: pointer;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.inputlabel input {
|
|
position: absolute;
|
|
z-index: -1;
|
|
opacity: 0;
|
|
}
|
|
|
|
.radio .inputbox {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.inputlabel:hover input ~ .inputbox {
|
|
background: #b4b4b4;
|
|
}
|
|
|
|
.inputlabel input:checked ~ .inputbox {
|
|
background: #2196F3;
|
|
}
|
|
|
|
.inputlabel:hover input:not([disabled]):checked ~ .inputbox{
|
|
background: #0a6ebd;
|
|
}
|
|
|
|
.inputlabel input:disabled ~ .inputbox {
|
|
pointer-events: none;
|
|
background: #838383;
|
|
}
|
|
|
|
.banned {
|
|
background: #ff4e4e;
|
|
}
|
|
|
|
.inputlabel:hover input ~ .banned {
|
|
background: #ff0000;
|
|
}
|
|
|
|
.inputlabel input:checked ~ .banned {
|
|
background: #a80000;
|
|
}
|
|
|
|
.inputlabel:hover input:not([disabled]):checked ~ .banned{
|
|
background: #810000;
|
|
}
|
|
|
|
.inputbox:after {
|
|
position: absolute;
|
|
display: none;
|
|
content: '';
|
|
}
|
|
|
|
.inputlabel input:checked ~ .inputbox:after {
|
|
display: block;
|
|
}
|
|
|
|
.checkbox .inputbox:after {
|
|
top: 1px;
|
|
left: 5px;
|
|
width: 3px;
|
|
height: 9px;
|
|
transform: rotate(45deg);
|
|
border: solid #fff;
|
|
border-width: 0 2px 2px 0;
|
|
}
|
|
|
|
.radio .inputbox:after {
|
|
top: 4px;
|
|
left: 4px;
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: #fff;
|
|
}
|