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

Side by Side Diff: chrome/browser/resources/chromeos/provided_file_systems.css

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. Created 6 years 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 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 body { 6 body {
7 background-color: rgba(0, 0, 0, 0.05); 7 background-color: rgba(0, 0, 0, 0.05);
8 font-family: sans-serif;
9 font-size: 14px; 8 font-size: 14px;
10 margin: 20px; 9 margin: 20px;
11 } 10 }
12 11
13 #fileSystems, 12 #fileSystems,
14 #requestEvents, 13 #requestEvents,
15 #requestTimeline { 14 #requestTimeline {
16 background-color: white; 15 background-color: white;
17 box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); 16 box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
18 margin-bottom: 20px; 17 margin-bottom: 20px;
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 #requestEvents [data-request-type='READ_FILE'] span { 179 #requestEvents [data-request-type='READ_FILE'] span {
181 background-color: royalblue; 180 background-color: royalblue;
182 color: white; 181 color: white;
183 } 182 }
184 183
185 #requestTimeline [data-state='rejected'], 184 #requestTimeline [data-state='rejected'],
186 #requestEvents [data-error]:not([data-error='']) span { 185 #requestEvents [data-error]:not([data-error='']) span {
187 background-color: tomato; 186 background-color: tomato;
188 color: white; 187 color: white;
189 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698