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

Side by Side Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 2244433003: Converted Observatory refs elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: All element tested Created 4 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
OLDNEW
1 /* Global styles */ 1 /* Global styles */
2 * { 2 * {
3 margin: 0; 3 margin: 0;
4 padding: 0; 4 padding: 0;
5 font: 400 14px 'Montserrat', sans-serif; 5 font: 400 14px 'Montserrat', sans-serif;
6 color: #333; 6 color: #333;
7 box-sizing: border-box; 7 box-sizing: border-box;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 removed */ 510 removed */
511 511
512 function-ref-wrapped > a[href]:hover { 512 function-ref-wrapped > a[href]:hover {
513 text-decoration: underline; 513 text-decoration: underline;
514 } 514 }
515 function-ref-wrapped > a[href] { 515 function-ref-wrapped > a[href] {
516 color: #0489c3; 516 color: #0489c3;
517 text-decoration: none; 517 text-decoration: none;
518 } 518 }
519 519
520 /* instance-ref */
521 /* TODO(cbernaschina) fix instance-ref-wrapped to instance-ref when wrapper
522 removed */
523
524 instance-ref-wrapped .empathize {
525 font-style: italic;
526 }
527 instance-ref-wrapped .indent {
528 margin-left: 1.5em;
529 font: 400 14px 'Montserrat', sans-serif;
530 line-height: 150%;
531 }
532 instance-ref-wrapped .stackTraceBox {
533 margin-left: 1.5em;
534 background-color: #f5f5f5;
535 border: 1px solid #ccc;
536 padding: 10px;
537 font-family: consolas, courier, monospace;
538 font-size: 12px;
539 white-space: pre;
540 overflow-x: auto;
541 }
542
520 /* isolate-counter-chart */ 543 /* isolate-counter-chart */
521 544
522 isolate-counter-chart { 545 isolate-counter-chart {
523 display: block; 546 display: block;
524 position: relative; 547 position: relative;
525 height: 300px; 548 height: 300px;
526 min-width: 350px; 549 min-width: 350px;
527 } 550 }
528 isolate-counter-chart > div.host { 551 isolate-counter-chart > div.host {
529 position: absolute; 552 position: absolute;
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 922
900 vm-connect-target > button.delete-button:hover { 923 vm-connect-target > button.delete-button:hover {
901 background: #ff0000; 924 background: #ff0000;
902 } 925 }
903 926
904 /* vm-connect */ 927 /* vm-connect */
905 928
906 vm-connect ul { 929 vm-connect ul {
907 list-style-type: none; 930 list-style-type: none;
908 } 931 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698