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

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

Issue 10967055: Merge 158110 - Little nitpickery on extensions doc styles. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1271/src/
Patch Set: Created 8 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 color: #A03; 48 color: #A03;
49 } 49 }
50 50
51 a, a:link { 51 a, a:link {
52 text-decoration: none; 52 text-decoration: none;
53 color: #39F; 53 color: #39F;
54 font-weight: 600; 54 font-weight: 600;
55 } 55 }
56 56
57 a:visited { 57 a:visited {
58 color: #194c7f; 58 color: #236bb2;
59 } 59 }
60 60
61 a:active, 61 a:active,
62 a:hover { 62 a:hover {
63 color: #236bb2; 63 color: #3bf;
64 } 64 }
65 65
66 #toc a { 66 #toc a {
67 color: black; 67 color: black;
68 } 68 }
69 69
70 ol, ul { 70 ol, ul {
71 color: #767676; 71 color: #767676;
72 } 72 }
73 73
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 #gc-toc div.line { 362 #gc-toc div.line {
363 border-top: thin solid #FAFAFA; 363 border-top: thin solid #FAFAFA;
364 height: 1px; 364 height: 1px;
365 margin: 1.3em 1em 0 0; 365 margin: 1.3em 1em 0 0;
366 padding: 0; 366 padding: 0;
367 } 367 }
368 368
369 #toc { 369 #toc {
370 background-color: #F5F5F5; 370 background-color: #F5F5F5;
371 float: right; 371 float: right;
372 margin: 5px 0px 5px 20px; 372 margin: 5px 0px 0px 0px;
373 padding: 5px; 373 padding: 5px;
374 width: 250px; 374 width: 250px;
375 word-break: break-word; 375 word-break: break-word;
376 /* We want this element to have a visual left-margin of 20px, but margins on
377 floated elements don't affect the borders and background of the elements
378 they float over. So we add this border to force the issue. */
379 border-left: 20px solid white;
380 border-bottom: 20px solid white;
376 } 381 }
377 382
378 #toc * { 383 #toc * {
379 padding: 0; 384 padding: 0;
380 list-style: none; 385 list-style: none;
381 font-weight: 600; 386 font-weight: 600;
382 } 387 }
383 388
384 #toc h2 { 389 #toc h2 {
385 font-weight: bold; 390 font-weight: bold;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 437
433 td.gsc-input { 438 td.gsc-input {
434 padding: 0 0; 439 padding: 0 0;
435 } 440 }
436 441
437 div.gsc-input-box { 442 div.gsc-input-box {
438 height: 30px; 443 height: 30px;
439 width: 250px; 444 width: 250px;
440 float: right; 445 float: right;
441 } 446 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698