Files
MuHua-Core/Packages/UIControl/Assets/USS/Toggle.uss
T
2024-11-15 18:28:21 +08:00

35 lines
840 B
Plaintext

.toggle {
flex-direction: row;
overflow: hidden;
}
.toggle-checkmark {
width: 24px;
height: 24px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-left-color: rgb(100, 100, 100);
border-right-color: rgb(100, 100, 100);
border-top-color: rgb(100, 100, 100);
border-bottom-color: rgb(100, 100, 100);
background-color: rgb(255, 255, 255);
-unity-background-image-tint-color: rgb(65, 65, 65);
margin-top: 3px;
margin-right: 3px;
margin-bottom: 3px;
margin-left: 3px;
}
.toggle-checkmark:hover {
border-left-color: rgb(0, 0, 0);
border-right-color: rgb(0, 0, 0);
border-top-color: rgb(0, 0, 0);
border-bottom-color: rgb(0, 0, 0);
}
.toggle-checkmark-a {
background-color: rgb(147, 147, 147);
}