-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy path_panel-console.scss
More file actions
70 lines (57 loc) · 1.45 KB
/
_panel-console.scss
File metadata and controls
70 lines (57 loc) · 1.45 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
/* ==========================================================================
Panel - Console
========================================================================== */
.console,
.console-view-wrapper {
.console-message::before,
.console-user-command::before,
#console-prompt::before,
.console-group-title::before {
background-image: none;
top: 12px;
}
.console-message > .outline-disclosure li.parent::before {
top: 4px;
margin-right: 4px;
}
.console-error-level ::shadow .stack-preview-container {
color: #FF0033 !important;
}
@if $dark-theme == true {
#console-messages .link,
#console-messages a {
color: #AAAAAA !important;
}
}
.console-message-formatted-table {
.data-grid {
font-size: inherit !important;
line-height: inherit !important;
.header-container {
height: auto !important;
}
th {
padding: 4px;
}
td,
th {
line-height: inherit !important;
}
table.data {
background-image: none !important;
}
@if $dark-theme == true {
border: 1px solid rgba(255, 255, 255, 0.25);
th {
color: #AAAAAA;
background-color: rgba(255,255,255,0.15);
border-bottom: 1px solid rgba(255,255,255,0.25);
}
td,
th {
border-left: 1px solid rgba(255,255,255,0.25);
}
}
}
}
}