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

Side by Side Diff: chrome/browser/resources/local_ntp/local_ntp.css

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The First Version. 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 body { 4 body {
5 background-attachment: fixed !important; 5 background-attachment: fixed !important;
6 background-color: white; 6 background-color: white;
7 cursor: default; 7 cursor: default;
8 font-family: arial, sans-serif;
9 font-size: small;
10 margin: 0; 8 margin: 0;
11 overflow-x: hidden; 9 overflow-x: hidden;
12 } 10 }
13 11
14 #ntp-contents { 12 #ntp-contents {
15 text-align: -webkit-center; 13 text-align: -webkit-center;
16 } 14 }
17 15
18 .non-google-page #ntp-contents { 16 .non-google-page #ntp-contents {
19 position: absolute; 17 position: absolute;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 96
99 html[dir=rtl] #fakebox > input { 97 html[dir=rtl] #fakebox > input {
100 padding-left: 0; 98 padding-left: 0;
101 padding-right: 8px; 99 padding-right: 8px;
102 right: 0; 100 right: 0;
103 } 101 }
104 102
105 #fakebox-text { 103 #fakebox-text {
106 bottom: 0; 104 bottom: 0;
107 color: #bbb; 105 color: #bbb;
108 font-family: arial, sans-serif;
109 font-size: 16px; 106 font-size: 16px;
110 left: 9px; 107 left: 9px;
111 margin-top: 1px; 108 margin-top: 1px;
112 overflow: hidden; 109 overflow: hidden;
113 position: absolute; 110 position: absolute;
114 right: 9px; 111 right: 9px;
115 text-align: initial; 112 text-align: initial;
116 text-overflow: ellipsis; 113 text-overflow: ellipsis;
117 top: 0; 114 top: 0;
118 vertical-align: middle; 115 vertical-align: middle;
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 text-align: right; 681 text-align: right;
685 } 682 }
686 683
687 #recent-tabs { 684 #recent-tabs {
688 background: #fff; 685 background: #fff;
689 border: 1px solid #c0c0c0; 686 border: 1px solid #c0c0c0;
690 border-radius: 2px; 687 border-radius: 2px;
691 bottom: 0; 688 bottom: 0;
692 color: rgb(17, 85, 204); 689 color: rgb(17, 85, 204);
693 cursor: pointer; 690 cursor: pointer;
694 font-family: Arial;
695 font-size: 14px; 691 font-size: 14px;
696 opacity: 0.9; 692 opacity: 0.9;
697 padding: 3px; 693 padding: 3px;
698 position: fixed; 694 position: fixed;
699 right: 8px; 695 right: 8px;
700 } 696 }
701 697
702 html[dir=rtl] #attribution,html[dir=rtl] #recent-tabs { 698 html[dir=rtl] #attribution,html[dir=rtl] #recent-tabs {
703 left: 8px; 699 left: 8px;
704 right: auto; 700 right: auto;
705 } 701 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698