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

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

Issue 2795123002: Fix Hindi language print preview cutoff (Closed)
Patch Set: Created 3 years, 8 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 | 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 html { 5 html {
6 height: 100%; 6 height: 100%;
7 overflow: hidden; 7 overflow: hidden;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 #print-preview button.default:not(:focus):not(:disabled) { 150 #print-preview button.default:not(:focus):not(:disabled) {
151 border-color: #808080; 151 border-color: #808080;
152 } 152 }
153 153
154 span.hint { 154 span.hint {
155 background: white; 155 background: white;
156 display: block; 156 display: block;
157 font-size: 0.9em; 157 font-size: 0.9em;
158 font-weight: bold; 158 font-weight: bold;
159 height: 0; 159 height: 0;
160 line-height: 1em;
161 margin: 0; 160 margin: 0;
162 overflow: hidden; 161 overflow: hidden;
163 transition: color 200ms; 162 transition: color 200ms;
164 } 163 }
165 164
166 span.hint.visible { 165 span.hint.visible {
167 -webkit-user-select: text; 166 -webkit-user-select: text;
168 animation-duration: 200ms; 167 animation-duration: 200ms;
169 animation-fill-mode: forwards; 168 animation-fill-mode: forwards;
170 color: rgb(140, 20, 20); 169 color: rgb(140, 20, 20);
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 :enabled:focus:-webkit-any(input[type='checkbox'], 318 :enabled:focus:-webkit-any(input[type='checkbox'],
320 input[type='radio'], 319 input[type='radio'],
321 button) { 320 button) {
322 /* Cancel border-color for :focus specified in widgets.css. */ 321 /* Cancel border-color for :focus specified in widgets.css. */
323 border-color: rgba(0,0,0,0.25); 322 border-color: rgba(0,0,0,0.25);
324 } 323 }
325 324
326 html:not(.focus-outline-visible) [is='action-link']:focus { 325 html:not(.focus-outline-visible) [is='action-link']:focus {
327 outline: none; 326 outline: none;
328 } 327 }
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