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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css

Issue 2851213005: DevTools: brush up audits 2 launcher UI, allow multiple audit runs, introduce landing page. (Closed)
Patch Set: for landing Created 3 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 -webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Ima ges/largeIcons_2x.png) 2x); 375 -webkit-mask-image: -webkit-image-set(url(Images/largeIcons.png) 1x, url(Ima ges/largeIcons_2x.png) 2x);
376 -webkit-mask-position: var(--spritesheet-position); 376 -webkit-mask-position: var(--spritesheet-position);
377 background: white !important; 377 background: white !important;
378 } 378 }
379 379
380 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit e-icons.spritesheet-mediumicons { 380 .force-white-icons [is=ui-icon].spritesheet-mediumicons, [is=ui-icon].force-whit e-icons.spritesheet-mediumicons {
381 -webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Im ages/mediumIcons_2x.png) 2x); 381 -webkit-mask-image: -webkit-image-set(url(Images/mediumIcons.png) 1x, url(Im ages/mediumIcons_2x.png) 2x);
382 -webkit-mask-position: var(--spritesheet-position); 382 -webkit-mask-position: var(--spritesheet-position);
383 background: white !important; 383 background: white !important;
384 } 384 }
385
386 button.material-button {
387 display: inline-block;
388 text-shadow: none;
389 padding: 6px 10px;
390 background-color: #ffffff !important;
391 color: gray;
392 background-image: unset !important;
393 box-shadow: none !important;
394 cursor: pointer;
395 }
396
397 button.material-button.default {
398 color: white;
399 background-color: #4285f4 !important;
400 }
401
402 button.material-button.default:not(:disabled):hover {
403 background-color: hsla(217, 89%, 58%, 1) !important;
404 color: white !important;
405 }
406
407 button.material-button:not(:disabled):hover {
408 background-color: #eee !important;
409 color: gray !important;
410 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698