File tree Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,10 @@ var MainPanelView = (function (_super) {
36
36
} ;
37
37
this . div ( {
38
38
class : 'atomts atomts-main-panel-view native-key-bindings' ,
39
- style : 'padding: 6px' ,
40
39
tabindex : '-1'
41
40
} , function ( ) {
42
41
_this . div ( {
43
- class : 'layout horizontal' ,
42
+ class : 'layout horizontal atomts-panel-header ' ,
44
43
style : '-webkit-user-select: none; align-items: center' ,
45
44
dblclick : 'toggle'
46
45
} , function ( ) {
@@ -118,17 +117,17 @@ var MainPanelView = (function (_super) {
118
117
} ) ;
119
118
} ) ;
120
119
_this . div ( {
121
- class : 'panel-body atomts-panel-body padded ' ,
120
+ class : 'panel-body atomts-panel-body' ,
122
121
outlet : 'errorBody' ,
123
122
style : 'overflow-y: auto; display: none'
124
123
} ) ;
125
124
_this . div ( {
126
- class : 'panel-body atomts-panel-body padded ' ,
125
+ class : 'panel-body atomts-panel-body' ,
127
126
outlet : 'buildBody' ,
128
127
style : 'overflow-y: auto; display: none'
129
128
} ) ;
130
129
_this . div ( {
131
- class : 'panel-body atomts-panel-body padded ' ,
130
+ class : 'panel-body atomts-panel-body' ,
132
131
outlet : 'referencesBody' ,
133
132
style : 'overflow-y: auto; display: none'
134
133
} ) ;
Original file line number Diff line number Diff line change @@ -47,11 +47,10 @@ export class MainPanelView extends view.View<any> {
47
47
48
48
this . div ( {
49
49
class : 'atomts atomts-main-panel-view native-key-bindings' ,
50
- style : 'padding: 6px' ,
51
50
tabindex : '-1'
52
51
} , ( ) => {
53
52
this . div ( {
54
- class : 'layout horizontal' ,
53
+ class : 'layout horizontal atomts-panel-header ' ,
55
54
style : '-webkit-user-select: none; align-items: center' ,
56
55
dblclick : 'toggle'
57
56
} , ( ) => {
@@ -137,17 +136,17 @@ export class MainPanelView extends view.View<any> {
137
136
} ) ;
138
137
} ) ;
139
138
this . div ( {
140
- class : 'panel-body atomts-panel-body padded ' ,
139
+ class : 'panel-body atomts-panel-body' ,
141
140
outlet : 'errorBody' ,
142
141
style : 'overflow-y: auto; display: none'
143
142
} ) ;
144
143
this . div ( {
145
- class : 'panel-body atomts-panel-body padded ' ,
144
+ class : 'panel-body atomts-panel-body' ,
146
145
outlet : 'buildBody' ,
147
146
style : 'overflow-y: auto; display: none'
148
147
} ) ;
149
148
this . div ( {
150
- class : 'panel-body atomts-panel-body padded ' ,
149
+ class : 'panel-body atomts-panel-body' ,
151
150
outlet : 'referencesBody' ,
152
151
style : 'overflow-y: auto; display: none'
153
152
} ) ;
Original file line number Diff line number Diff line change 3
3
scroll- y: auto ;
4
4
}
5
5
6
+ .atomts-panel-body ,
7
+ .atomts-panel-header {
8
+ padding : 6px ;
9
+ }
10
+
6
11
.atomts-main-panel-view {
7
12
.build-progress.warn ::-webkit-progress-value {
8
13
background-color : rgb (255 , 155 , 0 ) !important ;
You can’t perform that action at this time.
0 commit comments