-
Notifications
You must be signed in to change notification settings - Fork 869
Expand file tree
/
Copy pathDebugWindow.uss
More file actions
110 lines (88 loc) · 2.46 KB
/
DebugWindow.uss
File metadata and controls
110 lines (88 loc) · 2.46 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
: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 > .unity-foldout__toggle {
border-width: 1px 0px 1px 0px;
margin-top: 0px !important;
margin-bottom: 0px !important;
border-top-color: var(--unity-colors-default-border);
border-bottom-color: var(--unity-colors-inspector_titlebar-border_accent);
background-color: var(--unity-colors-inspector_titlebar-background);
}
.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;
}
.more-options-button {
background-image: var(--unity-icons-pane_options);
background-size: contain;
background-repeat: no-repeat;
background-color: transparent;
border-color: transparent;
width: 16px;
margin: 0px 4px 0px 0px !important;
padding: 0px 0px 0px 0px !important;
}
.more-options-button:hover {
background-color: var(--unity-colors-button-background-hover);
}
.info-button {
background-color: transparent;
border-color: transparent;
width: 24px;
margin: 0px 4px 0px 0px !important;
padding: 0px 0px 0px 0px !important;
}
.info-button:hover {
background-color: var(--unity-colors-button-background-hover);
}