OLD | NEW |
---|---|
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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
370 | 370 |
371 list > [editing] [displaymode='static'] { | 371 list > [editing] [displaymode='static'] { |
372 display: none; | 372 display: none; |
373 } | 373 } |
374 | 374 |
375 list > [editing] input:invalid { | 375 list > [editing] input:invalid { |
376 /* TODO(stuartmorgan): Replace with validity badge */ | 376 /* TODO(stuartmorgan): Replace with validity badge */ |
377 background-color: pink; | 377 background-color: pink; |
378 } | 378 } |
379 | 379 |
380 .list-inline-button { | |
381 -webkit-appearance: none; | |
382 -webkit-transition: opacity 150ms; | |
383 background: rgb(138, 170, 237); | |
384 border-radius: 2px; | |
Dan Beam
2012/03/15 00:05:27
nit: alpha
Evan Stade
2012/03/15 00:53:23
damn, vim sort is wrong
Dan Beam
2012/03/15 03:44:05
export LC_ALL=C will fix, or :XX,XX!LC_ALL=C sort
| |
385 border: none; | |
386 color: white; | |
387 font-weight: bold; | |
388 opacity: 0.7; | |
389 } | |
390 | |
391 .list-inline-button:hover { | |
392 opacity: 1; | |
393 } | |
394 | |
380 .option-name { | 395 .option-name { |
381 padding-right: 5px; | 396 padding-right: 5px; |
382 } | 397 } |
383 | 398 |
384 html[dir=rtl].option-name { | 399 html[dir=rtl].option-name { |
385 padding-left: 5px; | 400 padding-left: 5px; |
386 } | 401 } |
387 | 402 |
388 .favicon-cell { | 403 .favicon-cell { |
389 -webkit-padding-start: 20px; | 404 -webkit-padding-start: 20px; |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
588 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); | 603 url('chrome://theme/IDR_CONTROLLED_SETTING_RECOMMENDED_LARGE'); |
589 } | 604 } |
590 | 605 |
591 html[dir='rtl'] .controlled-setting-bubble-text { | 606 html[dir='rtl'] .controlled-setting-bubble-text { |
592 background-position: right top; | 607 background-position: right top; |
593 } | 608 } |
594 | 609 |
595 .controlled-setting-bubble-action { | 610 .controlled-setting-bubble-action { |
596 padding: 0 !important; | 611 padding: 0 !important; |
597 } | 612 } |
OLD | NEW |