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

Side by Side Diff: ui/webui/resources/css/overlay.css

Issue 295713004: options: temporarily fix text rendering bug in overlays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment Created 6 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 /* The shield that overlays the background. */ 5 /* The shield that overlays the background. */
6 .overlay { 6 .overlay {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-orient: vertical; 8 -webkit-box-orient: vertical;
9 -webkit-box-pack: center; 9 -webkit-box-pack: center;
10 /* TODO(dbeam): remove perspective when http://crbug.com/374970 is fixed. */
11 -webkit-perspective: 1px;
10 -webkit-transition: 200ms opacity; 12 -webkit-transition: 200ms opacity;
11 background-color: rgba(255, 255, 255, 0.75); 13 background-color: rgba(255, 255, 255, 0.75);
12 bottom: 0; 14 bottom: 0;
13 display: -webkit-box; 15 display: -webkit-box;
14 left: 0; 16 left: 0;
15 overflow: auto; 17 overflow: auto;
16 padding: 20px; 18 padding: 20px;
17 position: fixed; 19 position: fixed;
18 right: 0; 20 right: 0;
19 top: 0; 21 top: 0;
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 172
171 .gray-bottom-bar { 173 .gray-bottom-bar {
172 background-color: #f5f5f5; 174 background-color: #f5f5f5;
173 border-color: #e7e7e7; 175 border-color: #e7e7e7;
174 border-top-style: solid; 176 border-top-style: solid;
175 border-width: 1px; 177 border-width: 1px;
176 color: #888; 178 color: #888;
177 display: -webkit-box; 179 display: -webkit-box;
178 padding: 14px 17px; 180 padding: 14px 17px;
179 } 181 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698