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

Side by Side Diff: appengine/chromium_rietveld/new_static/components/common.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
« no previous file with comments | « no previous file | appengine/chromium_rietveld/new_static/components/cr-diff.css » ('j') | 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 (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 { display: block; } 7 :host { display: block; }
8 8
9 h1, h2 { 9 h1, h2 {
10 padding: 0; 10 padding: 0;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 72 }
73 73
74 textarea, 74 textarea,
75 input[type=text] { 75 input[type=text] {
76 display: block; 76 display: block;
77 background-color: white; 77 background-color: white;
78 border-radius: 1px; 78 border-radius: 1px;
79 border: 1px solid rgba(0, 0, 0, 0.15); 79 border: 1px solid rgba(0, 0, 0, 0.15);
80 border-top: 1px solid rgba(0, 0, 0, 0.25); 80 border-top: 1px solid rgba(0, 0, 0, 0.25);
81 box-sizing: border-box; 81 box-sizing: border-box;
82 font-family: Monaco, monospace; 82 font-family: Menlo, Monaco, monospace;
83 font-size: 1em; 83 font-size: 1em;
84 margin: 0; 84 margin: 0;
85 width: 100%; 85 width: 100%;
86 } 86 }
87 87
88 textarea:hover, 88 textarea:hover,
89 input[type=text]:hover { 89 input[type=text]:hover {
90 border: 1px solid #b9b9b9; 90 border: 1px solid #b9b9b9;
91 border-top-color: #a0a0a0; 91 border-top-color: #a0a0a0;
92 } 92 }
93 93
94 textarea:focus, 94 textarea:focus,
95 input[type=text]:focus { 95 input[type=text]:focus {
96 border: 1px solid #4d90fe; 96 border: 1px solid #4d90fe;
97 outline: none; 97 outline: none;
98 } 98 }
99 99
100 input.invalid, 100 input.invalid,
101 textarea.invalid { 101 textarea.invalid {
102 border: 1px solid #DD4B39; 102 border: 1px solid #DD4B39;
103 } 103 }
OLDNEW
« no previous file with comments | « no previous file | appengine/chromium_rietveld/new_static/components/cr-diff.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698