-
Notifications
You must be signed in to change notification settings - Fork 28
/
DiagnosticsNewStyle.css
180 lines (152 loc) · 2.69 KB
/
DiagnosticsNewStyle.css
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
.Automate {
text-align: center;
margin: 0.2em 0em;
}
.Automate table {
text-align: left;
margin-left: auto;
margin-right: auto;
table-layout: fixed;
}
.Automate .Header {
cursor: auto;
user-select: auto;
}
.HiddenButton {
display: none;
}
.success,
.failed {
font-weight: bold !important;
font-size: 1em;
/* 2023.01.16 -- Joe McCall | Improving readability */
padding-right: 0.3em;
}
.success {
color: green !important;
}
.failed {
color: red !important;
}
.TabAutomate {
background-image: url('Automate.png');
}
#diagnosticButton {
width: 100%;
z-index: 5;
}
/*a.GetInfo.Automate.HasText {
display: inline-block;
width: 13em;
text-decoration: inherit;
color: #FFF !important;
border-radius: 0.2em;
padding: 0.4em 0.5em;
font-size: 1.0em;
font-weight: 500;
text-align: left;
background-color: #026CCF;
}*/
#dataTableHeader,
#dataTableData {
border: 0px;
padding: 0.2em;
font-size: 1.0em;
word-wrap: break-word
}
#diagButtonContainer {
text-align: left;
margin-top: 0 !important;
}
#lastUpdateContainer {
display: inline-block;
font-size: 0.9em;
}
#dataTable {
top: 10%;
width: 95%;
}
#repairOptions,
#dataContainer,
#diagTopContainer,
#detailsPanel {
display: inline-block;
text-align: left;
width: 95%;
margin-top: 0 !important;
}
#lterrors {
display: inline-block;
text-align: left;
height: 100%;
width: 95%;
height: 100%;
}
#lterrors_file {
/*
2023.01.16 -- Joe McCall | Improving readability
- log file now stands out distinctly from the rest of the tab
- text no longer wraps and instead users scrollbars.
*/
font-size: 0.9em;
background-color: #252525;
color: #FFFFFF;
overflow: auto;
padding: 0.5em 0em 0em 0.5em;
height: 36em;
resize: both;
}
/* 2023.01.16 -- Joe McCall | To allow the Repair/Reinstall buttons to sit in-line. */
.DiagActions {
display: inline-block;
width: 13em;
}
#restartOption,
#diagButtonContainer {
margin-right: 1em;
}
#reinstallOption,
#lastUpdateContainer {
margin: 0em;
}
.DiagActions a:link,
.DiagActions a:visited {
display: block;
text-decoration: inherit;
color: #FFF !important;
border-radius: 6px;
padding: 0.4em 0.5em;
font-size: 1.0em;
font-weight: 500;
text-align: center;
width: auto;
background-color: #026CCF;
}
/* 2023.01.16 -- Joe McCall | Quality of life. */
.Automate a:hover {
background-color: #014e95 !important;
}
/* 2023.01.16 -- Joe McCall | Reduce wasted space */
#tableDetails,
#dataContainer {
margin: 0em 0em 0.2em 0em !important;
}
.Automate th {
width: 11.5em;
}
.Automate td {
white-space: nowrap;
}
.Automate div,
.Automate p,
.Automate h1,
.Automate h2,
.Automate h3,
.Automate h4,
.Automate hr,
.Automate dt,
.Automate dd,
.Automate table
.Automate pre {
margin: 0.2em 0em;
}