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

Side by Side Diff: chrome/common/extensions/docs/static/css/site.css

Issue 15087006: Docserver: there is only one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better redirects Created 7 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 | Annotate | Revision Log
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 5
6 .hidden { 6 .hidden {
7 display: none; 7 display: none;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 196
197 #gc-topnav a, 197 #gc-topnav a,
198 #gc-topnav button { 198 #gc-topnav button {
199 background: none; 199 background: none;
200 border: none; 200 border: none;
201 color: #333; 201 color: #333;
202 cursor: pointer; 202 cursor: pointer;
203 font-family: inherit; 203 font-family: inherit;
204 font-size: inherit; 204 font-size: inherit;
205 font-style: inherit; 205 font-style: inherit;
206 font-weight: bold;
207 margin: 0; padding: 0; 206 margin: 0; padding: 0;
208 outline: none; 207 outline: none;
209 } 208 }
210 #gc-topnav a:focus, 209 #gc-topnav a:focus,
211 #gc-topnav button:focus { 210 #gc-topnav button:focus {
212 outline: 1px dotted; 211 outline: 1px dotted;
213 } 212 }
214 213
215 #branch-chooser { 214 #platform-chooser {
216 display: inline; 215 display: inline;
217 position: relative; 216 position: relative;
218 font-weight: bold;
219 }
220 #branch-chooser .stable {
221 color: #0d68ae;
222 }
223 #branch-chooser .beta {
224 color: #409544;
225 }
226 #branch-chooser .dev {
227 color: #dba30d;
228 }
229 #branch-chooser .trunk {
230 color: #e02629;
231 } 217 }
232 218
233 #branch-chooser-popup { 219 #platform-chooser-popup {
234 /* Make it appear to be an extension of the header. */ 220 /* Make it appear to be an extension of the header. */
235 background-color: white; 221 background-color: white;
236 border: 1px solid #F5F5F5; 222 border: 1px solid #F5F5F5;
237 border-top: none; 223 border-top: none;
238 z-index: 4; 224 z-index: 4;
239 /* Ready to be shown by popup.js. */ 225 /* Ready to be shown by popup.js. */
240 position: absolute; 226 position: absolute;
241 display: none; 227 display: none;
242 /* Align with the button, which have padding:6px. */ 228 /* Align with the button, which have padding:6px. */
243 left: -6px; 229 left: -6px;
244 } 230 }
245 231
246 #branch-chooser-popup button { 232 #platform-chooser-popup button {
247 display: block; 233 display: block;
248 padding: 6px; 234 padding: 6px;
249 width: 100%; 235 width: 100%;
250 text-align: left; 236 text-align: left;
251 } 237 }
252 #branch-chooser-popup button:hover { 238 #platform-chooser-popup button:hover {
253 background-color: #F5F5F5; 239 color: #4787ed;
254 } 240 }
255 241
256 button.google-button { 242 button.google-button {
257 background-color: #f5f5f5; 243 background-color: #f5f5f5;
258 border: 1px solid rgba(0,0,0,0.1); 244 border: 1px solid rgba(0,0,0,0.1);
259 text-transform: uppercase; 245 text-transform: uppercase;
260 border-radius: 2px 0 0 0; 246 border-radius: 2px 0 0 0;
261 -webkit-border-radius: 2px 0 0 0; 247 -webkit-border-radius: 2px 0 0 0;
262 -moz-border-radius: 2px 0 0 0; 248 -moz-border-radius: 2px 0 0 0;
263 white-space: nowrap; 249 white-space: nowrap;
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 border: 1px solid #ccc; 577 border: 1px solid #ccc;
592 margin-top: -1px; 578 margin-top: -1px;
593 } 579 }
594 tabs content.unselected { 580 tabs content.unselected {
595 display: none; 581 display: none;
596 } 582 }
597 tabs content pre { 583 tabs content pre {
598 margin: 0; 584 margin: 0;
599 padding: 10px; 585 padding: 10px;
600 } 586 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698