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

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

Issue 2267863002: Converted Observatory ports-page element (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
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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 font-family: consolas, courier, monospace; 689 font-family: consolas, courier, monospace;
690 font-size: 12px; 690 font-size: 12px;
691 white-space: pre; 691 white-space: pre;
692 overflow-x: auto; 692 overflow-x: auto;
693 } 693 }
694 694
695 /* instance-ref */ 695 /* instance-ref */
696 /* TODO(cbernaschina) fix instance-ref-wrapped to instance-ref when wrapper 696 /* TODO(cbernaschina) fix instance-ref-wrapped to instance-ref when wrapper
697 removed */ 697 removed */
698 698
699 instance-ref-wrapped > a[href]:hover {
700 text-decoration: underline;
701 }
702 instance-ref-wrapped > a[href] {
703 color: #0489c3;
704 text-decoration: none;
705 }
706 instance-ref-wrapped > a[href] * {
707 color: inherit;
708 }
699 instance-ref-wrapped .empathize { 709 instance-ref-wrapped .empathize {
700 font-style: italic; 710 font-style: italic;
701 } 711 }
702 instance-ref-wrapped .indent { 712 instance-ref-wrapped .indent {
703 margin-left: 1.5em; 713 margin-left: 1.5em;
704 font: 400 14px 'Montserrat', sans-serif; 714 font: 400 14px 'Montserrat', sans-serif;
705 line-height: 150%; 715 line-height: 150%;
706 } 716 }
707 instance-ref-wrapped .stackTraceBox { 717 instance-ref-wrapped .stackTraceBox {
708 margin-left: 1.5em; 718 margin-left: 1.5em;
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 observatory-application { 942 observatory-application {
933 display: block; 943 display: block;
934 height: 100%; 944 height: 100%;
935 } 945 }
936 946
937 observatory-application > div { 947 observatory-application > div {
938 display: block; 948 display: block;
939 height: 100%; 949 height: 100%;
940 } 950 }
941 951
952 /* ports-page */
953
954 ports-page .port-number {
955 font-weight: bold;
956 }
957
942 /* script-ref */ 958 /* script-ref */
943 /* TODO(cbernaschina) fix script-ref-wrapped to script-ref when wrapper 959 /* TODO(cbernaschina) fix script-ref-wrapped to script-ref when wrapper
944 removed */ 960 removed */
945 961
946 script-ref-wrapped > a[href]:hover { 962 script-ref-wrapped > a[href]:hover {
947 text-decoration: underline; 963 text-decoration: underline;
948 } 964 }
949 965
950 script-ref-wrapped > a[href] { 966 script-ref-wrapped > a[href] {
951 color: #0489c3; 967 color: #0489c3;
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 1157
1142 vm-connect-target > button.delete-button:hover { 1158 vm-connect-target > button.delete-button:hover {
1143 background: #ff0000; 1159 background: #ff0000;
1144 } 1160 }
1145 1161
1146 /* vm-connect */ 1162 /* vm-connect */
1147 1163
1148 vm-connect ul { 1164 vm-connect ul {
1149 list-style-type: none; 1165 list-style-type: none;
1150 } 1166 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698