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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.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 * { 7 * {
8 /* This is required for correct sizing of flex items because we rely 8 /* This is required for correct sizing of flex items because we rely
9 * on an old version of the flexbox spec. 9 * on an old version of the flexbox spec.
10 * Longer-term we should remove this, see crbug.com/473625 */ 10 * Longer-term we should remove this, see crbug.com/473625 */
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 135
136 .-theme-with-dark-background .highlighted-search-result, 136 .-theme-with-dark-background .highlighted-search-result,
137 :host-context(.-theme-with-dark-background) .highlighted-search-result { 137 :host-context(.-theme-with-dark-background) .highlighted-search-result {
138 background-color: hsl(133, 100%, 30%); 138 background-color: hsl(133, 100%, 30%);
139 color: #333; 139 color: #333;
140 } 140 }
141 141
142 .link { 142 .link {
143 cursor: pointer; 143 cursor: pointer;
144 text-decoration: underline; 144 text-decoration: underline;
145 color: rgb(17, 85, 204); 145 color: rgb(17, 85, 204);
caseq 2016/05/05 01:09:22 revert?
146 } 146 }
147 147
148 button, 148 button,
149 input, 149 input,
150 select { 150 select {
151 font-family: inherit; 151 font-family: inherit;
152 font-size: inherit; 152 font-size: inherit;
153 color: inherit; 153 color: inherit;
154 } 154 }
155 155
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar-track { 265 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar-track {
266 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); 266 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3);
267 } 267 }
268 268
269 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, 269 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb,
270 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark -background ::-webkit-scrollbar-thumb { 270 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark -background ::-webkit-scrollbar-thumb {
271 border-radius: 2px; 271 border-radius: 2px;
272 background-color: #333; 272 background-color: #333;
273 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); 273 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5);
274 } 274 }
275
276 label[is=dt-icon-label] {
277 flex: none;
278 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698