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

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: Added qualified flag 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-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-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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 vm-connect-target > button.delete-button { 518 vm-connect-target > button.delete-button {
483 margin-left: 0.28em; 519 margin-left: 0.28em;
484 padding: 4px; 520 padding: 4px;
485 background: transparent; 521 background: transparent;
486 border: none !important; 522 border: none !important;
487 } 523 }
488 524
489 vm-connect-target > button.delete-button:hover { 525 vm-connect-target > button.delete-button:hover {
490 background: #ff0000; 526 background: #ff0000;
491 } 527 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698