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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/serviceWorkersView.css

Issue 1841863003: DevTools: move the force update SW on reload checkbox to the Resources / Service Workers view. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test fixed Created 4 years, 8 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 .service-workers-settings { 7 .service-workers-view > .toolbar {
8 border-bottom: 1px solid #e1e1e1; 8 border-bottom: 1px solid #dadada;
9 min-height: 26px;
10 overflow: hidden;
11 padding: 5px;
12 white-space: nowrap;
13 flex: none;
14 } 9 }
15 10
16 .service-workers-root { 11 .service-workers-root {
12 -webkit-user-select: text;
17 margin: 0; 13 margin: 0;
18 padding: 5px; 14 padding: 5px;
19 -webkit-user-select: text;
20 display: flex; 15 display: flex;
21 } 16 }
22 17
23 .service-workers-root ol { 18 .service-workers-root ol {
24 list-style-type: none; 19 list-style-type: none;
25 padding-left: 0; 20 padding-left: 0;
26 } 21 }
27 22
28 .service-workers-origin { 23 .service-workers-origin {
29 padding: 5px; 24 padding: 5px;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 display: flex; 142 display: flex;
148 align-items: center; 143 align-items: center;
149 } 144 }
150 145
151 .service-worker-client-focus { 146 .service-worker-client-focus {
152 color: hsl(240, 85%, 37%); 147 color: hsl(240, 85%, 37%);
153 cursor: pointer; 148 cursor: pointer;
154 padding-left: 4px; 149 padding-left: 4px;
155 text-decoration: underline; 150 text-decoration: underline;
156 } 151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698