BITKit/Src/Unity/UX/BITConsole.uss

66 lines
1.7 KiB
Plaintext
Raw Normal View History

2024-11-03 16:38:17 +08:00
.console {
2023-06-05 19:57:17 +08:00
background-color: rgb(113, 113, 113);
}
2024-11-03 16:38:17 +08:00
.console-container {
2023-06-05 19:57:17 +08:00
background-color: rgb(87, 87, 87);
}
2024-11-03 16:38:17 +08:00
.console .unity-base-field__input {
2023-06-05 19:57:17 +08:00
background-color: rgb(87, 87, 87);
color: rgba(221, 221, 221, 0.94);
-unity-font-style: normal;
font-size: 16px;
border-left-width: 0;
border-right-width: 0;
border-top-width: 0;
border-bottom-width: 0;
}
2024-11-03 16:38:17 +08:00
.console Button {
2024-03-31 23:31:00 +08:00
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
color: rgb(255, 255, 255);
2024-11-03 16:38:17 +08:00
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
2024-03-31 23:31:00 +08:00
-unity-text-align: upper-left;
2024-11-03 16:38:17 +08:00
background-color: rgb(87, 87, 87);
border-left-color: rgba(0, 0, 0, 0);
border-right-color: rgba(0, 0, 0, 0);
border-top-color: rgba(0, 0, 0, 0);
border-bottom-color: rgba(0, 0, 0, 0);
2023-06-05 19:57:17 +08:00
}
2024-11-03 16:38:17 +08:00
.console Button:hover {
2023-11-15 23:55:06 +08:00
color: rgb(32, 32, 32);
2024-11-03 16:38:17 +08:00
background-color: rgb(113, 113, 113);
border-left-color: rgb(87, 87, 87);
border-right-color: rgb(87, 87, 87);
border-top-color: rgb(87, 87, 87);
border-bottom-color: rgb(87, 87, 87);
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
2024-03-31 23:31:00 +08:00
}
2024-11-03 16:38:17 +08:00
.console Button:active {
background-color: rgba(113, 113, 113, 0.58);
2024-03-31 23:31:00 +08:00
}
2024-11-03 16:38:17 +08:00
.console Button:focus {
border-left-color: rgba(113, 113, 113, 0.58);
border-right-color: rgba(113, 113, 113, 0.58);
border-top-color: rgba(113, 113, 113, 0.58);
border-bottom-color: rgba(113, 113, 113, 0.58);
background-color: rgba(113, 113, 113, 0.58);
}
.unity-base-field__input .unity-text-element {
color: rgba(255, 255, 255, 0.78);
2023-06-05 19:57:17 +08:00
}