OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
6 html { | 6 html { |
7 height: 100%; | 7 height: 100%; |
8 } | 8 } |
9 | 9 |
10 body { | 10 body { |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 margin: 0; | 95 margin: 0; |
96 margin-bottom: 10px; | 96 margin-bottom: 10px; |
97 } | 97 } |
98 | 98 |
99 h1 { | 99 h1 { |
100 color: #808080; | 100 color: #808080; |
101 font-size: 100%; | 101 font-size: 100%; |
102 font-weight: 300; | 102 font-weight: 300; |
103 } | 103 } |
104 | 104 |
105 #system-dialog-link { | 105 .preview-link-button { |
106 -webkit-padding-start: 16px; | 106 -webkit-padding-start: 16px; |
107 outline: 0; | 107 outline: 0; |
108 padding-top: 10px; | 108 padding-top: 10px; |
109 text-decoration: none; | 109 text-decoration: none; |
110 text-align: start; | 110 text-align: start; |
111 } | 111 } |
112 | 112 |
113 #system-dialog-link:hover:not(:disabled) { | 113 .preview-link-button:hover:not(:disabled) { |
114 text-decoration: underline; | 114 text-decoration: underline; |
115 } | 115 } |
116 | 116 |
117 #system-dialog-link:disabled { | 117 .preview-link-button:disabled { |
118 color: rgba(0, 0, 0, .5); | 118 color: rgba(0, 0, 0, .5); |
119 cursor: default; | 119 cursor: default; |
120 text-shadow: none; | 120 text-shadow: none; |
121 } | 121 } |
122 | 122 |
123 button.loading { | 123 button.loading { |
124 cursor: progress; | 124 cursor: progress; |
125 } | 125 } |
126 | 126 |
127 button.default { | 127 button.default { |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 /* TODO(estade): unfork this code. */ | 410 /* TODO(estade): unfork this code. */ |
411 .button-strip { | 411 .button-strip { |
412 -webkit-box-orient: horizontal; | 412 -webkit-box-orient: horizontal; |
413 -webkit-box-pack: end; | 413 -webkit-box-pack: end; |
414 display: -webkit-box; | 414 display: -webkit-box; |
415 } | 415 } |
416 | 416 |
417 html[toolkit=views] .button-strip { | 417 html[toolkit=views] .button-strip { |
418 -webkit-box-direction: reverse; | 418 -webkit-box-direction: reverse; |
419 } | 419 } |
OLD | NEW |