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/extensions/extensions.css

Issue 1126083005: Fix alignment of checkboxes in chrome://extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« 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.loading * { 5 html.loading * {
6 transition-duration: 0ms !important; 6 transition-duration: 0ms !important;
7 } 7 }
8 8
9 html:not(.focus-outline-visible) 9 html:not(.focus-outline-visible)
10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) { 10 :enabled:focus:-webkit-any(input[type='checkbox'], input[type='radio']) {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 #dev-controls .button-container button:not(:last-of-type) { 54 #dev-controls .button-container button:not(:last-of-type) {
55 -webkit-margin-end: 5px; 55 -webkit-margin-end: 5px;
56 } 56 }
57 57
58 #dev-controls-spacer { 58 #dev-controls-spacer {
59 flex: 1; 59 flex: 1;
60 } 60 }
61 61
62 #dev-toggle { 62 #dev-toggle {
63 margin-top: 0; 63 /* Alignment should match the enable checkbox text. This is calculated as
64 text-align: end; 64 * 30px to match the trash icon + 12px to match .extension-list-item-wrapper
65 * padding - 1px of magic. */
66 -webkit-margin-end: 41px;
65 } 67 }
66 68
67 .extension-code { 69 .extension-code {
68 border: 1px solid #ccc; 70 border: 1px solid #ccc;
69 display: flex; 71 display: flex;
70 font-family: monospace; 72 font-family: monospace;
71 overflow: auto; 73 overflow: auto;
72 white-space: pre; 74 white-space: pre;
73 } 75 }
74 76
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 } 422 }
421 423
422 .sideload-wipeout-banner .page-banner-text { 424 .sideload-wipeout-banner .page-banner-text {
423 -webkit-padding-start: 8px; 425 -webkit-padding-start: 8px;
424 background-image: none; 426 background-image: none;
425 } 427 }
426 428
427 .extension-highlight { 429 .extension-highlight {
428 background-color: rgba(0, 0, 0, .05); 430 background-color: rgba(0, 0, 0, .05);
429 } 431 }
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