-
Notifications
You must be signed in to change notification settings - Fork 877
Expand file tree
/
Copy pathDebugWindow.uss
More file actions
143 lines (115 loc) · 3.13 KB
/
Copy pathDebugWindow.uss
File metadata and controls
143 lines (115 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
:root {
}
.top-toolbar {
height: 22px;
}
#debug-window-tab-panel {
align-items: stretch;
min-width: 120px;
}
.debug-window-tab-item {
padding-bottom: 4px;
padding-left: 15px;
padding-top: 2px;
}
/* Main Tab Panel Content */
#debug-window-tab-container {
min-width: 300px;
align-items: stretch;
flex-wrap: nowrap;
flex-grow: 1;
}
.debug-window-tab-content {
padding-right: 5px;
margin-left: 0px;
margin-right: 0px;
}
/* Align content of the foldouts with the text */
.debug-window-foldout>.unity-foldout__content {
margin: 0px 4px 8px 6px;
}
.selected {
background-color: var(--unity-colors-highlight-background-inactive);
}
.selected:focus {
background-color: var(--unity-colors-highlight-background);
}
.debug-window-colorfield.debug-window-table-cell {
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
}
.debug-window-messagebox {
margin: 1px 0px;
}
/* Compensate from editor stylesheet, Z-input no margin-right, Vector4 needs no margin-right and add the lost margin-left*/
#unity-w-input.unity-composite-field__field {
margin-right: 0px;
margin-left: 4px;
}
/* Header Foldout */
.debug-window-foldout-header > .unity-foldout__toggle {
padding-top: 1px !important;
padding-bottom: 1px !important;
margin-top: 0px !important;
margin-bottom: 0px !important;
margin-left: -2px;
margin-right: -4px;
border-top-width: 1px;
border-top-color: var(--unity-colors-default-border);
border-bottom-width: 1px;
border-bottom-color: var(--unity-colors-default-border);
background-color: var(--unity-colors-inspector_titlebar-background);
}
.debug-window-foldout-header > .unity-foldout__toggle:hover {
background-color: var(--unity-colors-inspector_titlebar-background-hover);
}
.debug-window-foldout-header > .unity-foldout__toggle > .unity-toggle__input > .unity-toggle__checkmark
{
margin-left: 4px;
margin-right: 4px;
}
.debug-window-foldout-header .unity-foldout__text {
-unity-font-style: bold;
}
.debug-window-foldout > .unity-foldout__toggle {
padding-top: 1px !important;
padding-bottom: 1px !important;
margin-top: 0px !important;
margin-bottom: 0px !important;
}
.debug-window-foldout > .unity-foldout__toggle:hover {
background-color: var(--unity-colors-inspector_titlebar-background-hover);
}
.debug-window-foldout > .unity-foldout__toggle > .unity-toggle__input > .unity-toggle__checkmark
{
margin-left: 4px;
margin-right: 4px;
}
.debug-window-foldout .unity-foldout__text {
-unity-font-style: bold;
}
.more-options-button {
background-image: var(--unity-icons-pane_options);
}
.info-button,
.more-options-button {
background-color: transparent;
margin: 2px 2px 1px 3px;
padding: 0px 2px 0px 0px;
border-width: 0px;
border-radius: 2px 2px 2px 2px;
width: 20px;
height: 20px;
}
.info-button:hover,
.more-options-button:hover{
background-color: var(--unity-colors-button-background-hover);
}
.info-button:disabled
.info-button:disabled,
.more-options-button:disabled {
}
#debug-window-no-results-label {
display: none;
-unity-text-align: middle-center;
}