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

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

Issue 2202943002: Converted Observatory error-ref element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 removed */ 369 removed */
370 370
371 code-ref-wrapped > a[href]:hover { 371 code-ref-wrapped > a[href]:hover {
372 text-decoration: underline; 372 text-decoration: underline;
373 } 373 }
374 code-ref-wrapped > a[href] { 374 code-ref-wrapped > a[href] {
375 color: #0489c3; 375 color: #0489c3;
376 text-decoration: none; 376 text-decoration: none;
377 } 377 }
378 378
379 /* error-ref */
380 /* TODO(cbernaschina) fix error-ref-wrapped to error-ref when wrapper
381 removed */
382
383 error-ref-wrapped > pre {
384 background-color: #f5f5f5;
385 border: 1px solid #ccc;
386 padding: 10px;
387 font-family: consolas, courier, monospace;
388 font-size: 1em;
389 line-height: 1.2em;
390 white-space: pre;
391 }
392
379 /* function-ref */ 393 /* function-ref */
380 /* TODO(cbernaschina) fix function-ref-wrapped to function-ref when wrapper 394 /* TODO(cbernaschina) fix function-ref-wrapped to function-ref when wrapper
381 removed */ 395 removed */
382 396
383 function-ref-wrapped > a[href]:hover { 397 function-ref-wrapped > a[href]:hover {
384 text-decoration: underline; 398 text-decoration: underline;
385 } 399 }
386 function-ref-wrapped > a[href] { 400 function-ref-wrapped > a[href] {
387 color: #0489c3; 401 color: #0489c3;
388 text-decoration: none; 402 text-decoration: none;
389 } 403 }
390 404
391 /* isolate-ref */ 405 /* isolate-ref */
392 /* TODO(cbernaschina) fix isolate-ref-ref-wrapped to isolate-ref when wrapper 406 /* TODO(cbernaschina) fix isolate-ref-wrapped to isolate-ref when wrapper
393 removed */ 407 removed */
394 408
395 isolate-ref-wrapped > a[href]:hover { 409 isolate-ref-wrapped > a[href]:hover {
396 text-decoration: underline; 410 text-decoration: underline;
397 } 411 }
398 isolate-ref-wrapped > a[href] { 412 isolate-ref-wrapped > a[href] {
399 color: #0489c3; 413 color: #0489c3;
400 text-decoration: none; 414 text-decoration: none;
401 } 415 }
402 416
403 /* nav-notify */ 417 /* nav-notify */
404 /* TODO(cbernaschina) fix nav-notify-ref-wrapped to nav-notify-ref when wrapper 418 /* TODO(cbernaschina) fix nav-notify-wrapped to nav-notify when wrapper
405 removed */ 419 removed */
406 nav-notify-wrapped > div { 420 nav-notify-wrapped > div {
407 float: right; 421 float: right;
408 } 422 }
409 nav-notify-wrapped > div > div { 423 nav-notify-wrapped > div > div {
410 display: block; 424 display: block;
411 position: absolute; 425 position: absolute;
412 top: 98%; 426 top: 98%;
413 right: 0; 427 right: 0;
414 margin: 0; 428 margin: 0;
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 vm-connect-target > button.delete-button { 588 vm-connect-target > button.delete-button {
575 margin-left: 0.28em; 589 margin-left: 0.28em;
576 padding: 4px; 590 padding: 4px;
577 background: transparent; 591 background: transparent;
578 border: none !important; 592 border: none !important;
579 } 593 }
580 594
581 vm-connect-target > button.delete-button:hover { 595 vm-connect-target > button.delete-button:hover {
582 background: #ff0000; 596 background: #ff0000;
583 } 597 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/elements.dart ('k') | runtime/observatory/lib/src/elements/error_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698