forked from Manojkh/ConVista-CPI-Helper-Chrome-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontentScript.css
362 lines (301 loc) · 6.25 KB
/
contentScript.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
/* whats new */
#cpiHelper_WhatsNew {
margin: 25px;
}
/* start snackbar */
#cpiHelper_snackbar {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #333;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 500;
left: 50%;
bottom: 30px;
font-size: 17px;
}
#cpiHelper_snackbar.cpiHelper_snackbar_show {
visibility: visible;
-webkit-animation: cpiHelper_fadein 0.5s, cpiHelper_fadeout 0.5s 2.5s;
animation: cpiHelper_fadein 0.5s, cpiHelper_fadeout 0.5s 2.5s;
}
@keyframes cpiHelper_fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes cpiHelper_fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
/* end snackbar */
.cpiHelper table#messageList {
border: 0px;
background: none;
width: initial;
}
.cpiHelper table#messageList td {
padding: 0px;
background: initial;
}
.cpiHelper button
{
cursor: pointer;
border: solid 1px #d2d2d2;
border-radius: 4px;
background: white;
}
.cpiHelper button.cpiHelper_inlineInfo-active {
/* border: solid 1px #be6500; */
background: #009fe3;
color:white;
}
.cpiHelper button:active{
background: #009fe3;
}
.cpiHelper button:focus{
outline:none;
}
.cpiHelper button.cpiHelper_sidebar_iconbutton {
cursor: initial;
border: solid 0px;
background: transparent;
outline:none;
}
#cpiHelper_sidebar_popup
{
position:fixed;
z-index:460;
background:#fbfbfb;
bottom:50px;
right:100px;
width:700px;
min-height: 1rem;
padding: 13px;
border: solid 1px #e1e1e1;
}
#cpiHelper_sidebar_popup.show {
visibility: visible;
animation: cpiHelper_sidebar_popup_fadein 0.5s;
}
#cpiHelper_sidebar_popup.hide_popup {
visibility: hidden;
animation: visibility 0s linear 0.5s, cpiHelper_sidebar_popup_fadeout 0.5s;
}
@keyframes cpiHelper_sidebar_popup_fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 50px; opacity: 1;}
}
@keyframes cpiHelper_sidebar_popup_fadeout {
from {bottom: 50px; opacity: 1;}
to {bottom: 0; opacity: 0; }
}
.cpiHelper #outerFrame {
border: solid 1px #e1e1e1;
padding: 10px;
}
#cpiHelper_content{
position:fixed;
z-index:400;
background:#fbfbfb;
top:100px;
right:0px;
width:200px;
opacity: 0.9;
}
#cpiHelper_contentheader {
padding: 10px;
cursor: move;
z-index: 10;
background-color: #009fe3;
color: #fff;
}
.cpiHelper .contentText {
padding: 5px;
overflow-wrap: break-word;
}
.cpiHelper .flash {
animation-name: cpiHelper_flash;
animation-duration: 2s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-play-state: running;
animation-iteration-count: 1;
}
@keyframes cpiHelper_flash {
from {background: #009fe3;}
to {background: none;}
}
.cpiHelper_infoPopUp_TR_hide {
display: none;
}
#cpiHelper_infoPopUp_content {
margin: 15px;
}
.cpiHelper_infoPopUp_items {
margin-bottom: 10px;
}
/* Modal Content */
.cpiHelper_inlineInfo {
fill:#009fe3 !important;
stroke:#009fe3 !important;
}
.cpiHelper_inlineInfo.cpiHelper_inlineInfo_error {
fill:#ff6b6b !important;
stroke:#ff6b6b !important;
}
#cpiHelper_bigPopup {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 450; /* Sit on top */
width: 100%; /* Full width */
height: 100%; /* Full height */
left: 0;
top: 0;
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
#cpiHelper_bigPopup_outerFrame {
background:#fbfbfb;
margin: auto;
margin-top: 100px;
width: 80%;
min-height: 1rem;
}
#cpiHelper_bigPopup_content {
border: solid 1px #e1e1e1;
}
#cpiHelper_bigPopup_contentheader {
padding: 10px;
z-index: 10;
background-color: #009fe3;
color: #fff;
}
/* The Close Button */
.cpiHelper_closeButton{
float: right;
font-size: 1.2rem;
font-weight: bold;
}
.cpiHelper_closeButton:hover,
.cpiHelper_closeButton:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
/*tabs */
.cpiHelper_tabs {
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
background: #efefef;
box-shadow: 0 48px 80px -32px rgba(0,0,0,0.3);
padding: 15px;
}
.cpiHelper_tabs .cpiHelper_tabs_panel .cpiHelper_tabs
{
padding:0px;
padding-top: 10px;
}
.cpiHelper_tabs_input {
position: absolute;
opacity: 0;
}
.cpiHelper_tabs_label {
width: 5.4em;
width: 100%;
padding: 10px 10px;
background: #e5e5e5;
cursor: pointer;
font-weight: bold;
font-size: 18px;
color: #7f7f7f;
transition: background 0.1s, color 0.1s;
}
.cpiHelper_tabs_label:hover {
background: #d8d8d8;
}
.cpiHelper_tabs_label:active {
background: #ccc;
}
.cpiHelper_tabs_input:focus + .cpiHelper_tabs_label {
z-index: 1;
}
.cpiHelper_tabs_input:checked + .cpiHelper_tabs_label {
background: #fff;
color: #000;
}
@media (min-width: 600px) {
.cpiHelper_tabs_label {
width: 5.4em;
}
}
.cpiHelper_tabs_panel {
display: none;
width: 100%;
background: #fff;
}
@media (min-width: 600px) {
.cpiHelper_tabs_panel {
order: 99;
}
}
.cpiHelper_tabs_input:checked + .cpiHelper_tabs_label + .cpiHelper_tabs_panel {
display: block;
}
.cpiHelper table {
background:#eaebec;
table-layout:fixed;
border:#ccc 0px solid;
width: 100%;
table-layout: auto;
}
.cpiHelper table th {
text-align: left;
padding:2px;
border-top:0px solid #ccc;
border-bottom:0px solid #ccc;
background: #f1f1f1;
}
.cpiHelper table tr {
padding-left:5px;
}
.cpiHelper table td:first-child {
text-align: left;
padding-left:5px;
border-left: 0;
}
.cpiHelper table td {
padding:4px;
border-top: 0px solid #ffffff;
border-bottom:0px solid #e0e0e0;
border-left: 0px solid #e0e0e0;
background: #f1f1f1;
}
.cpiHelper table tr.even td {
background: #e8e8e8;
}
.cpiHelper_traceText {
white-space: pre-line;
word-wrap: break-word;
cursor: text;
font-family: monospace;
font-size: 1.2em;
padding: 20px;
display: none;
}
.cpiHelper_powertrace {
color: red !important
}
.cpiHelper_traceText.cpiHelper_traceText_active {
display:block;
}
.cpiHelper li.L0, .cpiHelper li.L1, .cpiHelper li.L2, .cpiHelper li.L3,
.cpiHelper li.L5, .cpiHelper li.L6, .cpiHelper li.L7, .cpiHelper li.L8 {
list-style-type: decimal !important;
}