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

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

Issue 2203433002: Added new implementations for virtual containers (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Added new files to observatory_sources.gypi 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 } 470 }
471 471
472 view-footer > a { 472 view-footer > a {
473 margin-bottom: 0.17em; 473 margin-bottom: 0.17em;
474 font-size: 90%; 474 font-size: 90%;
475 float: right; 475 float: right;
476 clear: both; 476 clear: both;
477 display: block; 477 display: block;
478 } 478 }
479 479
480 /* virtual-collection */
481
482 virtual-collection {
483 display: block;
484 overflow-y: scroll;
485 width: 100%;
486 height: 100%;
487 }
488
489 virtual-collection .scroller {
490 position: relative;
491 overflow: hidden;
492 background: transparent;
493 }
494
495 virtual-collection .shifter {
496 background: transparent;
497 position: absolute;
498 top: 0;
499 left: 0;
500 right: 0;
501 }
502
503 virtual-collection .shifter > * {
504 position: relative;
505 top: -25%;
506 }
507
480 /* vm-connect-target */ 508 /* vm-connect-target */
481 509
482 vm-connect-target > button.delete-button { 510 vm-connect-target > button.delete-button {
483 margin-left: 0.28em; 511 margin-left: 0.28em;
484 padding: 4px; 512 padding: 4px;
485 background: transparent; 513 background: transparent;
486 border: none !important; 514 border: none !important;
487 } 515 }
488 516
489 vm-connect-target > button.delete-button:hover { 517 vm-connect-target > button.delete-button:hover {
490 background: #ff0000; 518 background: #ff0000;
491 } 519 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698