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

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

Issue 2237383004: Fixed Observatory class-view crash (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
« no previous file with comments | « runtime/observatory/lib/src/elements/containers/virtual_collection.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 } 440 }
441 441
442 /* cpu-profile-virtual-tree */ 442 /* cpu-profile-virtual-tree */
443 443
444 cpu-profile-virtual-tree { 444 cpu-profile-virtual-tree {
445 display: block; 445 display: block;
446 height: 600px; 446 height: 600px;
447 } 447 }
448 448
449 cpu-profile-virtual-tree .tree-item { 449 cpu-profile-virtual-tree .tree-item {
450 box-sizing: border-box;
450 line-height: 30px; 451 line-height: 30px;
451 height: 30px; 452 height: 30px;
452 padding-left: 5%; 453 padding-left: 5%;
453 padding-right: 5%; 454 padding-right: 5%;
454 } 455 }
455 456
456 cpu-profile-virtual-tree .tree-item > .inclusive, 457 cpu-profile-virtual-tree .tree-item > .inclusive,
457 cpu-profile-virtual-tree .tree-item > .exclusive, 458 cpu-profile-virtual-tree .tree-item > .exclusive,
458 cpu-profile-virtual-tree .tree-item > .percentage { 459 cpu-profile-virtual-tree .tree-item > .percentage {
459 display: inline-block; 460 display: inline-block;
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 height: 100%; 747 height: 100%;
747 } 748 }
748 749
749 observatory-application > div { 750 observatory-application > div {
750 display: block; 751 display: block;
751 height: 100%; 752 height: 100%;
752 } 753 }
753 754
754 /* sample-buffer-control */ 755 /* sample-buffer-control */
755 756
757 sample-buffer-control {
758 white-space: nowrap;
759 }
760
756 sample-buffer-control .statusMessage { 761 sample-buffer-control .statusMessage {
757 font-size: 150%; 762 font-size: 150%;
758 font-weight: bold; 763 font-weight: bold;
759 } 764 }
760 765
761 sample-buffer-control .statusBox { 766 sample-buffer-control .statusBox {
762 height: 100%; 767 height: 100%;
763 padding: 1em; 768 padding: 1em;
764 } 769 }
765 770
766 sample-buffer-control .center { 771 sample-buffer-control .center {
767 align-items: center; 772 align-items: center;
768 justify-content: center; 773 justify-content: center;
769 } 774 }
770 775
771 sample-buffer-control .notice { 776 sample-buffer-control .notice {
772 background-color: #fcf8e3; 777 background-color: #fcf8e3;
773 } 778 }
774 779
775 sample-buffer-control .red { 780 sample-buffer-control .red {
776 background-color: #f2dede; 781 background-color: #f2dede;
777 } 782 }
778 783
779 sample-buffer-control .shadow { 784 sample-buffer-control .shadow {
780 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 785 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16),
781 0 2px 5px 0 rgba(0, 0, 0, 0.26); 786 0 2px 5px 0 rgba(0, 0, 0, 0.26);
782 } 787 }
783 788
789 /* stack-trace-tree-config */
790
791 stack-trace-tree-config {
792 white-space: nowrap;
793 }
794
784 /* view-footer */ 795 /* view-footer */
785 796
786 view-footer { 797 view-footer {
787 padding: 1em; 798 padding: 1em;
788 padding-top: 10.3em; 799 padding-top: 10.3em;
789 float: right; 800 float: right;
790 align-content: right; 801 align-content: right;
791 } 802 }
792 803
793 view-footer > a { 804 view-footer > a {
794 margin-bottom: 0.17em; 805 margin-bottom: 0.17em;
795 font-size: 90%; 806 font-size: 90%;
796 float: right; 807 float: right;
797 clear: both; 808 clear: both;
798 display: block; 809 display: block;
799 } 810 }
800 811
801 /* virtual-collection */ 812 /* virtual-collection */
802 813
803 virtual-collection { 814 virtual-collection {
804 display: block; 815 display: block;
805 overflow-y: scroll; 816 overflow-y: scroll;
806 width: 100%; 817 width: 100%;
807 height: 100%; 818 height: 100%;
808 } 819 }
809 820
810 virtual-collection .scroller { 821 virtual-collection .scroller {
811 position: relative;
812 overflow: hidden; 822 overflow: hidden;
813 background: transparent; 823 background: transparent;
824 display: inline-block;
825 min-width: 100%;
814 } 826 }
815 827
816 virtual-collection .shifter { 828 virtual-collection .shifter {
817 background: transparent; 829 background: transparent;
818 position: absolute; 830 position: relative;
819 top: 0; 831 display: inline-block;
820 left: 0; 832 min-width: 100%;
821 right: 0;
822 } 833 }
823 834
824 virtual-collection .shifter > * { 835 virtual-collection .shifter > * {
825 display: block; 836 display: inline-block;
826 position: relative; 837 min-width: 100%;
827 top: -25%;
828 width: 100%;
829 white-space: nowrap;
830 text-overflow: ellipsis;
831 overflow-x: hidden;
832 white-space: nowrap; 838 white-space: nowrap;
833 } 839 }
834 840
835 /* virtual-tree */ 841 /* virtual-tree */
836 842
837 virtual-tree .expander { 843 virtual-tree .expander {
838 display: inline-block; 844 display: inline-block;
839 text-align: center; 845 text-align: center;
840 font-weight: bold; 846 font-weight: bold;
841 font-size: 18px; 847 font-size: 18px;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 905
900 vm-connect-target > button.delete-button:hover { 906 vm-connect-target > button.delete-button:hover {
901 background: #ff0000; 907 background: #ff0000;
902 } 908 }
903 909
904 /* vm-connect */ 910 /* vm-connect */
905 911
906 vm-connect ul { 912 vm-connect ul {
907 list-style-type: none; 913 list-style-type: none;
908 } 914 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/containers/virtual_collection.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698