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

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

Issue 2814893002: Print Preview: Fix small radio buttons (Closed)
Patch Set: Add variables 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 .right-column .radio { 66 .right-column .radio {
67 margin: 0; 67 margin: 0;
68 } 68 }
69 69
70 .right-column .checkbox label, 70 .right-column .checkbox label,
71 .right-column .radio label { 71 .right-column .radio label {
72 padding-bottom: 5px; 72 padding-bottom: 5px;
73 padding-top: 10px; 73 padding-top: 10px;
74 } 74 }
75 75
76 .right-column .radio input[type='radio'] { 76 .right-column .radio input[type='radio'],
77 height: 1.1em;
78 width: 1.1em;
79 }
80
81 .right-column label input[type='checkbox'] { 77 .right-column label input[type='checkbox'] {
82 height: 1.1em; 78 --min-size: 13.19px;
83 width: 1.1em; 79 --size: 1.1em;
80 height: var(--size);
81 min-height: var(--min-size);
82 min-width: var(--min-size);
83 width: var(--size);
84 } 84 }
85 85
86 .left-column { 86 .left-column {
87 -webkit-padding-end: 20px; 87 -webkit-padding-end: 20px;
88 -webkit-padding-start: 20px; 88 -webkit-padding-start: 20px;
89 display: table-cell; 89 display: table-cell;
90 min-width: 70px; 90 min-width: 70px;
91 vertical-align: middle; 91 vertical-align: middle;
92 } 92 }
93 93
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 :enabled:focus:-webkit-any(input[type='checkbox'], 318 :enabled:focus:-webkit-any(input[type='checkbox'],
319 input[type='radio'], 319 input[type='radio'],
320 button) { 320 button) {
321 /* Cancel border-color for :focus specified in widgets.css. */ 321 /* Cancel border-color for :focus specified in widgets.css. */
322 border-color: rgba(0,0,0,0.25); 322 border-color: rgba(0,0,0,0.25);
323 } 323 }
324 324
325 html:not(.focus-outline-visible) [is='action-link']:focus { 325 html:not(.focus-outline-visible) [is='action-link']:focus {
326 outline: none; 326 outline: none;
327 } 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