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

Side by Side Diff: appengine/chromium_rietveld/new_static/components/cr-diff.css

Issue 896313003: Use Menlo if available. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 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 :host { 7 :host {
8 display: block; 8 display: block;
9 } 9 }
10 10
(...skipping 26 matching lines...) Expand all
37 37
38 .text, 38 .text,
39 .row cr-action { 39 .row cr-action {
40 padding: 0 16px; 40 padding: 0 16px;
41 } 41 }
42 42
43 .line-number, 43 .line-number,
44 .text { 44 .text {
45 white-space: pre-wrap; 45 white-space: pre-wrap;
46 word-wrap: break-word; 46 word-wrap: break-word;
47 font-family: Monaco, monospace; 47 font-family: Menlo, Monaco, monospace;
48 flex-shrink: 0; 48 flex-shrink: 0;
49 } 49 }
50 50
51 .line-number { 51 .line-number {
52 min-width: 3em; 52 min-width: 3em;
53 text-align: right; 53 text-align: right;
54 color: #444; 54 color: #444;
55 padding-right: 16px; 55 padding-right: 16px;
56 cursor: default; 56 cursor: default;
57 } 57 }
(...skipping 15 matching lines...) Expand all
73 border-color: #dcdcdc; 73 border-color: #dcdcdc;
74 border-style: solid; 74 border-style: solid;
75 border-width: 1px 0 1px 1px; 75 border-width: 1px 0 1px 1px;
76 margin-left: calc(6em + 32px); 76 margin-left: calc(6em + 32px);
77 } 77 }
78 78
79 .spinner { 79 .spinner {
80 margin: 0.5em auto; 80 margin: 0.5em auto;
81 display: block; 81 display: block;
82 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698