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

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

Issue 2202973002: Converted Observatory isolate-reconnect 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 removed */ 381 removed */
382 382
383 function-ref-wrapped > a[href]:hover { 383 function-ref-wrapped > a[href]:hover {
384 text-decoration: underline; 384 text-decoration: underline;
385 } 385 }
386 function-ref-wrapped > a[href] { 386 function-ref-wrapped > a[href] {
387 color: #0489c3; 387 color: #0489c3;
388 text-decoration: none; 388 text-decoration: none;
389 } 389 }
390 390
391 /* isolate-reconnect */
392
393 isolate-reconnect div.doubleSpaced {
394 line-height: 2em;
395 }
396
391 /* isolate-ref */ 397 /* isolate-ref */
392 /* TODO(cbernaschina) fix isolate-ref-ref-wrapped to isolate-ref when wrapper 398 /* TODO(cbernaschina) fix isolate-ref-ref-wrapped to isolate-ref when wrapper
393 removed */ 399 removed */
394 400
395 isolate-ref-wrapped > a[href]:hover { 401 isolate-ref-wrapped > a[href]:hover {
396 text-decoration: underline; 402 text-decoration: underline;
397 } 403 }
398 isolate-ref-wrapped > a[href] { 404 isolate-ref-wrapped > a[href] {
399 color: #0489c3; 405 color: #0489c3;
400 text-decoration: none; 406 text-decoration: none;
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 vm-connect-target > button.delete-button { 580 vm-connect-target > button.delete-button {
575 margin-left: 0.28em; 581 margin-left: 0.28em;
576 padding: 4px; 582 padding: 4px;
577 background: transparent; 583 background: transparent;
578 border: none !important; 584 border: none !important;
579 } 585 }
580 586
581 vm-connect-target > button.delete-button:hover { 587 vm-connect-target > button.delete-button:hover {
582 background: #ff0000; 588 background: #ff0000;
583 } 589 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698