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

Side by Side Diff: pkg/dartdoc/static/styles.css

Issue 11028138: Fields, getters and setters documented as properties. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments + UI bug fixed 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 | « pkg/dartdoc/lib/src/mirrors/dart2js_mirror.dart ('k') | 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 /* Reset */ 1 /* Reset */
2 body, h1, h2, h3, h4, li, ol, p, pre, section, ul { 2 body, h1, h2, h3, h4, li, ol, p, pre, section, ul {
3 margin: 0; 3 margin: 0;
4 padding: 0; 4 padding: 0;
5 } 5 }
6 6
7 body { 7 body {
8 font-family: Georgia, serif; 8 font-family: Georgia, serif;
9 background: #e8e8e8; 9 background: #e8e8e8;
10 color: #333; 10 color: #333;
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 margin: 0 -22px; 354 margin: 0 -22px;
355 border: solid 4px hsl(40, 100%, 85%); 355 border: solid 4px hsl(40, 100%, 85%);
356 padding: 0 18px; 356 padding: 0 18px;
357 border-top: none; 357 border-top: none;
358 border-bottom: none; 358 border-bottom: none;
359 } 359 }
360 360
361 /* Only show the "code" link for the highlighted member. */ 361 /* Only show the "code" link for the highlighted member. */
362 .show-code, .show-inherited { 362 .show-code, .show-inherited {
363 float: right; 363 float: right;
364 font: 600 11px/22px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande', 364 font: 600 11px 'Open Sans', 'Lucida Sans Unicode', 'Lucida Grande',
365 sans-serif; 365 sans-serif;
366 padding: 0 0 6px 0; /* In case it gets too close to the member. */ 366 padding: 0 0 0 6px; /* In case it gets too close to the member. */
367 border: none; 367 border: none;
368 background: transparent; 368 background: transparent;
369 margin: 0; 369 margin: 0;
370 } 370 }
371 371
372 .method:hover .show-code, 372 .method:hover .show-code,
373 .field:hover .show-code { 373 .field:hover .show-code {
374 display: inline; 374 display: inline;
375 } 375 }
376 376
(...skipping 11 matching lines...) Expand all
388 pre.source { 388 pre.source {
389 display: none; 389 display: none;
390 } 390 }
391 391
392 pre.source.expanded { 392 pre.source.expanded {
393 display: block; 393 display: block;
394 } 394 }
395 395
396 /* Links that don't cause a page refresh. */ 396 /* Links that don't cause a page refresh. */
397 .anchor-link, .anchor-link:visited, 397 .anchor-link, .anchor-link:visited,
398 .show-code, .show-code:visited, 398 .show-code, .show-code:visited,
399 .show-inherited, .show-inherited:visited { 399 .show-inherited, .show-inherited:visited {
400 color: hsl(40, 100%, 40%); 400 color: hsl(40, 100%, 40%);
401 cursor: pointer; 401 cursor: pointer;
402 } 402 }
403 403
404 .anchor-link, .anchor-link:visited, 404 .anchor-link, .anchor-link:visited,
405 .show-code, .show-code:visited { 405 .show-code, .show-code:visited {
406 display: none; 406 display: none;
407 } 407 }
408 408
409 .anchor-link:hover, 409 .anchor-link:hover,
410 .show-code:hover, 410 .show-code:hover,
411 .show-inherited:hover { 411 .show-inherited:hover {
412 color: hsl(40, 100%, 60%); 412 color: hsl(40, 100%, 60%);
413 } 413 }
414 414
415 /* Syntax highlighting. */ 415 /* Syntax highlighting. */
416 /* Note: these correspond to the constants in classify.dart. */ 416 /* Note: these correspond to the constants in classify.dart. */
417 pre.source .e { color: hsl( 0, 100%, 70%); } /* Error */ 417 pre.source .e { color: hsl( 0, 100%, 70%); } /* Error */
418 pre.source .c { color: hsl(220, 20%, 65%); } /* Comment */ 418 pre.source .c { color: hsl(220, 20%, 65%); } /* Comment */
419 pre.source .i { color: hsl(220, 20%, 20%); } /* Identifier */ 419 pre.source .i { color: hsl(220, 20%, 20%); } /* Identifier */
420 pre.source .k { color: hsl(220, 100%, 50%); } /* Keyword */ 420 pre.source .k { color: hsl(220, 100%, 50%); } /* Keyword */
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 } 465 }
466 466
467 p { 467 p {
468 border-left: solid 4px purple; 468 border-left: solid 4px purple;
469 } 469 }
470 470
471 section { 471 section {
472 border-left: solid 4px gray; 472 border-left: solid 4px gray;
473 } 473 }
474 */ 474 */
OLDNEW
« no previous file with comments | « pkg/dartdoc/lib/src/mirrors/dart2js_mirror.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698