Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/emulation/deviceModeView.css

Issue 1940993002: DevTools: simplify Service Workers panel UI, remove non-actionable data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 :host { 7 :host {
8 overflow: hidden; 8 overflow: hidden;
9 align-items: stretch; 9 align-items: stretch;
10 flex: auto; 10 flex: auto;
(...skipping 22 matching lines...) Expand all
33 .device-mode-toolbar-spacer { 33 .device-mode-toolbar-spacer {
34 flex: 1 1 0; 34 flex: 1 1 0;
35 display: flex; 35 display: flex;
36 flex-direction: row; 36 flex-direction: row;
37 overflow: hidden; 37 overflow: hidden;
38 } 38 }
39 39
40 .device-mode-content-clip { 40 .device-mode-content-clip {
41 overflow: hidden; 41 overflow: hidden;
42 flex: auto; 42 flex: auto;
43 z-index: 0;
caseq 2016/05/05 01:09:21 unrelated?
43 } 44 }
44 45
45 .device-mode-media-container { 46 .device-mode-media-container {
46 flex: none; 47 flex: none;
47 overflow: hidden; 48 overflow: hidden;
48 box-shadow: inset 0 -1px #ccc; 49 box-shadow: inset 0 -1px #ccc;
49 } 50 }
50 51
51 .device-mode-presets-container { 52 .device-mode-presets-container {
52 flex: 0 0 20px; 53 flex: 0 0 20px;
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 .device-mode-ruler-top .device-mode-ruler-text { 328 .device-mode-ruler-top .device-mode-ruler-text {
328 left: 2px; 329 left: 2px;
329 top: -2px; 330 top: -2px;
330 } 331 }
331 332
332 .device-mode-ruler-left .device-mode-ruler-text { 333 .device-mode-ruler-left .device-mode-ruler-text {
333 left: -4px; 334 left: -4px;
334 top: -15px; 335 top: -15px;
335 transform: rotate(270deg); 336 transform: rotate(270deg);
336 } 337 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698