-
Notifications
You must be signed in to change notification settings - Fork 0
/
bg-dom.css
89 lines (76 loc) · 1.54 KB
/
bg-dom.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
// The ui-variables file is provided by base themes provided by Atom.
//
// See https://github.com/atom/atom-dark-ui/blob/master/styles/ui-variables.less
// for a full listing of what's available.
@import "ui-variables";
.BGFeedbackDialog {
.pkgList {
margin-bottom:1em;
div {
margin-left: 2em;
}
}
progress {
width: 100%;
/* margin-bottom:1em; */
}
}
atom-panel.BGOneExample {
width: 100%;
height: 100%;
display: grid;
grid-template-areas:
"title title title"
"code dragger demo"
"errorMsg errorMsg errorMsg";
grid-template-rows: min-content 1fr min-content;
grid-template-columns: 1fr min-content 1fr;
atom-pane-axis.horizontal & {
grid-template-areas:
"title"
"code"
"errorMsg"
"dragger"
"demo";
grid-template-rows: min-content 1fr min-content min-content 1fr;
grid-template-columns: none;
}
.title {
grid-area: title;
font-size: large;
padding-bottom: 0.5em;
}
.code {
grid-area: code;
height: 100%;
overflow: auto;
}
.demo {
grid-area: demo;
border: 1px solid;
overflow: auto;
}
.errorMsg {
grid-area: errorMsg;
height: fit-content;
background-color: rgb(255,200,200);
font-size: 150%;
border: 1px solid;
}
.dragger {
grid-area: dragger;
inline-size: 5px;
block-size: 100%;
border-inline: 1px solid #E0E0E0;
cursor: ew-resize;
}
atom-pane-axis.horizontal & .dragger {
inline-size: 100%;
block-size: 5px;
border-block: 1px solid #E0E0E0;
cursor: ns-resize;
}
.code.syntaxError {
// background-color: rgb(255,200,200);
}
}