Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 html { | 1 html { |
| 2 height: 100%; | 2 height: 100%; |
| 3 } | 3 } |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 background: white; | 6 background: white; |
| 7 display: -webkit-box; | 7 display: -webkit-box; |
| 8 height: 100%; | 8 height: 100%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 165 } | 165 } |
| 166 | 166 |
| 167 hr.invisible { | 167 hr.invisible { |
| 168 visibility: hidden; | 168 visibility: hidden; |
| 169 } | 169 } |
| 170 | 170 |
| 171 .hidden + hr { | 171 .hidden + hr { |
| 172 display: none; | 172 display: none; |
| 173 } | 173 } |
| 174 | 174 |
| 175 a { | 175 /* TODO(jhawkins): Remove this specialization once all WebUI shares the same |
| 176 * link-button styling. | |
| 177 */ | |
| 178 #system-dialog-link { | |
|
dpapad
2011/06/23 02:06:47
You need to add here
-webkit-padding-start: 0
to o
James Hawkins
2011/06/27 21:58:17
Done.
| |
| 176 -webkit-transition: text-shadow 150ms; | 179 -webkit-transition: text-shadow 150ms; |
| 177 color: #4080fa; | 180 color: #4080fa; |
| 178 outline: 0; | 181 outline: 0; |
| 179 text-decoration: none; | 182 text-decoration: none; |
| 180 text-shadow: 0 0 1px white; | 183 text-shadow: 0 0 1px white; |
| 181 } | 184 } |
| 182 | 185 |
| 183 a:hover { | 186 #system-dialog-link:hover { |
| 184 text-shadow: 0 0 1px rgba(85, 143, 250, .75); | 187 text-shadow: 0 0 1px rgba(85, 143, 250, .75); |
| 185 } | 188 } |
| 186 | 189 |
| 187 a:active { | 190 #system-dialog-link:active { |
| 188 color: #4080fa; | 191 color: #4080fa; |
| 189 text-shadow: 0 0 1px rgba(64, 128, 250, 1); | 192 text-shadow: 0 0 1px rgba(64, 128, 250, 1); |
| 190 } | 193 } |
| 191 | 194 |
| 192 a:focus { | 195 #system-dialog-link:focus { |
| 193 -webkit-transition: border-color 200ms; | 196 -webkit-transition: border-color 200ms; |
| 194 border-radius: 2px; | 197 border-radius: 2px; |
| 195 border: 1px solid rgba(85, 143, 250, .8); | 198 border: 1px solid rgba(85, 143, 250, .8); |
| 196 margin: -2px -5px; | 199 margin: -2px -5px; |
| 197 padding: 1px 4px; | 200 padding: 1px 4px; |
| 198 } | 201 } |
| 199 | 202 |
| 203 #system-dialog-link:disabled { | |
| 204 color: rgba(0, 0, 0, .5); | |
| 205 cursor: default; | |
| 206 text-shadow: none; | |
| 207 } | |
| 208 | |
| 200 strong { | 209 strong { |
| 201 font-weight: 600; | 210 font-weight: 600; |
| 202 } | 211 } |
| 203 | 212 |
| 204 button { | 213 button { |
| 205 -webkit-box-shadow: inset 0 1px 2px white, | 214 -webkit-box-shadow: inset 0 1px 2px white, |
| 206 0 1px 2px rgba(0, 0, 0, .2); | 215 0 1px 2px rgba(0, 0, 0, .2); |
| 207 -webkit-user-select: none; | 216 -webkit-user-select: none; |
| 208 background: -webkit-linear-gradient(#fafafa, #dcdcdc); | 217 background: -webkit-linear-gradient(#fafafa, #dcdcdc); |
| 209 border-radius: 3px; | 218 border-radius: 3px; |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 751 -webkit-animation-delay: 300ms; | 760 -webkit-animation-delay: 300ms; |
| 752 } | 761 } |
| 753 | 762 |
| 754 #two-sided-div { | 763 #two-sided-div { |
| 755 margin-top: 10px; | 764 margin-top: 10px; |
| 756 } | 765 } |
| 757 | 766 |
| 758 input[disabled] + label { | 767 input[disabled] + label { |
| 759 color: gray; | 768 color: gray; |
| 760 } | 769 } |
| OLD | NEW |