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

Side by Side Diff: chrome/browser/resources/options/options_page.css

Issue 1963203002: [Chrome Settings UI] Show overruled User Exceptions as strike-through. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change 'Behavior' colunm text sizing to fix alignment. Created 4 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
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 body { 5 body {
6 position: relative; 6 position: relative;
7 } 7 }
8 8
9 #main-content { 9 #main-content {
10 bottom: 0; 10 bottom: 0;
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 url(../../../../ui/resources/default_200_percent/close_2_pressed.png) 296 url(../../../../ui/resources/default_200_percent/close_2_pressed.png)
297 2x); 297 2x);
298 } 298 }
299 299
300 list .static-text { 300 list .static-text {
301 overflow: hidden; 301 overflow: hidden;
302 text-overflow: ellipsis; 302 text-overflow: ellipsis;
303 white-space: nowrap; 303 white-space: nowrap;
304 } 304 }
305 305
306 list .overruled .static-text {
307 text-decoration: line-through;
308 }
309
306 list[type='text'][inlineeditable] input { 310 list[type='text'][inlineeditable] input {
307 box-sizing: border-box; 311 box-sizing: border-box;
308 margin: 0; 312 margin: 0;
309 width: 100%; 313 width: 100%;
310 } 314 }
311 315
312 list > :not([editing]) [displaymode='edit'] { 316 list > :not([editing]) [displaymode='edit'] {
313 display: none; 317 display: none;
314 } 318 }
315 319
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 .standalone-action-link { 449 .standalone-action-link {
446 padding: 0; 450 padding: 0;
447 } 451 }
448 452
449 :-webkit-any(.checkbox, .radio) label ~ a { 453 :-webkit-any(.checkbox, .radio) label ~ a {
450 display: inline-block; 454 display: inline-block;
451 /* Matches padding of -webkit-any(.checkbox, .radio) */ 455 /* Matches padding of -webkit-any(.checkbox, .radio) */
452 padding-bottom: 7px; 456 padding-bottom: 7px;
453 vertical-align: bottom; 457 vertical-align: bottom;
454 } 458 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698