This commit is contained in:
CortexCore
2024-11-03 16:38:17 +08:00
parent 056e2cada5
commit 4ba741408d
4693 changed files with 2445 additions and 5443 deletions

View File

@@ -1,23 +1,12 @@
.Console {
.console {
background-color: rgb(113, 113, 113);
}
.Console-ScrollView {
.console-container {
background-color: rgb(87, 87, 87);
}
.Console-TextField {
margin-left: -2px;
margin-right: 0;
margin-top: 8px;
margin-bottom: 8px;
padding-left: 0;
padding-right: 0;
padding-top: 0;
padding-bottom: 0;
}
.unity-text-field__input {
.console .unity-base-field__input {
background-color: rgb(87, 87, 87);
color: rgba(221, 221, 221, 0.94);
-unity-font-style: normal;
@@ -28,47 +17,49 @@
border-bottom-width: 0;
}
ListView {
background-color: rgb(87, 87, 87);
color: rgba(233, 233, 233, 0.63);
-unity-background-image-tint-color: rgba(233, 233, 233, 0.63);
}
.unity-base-dropdown__container-outer .unity-scroll-view {
background-color: rgb(120, 120, 120);
}
.unity-text-field__input:hover {
border-left-width: 0;
border-right-width: 0;
border-top-width: 0;
border-bottom-width: 0;
}
#commands-container Button {
.console Button {
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
background-color: rgb(113, 113, 113);
color: rgb(255, 255, 255);
border-top-width: 0;
border-right-width: 0;
border-bottom-width: 0;
border-left-width: 0;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
-unity-text-align: upper-left;
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);
}
#commands-container Button:hover {
.console Button:hover {
color: rgb(32, 32, 32);
background-color: rgb(255, 255, 255);
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;
}
#commands-container Button.selected {
color: rgb(32, 32, 32);
background-color: rgb(255, 255, 255);
.console Button:active {
background-color: rgba(113, 113, 113, 0.58);
}
#TextField TextElement {
color: rgb(255, 255, 255);
.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);
}