-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCustom.css
More file actions
224 lines (187 loc) · 7.3 KB
/
Custom.css
File metadata and controls
224 lines (187 loc) · 7.3 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
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
/* Toolbar customization for vertical docking */
/* decrease the size of toolbar buttons */
#-webkit-web-inspector.dock-to-right:not(.detached) #toolbar {
zoom: 0.9;
}
/* move up everything else to account for the decrease in the toolbar's height */
#-webkit-web-inspector.dock-to-right:not(.detached) #main {
top: 50px !important;
}
/* when devtools is very narrow, the panel buttons in the toolbar start moving
* into a dropdown, which is fine by itself, except that the dropdown goes off
* the right edge of the screen; this is a fix for that */
#-webkit-web-inspector.dock-to-right:not(.detached) #toolbar-dropdown {
left: auto !important;
right: 5px !important;
}
/* "Elements" panel optimized for vertical layout */
/* left column (DOM) */
#-webkit-web-inspector.dock-to-right:not(.detached) .elements .source-code {
left: auto;
right: auto;
width: 100% !important;
height: 70%;
border-bottom: 3px solid #eee;
}
/* right column (CSS) */
#-webkit-web-inspector.dock-to-right:not(.detached) .elements .split-view-sidebar-right {
left: auto;
right: auto;
width: 100% !important;
height: 30%;
border-top: 1px solid #ccc;
}
#-webkit-web-inspector.dock-to-right:not(.detached) .elements .split-view-contents {
position: relative !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) .elements .split-view-resizer {
display: none;
}
/* "Scripts" panel optimized for vertical layout:
* In the default layout, the panel has 3 columns A, B, C, organized as follows:
* ,-----------.
* \___________\___
* | | | |
* | A | B | C |
* |___|_______|___|
* `-----------'
*
* The dotted border indicates the DOM hierarchy:
*
* <div>
* <div>
* <!-- column A -->
* <!-- column B -->
* </div>
* <!-- column C -->
* </div>
*
* We need to reorganize them so that B appears on top, and A and C share the bottom half:
* _______
* | |
* | |
* | B |
* | |
* |_______|
* | | |
* | A | C |
* |___|___|
*/
/* wrapper containing A and B: (A B) */
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view > .split-view-contents:first-child {
width: 100%;
}
/* column A (when pinned) */
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view > .split-view-contents:first-child > .split-view > .split-view-sidebar-left {
left: 0px;
top: 70% !important;
width: 50% !important;
z-index: 10;
background-color: white;
}
/* column A (when overlayed, i.e., when NOT pinned) */
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view > .split-view-contents:first-child > .split-view > .sidebar-overlay {
top: 70% !important;
}
/* get rid of split view resizer between columns A and B */
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view > .split-view-contents:first-child > .split-view > .split-view-resizer {
display: none;
}
/* column B */
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view > .split-view-contents:first-child > .split-view > .split-view-contents:nth-child(2) {
left: 0px !important;
height: 70%;
position: static !important; /* needed for correctly positioning column A's show / hide button later on */
border-bottom: 1px solid #888;
}
/* column C */
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view > .split-view-sidebar-right {
right: 0px;
top: 70% !important;
width: 50% !important;
background-color: white;
}
/* reposition the buttons for showing / hiding / resizing the sidebars */
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view .scripts-debugger-show-hide-button,
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view .scripts-navigator-show-hide-button,
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-debug-sidebar-resizer-widget {
top: 70% !important;
z-index: 20 !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-editor-container-tabbed-pane > .scripts-navigator-show-hide-button {
left: auto !important;
right: 50% !important;
margin-right: 20px !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) #scripts-split-view .sidebar-overlay .navigator-tabbed-pane .scripts-navigator-show-hide-button {
top: 0 !important;
}
/*
* Network panel
*/
#-webkit-web-inspector.dock-to-right:not(.detached) .network .split-view-sidebar-left {
position: static;
width: 100% !important;
height: 50% !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) #main-panels .network .split-view-sidebar-left.maximized {
height: 100% !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) #main-panels #network-views {
position: static;
left: 0 !important;
top: 50% !important;
width: 100%;
height: 50% !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) #network-container .data-grid table.header col,
#-webkit-web-inspector.dock-to-right:not(.detached) #network-container .data-grid table.data col {
display: block !important;
width: auto !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) #network-container .data-grid .data-grid-resizer {
display: block !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) #network-container .network-log-grid.data-grid td {
border-right: 1px solid #D2D2D2 !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) #network-container .data-grid th {
border-right: 1px solid #B3B3B3 !important;
}
/* "Resources", "Audits", and "Profiles" panels optimized for vertical layout */
#-webkit-web-inspector.dock-to-right:not(.detached) .resources .split-view-sidebar-left,
#-webkit-web-inspector.dock-to-right:not(.detached) .audits .split-view-sidebar-left,
#-webkit-web-inspector.dock-to-right:not(.detached) .profiles .split-view-sidebar-left {
height: 30% !important;
width: 100% !important;
border-bottom: 3px solid #eee;
}
#-webkit-web-inspector.dock-to-right:not(.detached) .resources .split-view-contents:nth-child(2),
#-webkit-web-inspector.dock-to-right:not(.detached) .audits .split-view-contents:nth-child(2),
#-webkit-web-inspector.dock-to-right:not(.detached) .profiles .split-view-contents:nth-child(2) {
top: 30% !important;
left: 0 !important;
border-top: 1px solid #ccc;
}
#-webkit-web-inspector.dock-to-right:not(.detached) .resources .split-view-resizer,
#-webkit-web-inspector.dock-to-right:not(.detached) .audits .split-view-resizer,
#-webkit-web-inspector.dock-to-right:not(.detached) .profiles .split-view-resizer {
display: none;
}
/* Dynamically-expanding split view in the Resources panel
* Idea credits: https://github.com/mauricelam/DockToRight/blob/c9e9425d50ddfe625831a34a3ea63d15d10b62b3/Custom.css#L244-L260 */
#-webkit-web-inspector.dock-to-right:not(.detached) .resources .split-view-sidebar-left {
height: 30% !important;
z-index: 20;
-webkit-transition: 0.2s;
}
#-webkit-web-inspector.dock-to-right:not(.detached) .resources .split-view-sidebar-left:hover {
height: 50% !important;
}
#-webkit-web-inspector.dock-to-right:not(.detached) .resources .split-view-sidebar-left + .split-view-contents {
top: 20% !important;
-webkit-transition: 0.2s;
}
#-webkit-web-inspector.dock-to-right:not(.detached) .resources .split-view-sidebar-left:hover + .split-view-contents {
top: 50% !important;
}