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

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

Issue 10827304: Extensions Docs Server: Highlight links on left nav (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 body { 6 body {
7 color: #333; 7 color: #333;
8 font: 13px/22px 'Open Sans',arial,sans-serif; 8 font: 13px/22px 'Open Sans',arial,sans-serif;
9 font-weight: 400; 9 font-weight: 400;
10 background-color: white; 10 background-color: white;
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 } 333 }
334 334
335 #gc-toc .toggle.selected { 335 #gc-toc .toggle.selected {
336 background-position: 0 -9px; 336 background-position: 0 -9px;
337 } 337 }
338 338
339 #gc-toc .toggle:active { 339 #gc-toc .toggle:active {
340 top: 0px; 340 top: 0px;
341 } 341 }
342 342
343 #gc-toc ul .leftNavSelected { 343 #gc-toc .leftNavSelected {
344 background-color: #F1F1F1; 344 color: #39F;
345 color: black;
346 text-decoration: none; 345 text-decoration: none;
347 z-index: 1;
348 position: relative; 346 position: relative;
347 cursor: default;
not at google - send to devlin 2012/08/13 23:17:21 cursor styling should be unnecssary if we just rem
cduvall 2012/08/13 23:46:10 Done.
349 } 348 }
350 349
351 #gc-toc div.line { 350 #gc-toc div.line {
352 border-top: thin solid #FAFAFA; 351 border-top: thin solid #FAFAFA;
353 height: 1px; 352 height: 1px;
354 margin: 1.3em 1em 0 0; 353 margin: 1.3em 1em 0 0;
355 padding: 0; 354 padding: 0;
356 } 355 }
357 356
358 #toc { 357 #toc {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 } 401 }
403 402
404 /* Specificity hack to override the "a" rule. */ 403 /* Specificity hack to override the "a" rule. */
405 #filtered_apis * { 404 #filtered_apis * {
406 color: #50A9D5; 405 color: #50A9D5;
407 } 406 }
408 407
409 #skipto { 408 #skipto {
410 display: none; 409 display: none;
411 } 410 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698