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

Side by Side Diff: Source/devtools/front_end/auditsPanel.css

Issue 152493003: Remove all usage of -webkit-*gradient inside blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 border: 0 none; 78 border: 0 none;
79 -webkit-flex: none; 79 -webkit-flex: none;
80 } 80 }
81 81
82 .audit-launcher-view button { 82 .audit-launcher-view button {
83 margin: 0 5px 0 0; 83 margin: 0 5px 0 0;
84 } 84 }
85 85
86 .audit-launcher-view button:active { 86 .audit-launcher-view button:active {
87 background-color: rgb(215, 215, 215); 87 background-color: rgb(215, 215, 215);
88 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 194, 194)), to(rgb(239, 239, 239))); 88 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23 9, 239));
89 } 89 }
90 90
91 .panel-enabler-view.audit-launcher-view label { 91 .panel-enabler-view.audit-launcher-view label {
92 padding: 0 0 5px 0; 92 padding: 0 0 5px 0;
93 margin: 0; 93 margin: 0;
94 -webkit-flex: none; 94 -webkit-flex: none;
95 } 95 }
96 96
97 .panel-enabler-view.audit-launcher-view label.disabled { 97 .panel-enabler-view.audit-launcher-view label.disabled {
98 color: rgb(130, 130, 130); 98 color: rgb(130, 130, 130);
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 font-weight: bold; 235 font-weight: bold;
236 } 236 }
237 237
238 .audit-launcher-view .progress-bar-container { 238 .audit-launcher-view .progress-bar-container {
239 display: inline-block; 239 display: inline-block;
240 } 240 }
241 241
242 .audit-launcher-view .progress-bar-container .progress-bar-stop-button { 242 .audit-launcher-view .progress-bar-container .progress-bar-stop-button {
243 display: none; 243 display: none;
244 } 244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698