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

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

Issue 2194383002: Converted Observatory code-ref function-ref element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed CSS problem 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 -ms-transform: translate3d(10px, 0, 0); 357 -ms-transform: translate3d(10px, 0, 0);
358 transform: translate3d(10px, 0, 0); 358 transform: translate3d(10px, 0, 0);
359 } 359 }
360 } 360 }
361 361
362 .shake { 362 .shake {
363 animation: shake 0.5s; 363 animation: shake 0.5s;
364 -webkit-animation: shake 0.5s; 364 -webkit-animation: shake 0.5s;
365 } 365 }
366 366
367 /* code-ref */
368 /* TODO(cbernaschina) fix code-ref-wrapped to code-ref when wrapper
369 removed */
370
371 code-ref-wrapped > a[href]:hover {
372 text-decoration: underline;
373 }
374 code-ref-wrapped > a[href] {
375 color: #0489c3;
376 text-decoration: none;
377 }
378
379 /* function-ref */
380 /* TODO(cbernaschina) fix function-ref-wrapped to function-ref when wrapper
381 removed */
382
383 function-ref-wrapped > a[href]:hover {
384 text-decoration: underline;
385 }
386 function-ref-wrapped > a[href] {
387 color: #0489c3;
388 text-decoration: none;
389 }
390
391 /* isolate-ref */
392 /* TODO(cbernaschina) fix isolate-ref-ref-wrapped to isolate-ref when wrapper
393 removed */
394
395 isolate-ref-wrapped > a[href]:hover {
396 text-decoration: underline;
397 }
398 isolate-ref-wrapped > a[href] {
399 color: #0489c3;
400 text-decoration: none;
401 }
402
367 /* nav-notify */ 403 /* nav-notify */
368 /* TODO(cbernaschina) fix nav-notify-ref-wrapped to nav-notify-ref when wrapper 404 /* TODO(cbernaschina) fix nav-notify-ref-wrapped to nav-notify-ref when wrapper
369 removed */ 405 removed */
370 nav-notify-wrapped > div { 406 nav-notify-wrapped > div {
371 float: right; 407 float: right;
372 } 408 }
373 nav-notify-wrapped > div > div { 409 nav-notify-wrapped > div > div {
374 display: block; 410 display: block;
375 position: absolute; 411 position: absolute;
376 top: 98%; 412 top: 98%;
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 } 489 }
454 nav-refresh-wrapped > li > button[disabled] { 490 nav-refresh-wrapped > li > button[disabled] {
455 color: #aaa; 491 color: #aaa;
456 cursor: wait; 492 cursor: wait;
457 } 493 }
458 nav-refresh-wrapped > li { 494 nav-refresh-wrapped > li {
459 float: right; 495 float: right;
460 margin: 0; 496 margin: 0;
461 } 497 }
462 498
499 /* script-ref */
500 /* TODO(cbernaschina) fix script-ref-wrapped to script-ref when wrapper
501 removed */
502
503 script-ref-wrapped > a[href]:hover {
504 text-decoration: underline;
505 }
506
507 script-ref-wrapped > a[href] {
508 color: #0489c3;
509 text-decoration: none;
510 }
511
512 /* source-link */
513 /* TODO(cbernaschina) fix source-link-wrapped to source-link when wrapper
514 removed */
515
516 source-link-wrapped > a[href]:hover {
517 text-decoration: underline;
518 }
519
520 source-link-wrapped > a[href] {
521 color: #0489c3;
522 text-decoration: none;
523 }
524
525
526
463 /* view-footer */ 527 /* view-footer */
464 528
465 view-footer { 529 view-footer {
466 padding: 1em; 530 padding: 1em;
467 padding-top: 10.3em; 531 padding-top: 10.3em;
468 float: right; 532 float: right;
469 align-content: right; 533 align-content: right;
470 } 534 }
471 535
472 view-footer > a { 536 view-footer > a {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 vm-connect-target > button.delete-button { 574 vm-connect-target > button.delete-button {
511 margin-left: 0.28em; 575 margin-left: 0.28em;
512 padding: 4px; 576 padding: 4px;
513 background: transparent; 577 background: transparent;
514 border: none !important; 578 border: none !important;
515 } 579 }
516 580
517 vm-connect-target > button.delete-button:hover { 581 vm-connect-target > button.delete-button:hover {
518 background: #ff0000; 582 background: #ff0000;
519 } 583 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.html ('k') | runtime/observatory/lib/src/elements/debugger.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698