| 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 | 5 |
| 6 .hidden { | 6 .hidden { |
| 7 display: none; | 7 display: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body { | 10 body { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 p.note { | 28 p.note { |
| 29 border-color: #36C; | 29 border-color: #36C; |
| 30 } | 30 } |
| 31 p.caution { | 31 p.caution { |
| 32 border-color: #FC3; | 32 border-color: #FC3; |
| 33 } | 33 } |
| 34 p.warning { | 34 p.warning { |
| 35 border-color: #A03; | 35 border-color: #A03; |
| 36 } | 36 } |
| 37 p.warning.beta { |
| 38 border-color: #409544; |
| 39 } |
| 40 p.warning.dev { |
| 41 border-color: #dba30d; |
| 42 } |
| 43 p.warning.trunk { |
| 44 border-color: #e02629; |
| 45 } |
| 37 | 46 |
| 38 p.warning em, | 47 p.warning em, |
| 39 p.warning strong { | 48 p.warning strong { |
| 40 color: #A03; | 49 color: #A03; |
| 41 } | 50 } |
| 42 | 51 |
| 43 a, a:link { | 52 a, a:link { |
| 44 text-decoration: none; | 53 text-decoration: none; |
| 45 color: #4787ed; | 54 color: #4787ed; |
| 46 font-weight: 600; | 55 font-weight: 600; |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 font-style: inherit; | 214 font-style: inherit; |
| 206 font-weight: bold; | 215 font-weight: bold; |
| 207 margin: 0; padding: 0; | 216 margin: 0; padding: 0; |
| 208 outline: none; | 217 outline: none; |
| 209 } | 218 } |
| 210 #gc-topnav a:focus, | 219 #gc-topnav a:focus, |
| 211 #gc-topnav button:focus { | 220 #gc-topnav button:focus { |
| 212 outline: 1px dotted; | 221 outline: 1px dotted; |
| 213 } | 222 } |
| 214 | 223 |
| 224 #intro-availability { |
| 225 font-weight: bold; |
| 226 } |
| 227 |
| 215 #branch-chooser { | 228 #branch-chooser { |
| 216 display: inline; | 229 display: inline; |
| 217 position: relative; | 230 position: relative; |
| 218 font-weight: bold; | 231 font-weight: bold; |
| 219 } | 232 } |
| 220 #branch-chooser .stable { | 233 #branch-chooser .stable, |
| 234 #intro-availability.stable { |
| 221 color: #0d68ae; | 235 color: #0d68ae; |
| 222 } | 236 } |
| 223 #branch-chooser .beta { | 237 #branch-chooser .beta, |
| 238 #intro-availability.beta { |
| 224 color: #409544; | 239 color: #409544; |
| 225 } | 240 } |
| 226 #branch-chooser .dev { | 241 #branch-chooser .dev, |
| 242 #intro-availability.dev { |
| 227 color: #dba30d; | 243 color: #dba30d; |
| 228 } | 244 } |
| 229 #branch-chooser .trunk { | 245 #branch-chooser .trunk, |
| 246 #intro-availability.trunk { |
| 230 color: #e02629; | 247 color: #e02629; |
| 231 } | 248 } |
| 232 | 249 |
| 233 #branch-chooser-popup { | 250 #branch-chooser-popup { |
| 234 /* Make it appear to be an extension of the header. */ | 251 /* Make it appear to be an extension of the header. */ |
| 235 background-color: white; | 252 background-color: white; |
| 236 border: 1px solid #F5F5F5; | 253 border: 1px solid #F5F5F5; |
| 237 border-top: none; | 254 border-top: none; |
| 238 z-index: 4; | 255 z-index: 4; |
| 239 /* Ready to be shown by popup.js. */ | 256 /* Ready to be shown by popup.js. */ |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 border: 1px solid #ccc; | 608 border: 1px solid #ccc; |
| 592 margin-top: -1px; | 609 margin-top: -1px; |
| 593 } | 610 } |
| 594 tabs content.unselected { | 611 tabs content.unselected { |
| 595 display: none; | 612 display: none; |
| 596 } | 613 } |
| 597 tabs content pre { | 614 tabs content pre { |
| 598 margin: 0; | 615 margin: 0; |
| 599 padding: 10px; | 616 padding: 10px; |
| 600 } | 617 } |
| OLD | NEW |