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

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

Issue 2204973003: Converted Observatory class-ref & library-ref elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed indentation 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 /* class-ref */
368 /* TODO(cbernaschina) fix class-ref-wrapped to class-ref when wrapper
369 removed */
370
371 class-ref-wrapped > a[href]:hover {
372 text-decoration: underline;
373 }
374 class-ref-wrapped > a[href] {
375 color: #0489c3;
376 text-decoration: none;
377 }
378
367 /* code-ref */ 379 /* code-ref */
368 /* TODO(cbernaschina) fix code-ref-wrapped to code-ref when wrapper 380 /* TODO(cbernaschina) fix code-ref-wrapped to code-ref when wrapper
369 removed */ 381 removed */
370 382
371 code-ref-wrapped > a[href]:hover { 383 code-ref-wrapped > a[href]:hover {
372 text-decoration: underline; 384 text-decoration: underline;
373 } 385 }
374 code-ref-wrapped > a[href] { 386 code-ref-wrapped > a[href] {
375 color: #0489c3; 387 color: #0489c3;
376 text-decoration: none; 388 text-decoration: none;
(...skipping 30 matching lines...) Expand all
407 removed */ 419 removed */
408 420
409 isolate-ref-wrapped > a[href]:hover { 421 isolate-ref-wrapped > a[href]:hover {
410 text-decoration: underline; 422 text-decoration: underline;
411 } 423 }
412 isolate-ref-wrapped > a[href] { 424 isolate-ref-wrapped > a[href] {
413 color: #0489c3; 425 color: #0489c3;
414 text-decoration: none; 426 text-decoration: none;
415 } 427 }
416 428
429 /* library-ref */
430 /* TODO(cbernaschina) fix library-ref-wrapped to library-ref when wrapper
431 removed */
432
433 library-ref-wrapped > a[href]:hover {
434 text-decoration: underline;
435 }
436 library-ref-wrapped > a[href] {
437 color: #0489c3;
438 text-decoration: none;
439 }
440
417 /* nav-notify */ 441 /* nav-notify */
418 /* TODO(cbernaschina) fix nav-notify-wrapped to nav-notify when wrapper 442 /* TODO(cbernaschina) fix nav-notify-wrapped to nav-notify when wrapper
419 removed */ 443 removed */
420 nav-notify-wrapped > div { 444 nav-notify-wrapped > div {
421 float: right; 445 float: right;
422 } 446 }
423 nav-notify-wrapped > div > div { 447 nav-notify-wrapped > div > div {
424 display: block; 448 display: block;
425 position: absolute; 449 position: absolute;
426 top: 98%; 450 top: 98%;
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 vm-connect-target > button.delete-button { 612 vm-connect-target > button.delete-button {
589 margin-left: 0.28em; 613 margin-left: 0.28em;
590 padding: 4px; 614 padding: 4px;
591 background: transparent; 615 background: transparent;
592 border: none !important; 616 border: none !important;
593 } 617 }
594 618
595 vm-connect-target > button.delete-button:hover { 619 vm-connect-target > button.delete-button:hover {
596 background: #ff0000; 620 background: #ff0000;
597 } 621 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/context_view.html ('k') | runtime/observatory/lib/src/elements/field_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698