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

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

Issue 2266343002: Converted Observatory heap-snapshot element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Added missing explanation text 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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 removed */ 659 removed */
660 660
661 function-ref-wrapped > a[href]:hover { 661 function-ref-wrapped > a[href]:hover {
662 text-decoration: underline; 662 text-decoration: underline;
663 } 663 }
664 function-ref-wrapped > a[href] { 664 function-ref-wrapped > a[href] {
665 color: #0489c3; 665 color: #0489c3;
666 text-decoration: none; 666 text-decoration: none;
667 } 667 }
668 668
669 /* heap-snapshot */
670
671 heap-snapshot .explanation {
672 display: block;
673 display: -webkit-box;
674 -webkit-line-clamp: 4;
675 -webkit-box-orient: vertical;
676 max-height: 80px;
677 overflow: hidden;
678 text-overflow: ellipsis;
679 }
680
681 heap-snapshot virtual-tree {
682 position: absolute;
683 height: auto;
684 top: 250px;
685 bottom: 0;
686 left: 0;
687 right: 0;
688 }
689 heap-snapshot .tree-item {
690 box-sizing: border-box;
691 line-height: 30px;
692 height: 30px;
693 padding-left: 5%;
694 padding-right: 5%;
695 }
696 heap-snapshot .tree-item > .size,
697 heap-snapshot .tree-item > .percentage {
698 display: inline-block;
699 text-align: right;
700 width: 4em;
701 margin-left: 0.25em;
702 margin-right: 0.25em;
703 }
704
705 heap-snapshot .tree-item > .name {
706 display: inline;
707 margin-left: 0.5em;
708 }
709
710
669 /* inbound-reference */ 711 /* inbound-reference */
670 712
671 inbound-reference > a[href]:hover { 713 inbound-reference > a[href]:hover {
672 text-decoration: underline; 714 text-decoration: underline;
673 } 715 }
674 inbound-reference > a[href] { 716 inbound-reference > a[href] {
675 color: #0489c3; 717 color: #0489c3;
676 text-decoration: none; 718 text-decoration: none;
677 } 719 }
678 720
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 object-common-wrapped button { 972 object-common-wrapped button {
931 background-color: transparent; 973 background-color: transparent;
932 border: none; 974 border: none;
933 color: #0489c3; 975 color: #0489c3;
934 padding: 0; 976 padding: 0;
935 margin: -8px 4px; 977 margin: -8px 4px;
936 font-size: 20px; 978 font-size: 20px;
937 text-decoration: none; 979 text-decoration: none;
938 } 980 }
939 981
982 /* object-pool-ref */
983
984 object-pool-ref > a[href]:hover {
985 text-decoration: underline;
986 }
987
988 object-pool-ref > a[href] {
989 color: #0489c3;
990 text-decoration: none;
991 }
992
993 object-pool-ref > a[href] * {
994 color: inherit;
995 }
996
940 /* observatory-application */ 997 /* observatory-application */
941 998
942 observatory-application { 999 observatory-application {
943 display: block; 1000 display: block;
944 height: 100%; 1001 height: 100%;
945 } 1002 }
946 1003
947 observatory-application > div { 1004 observatory-application > div {
948 display: block; 1005 display: block;
949 height: 100%; 1006 height: 100%;
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1157 1214
1158 vm-connect-target > button.delete-button:hover { 1215 vm-connect-target > button.delete-button:hover {
1159 background: #ff0000; 1216 background: #ff0000;
1160 } 1217 }
1161 1218
1162 /* vm-connect */ 1219 /* vm-connect */
1163 1220
1164 vm-connect ul { 1221 vm-connect ul {
1165 list-style-type: none; 1222 list-style-type: none;
1166 } 1223 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698