Files
ZandarioandGitHub ed27a01b58 Massive backend updoot: Juke Build, TGUI upgrades, Soft Ping, and too much to list! (#3990)
* 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
2022-05-09 18:02:09 -07:00

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;
}