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

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

Issue 2304463002: Converted Observatory vm-view && isolate-view elements (Closed)
Patch Set: Fixed typo Created 4 years, 3 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 box-sizing: border-box; 5 box-sizing: border-box;
6 } 6 }
7 7
8 body { 8 body {
9 padding-top: 56px; 9 padding-top: 56px;
10 color: #333; 10 color: #333;
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 } 1055 }
1056 isolate-counter-chart > div.legend { 1056 isolate-counter-chart > div.legend {
1057 position: absolute; 1057 position: absolute;
1058 width: 250px; 1058 width: 250px;
1059 top: 0; 1059 top: 0;
1060 right: 0; 1060 right: 0;
1061 bottom: 0; 1061 bottom: 0;
1062 overflow-y: auto; 1062 overflow-y: auto;
1063 } 1063 }
1064 1064
1065 /* isolate-location */
1066
1067 isolate-location > span {
1068 font-weight: bold;
1069 }
1070 isolate-location > a[href] {
1071 color: #0489c3;
1072 text-decoration: none;
1073 }
1074 isolate-location > a[href]:hover {
1075 text-decoration: underline;
1076 }
1077
1065 /* isolate-reconnect */ 1078 /* isolate-reconnect */
1066 1079
1067 isolate-reconnect div.doubleSpaced { 1080 isolate-reconnect div.doubleSpaced {
1068 line-height: 2em; 1081 line-height: 2em;
1069 } 1082 }
1070 1083
1071 /* isolate-ref */ 1084 /* isolate-ref */
1072 /* TODO(cbernaschina) fix isolate-ref-wrapped to isolate-ref when wrapper 1085 /* TODO(cbernaschina) fix isolate-ref-wrapped to isolate-ref when wrapper
1073 removed */ 1086 removed */
1074 1087
1075 isolate-ref-wrapped > a[href]:hover { 1088 isolate-ref-wrapped > a[href]:hover {
1076 text-decoration: underline; 1089 text-decoration: underline;
1077 } 1090 }
1078 isolate-ref-wrapped > a[href] { 1091 isolate-ref-wrapped > a[href] {
1079 color: #0489c3; 1092 color: #0489c3;
1080 text-decoration: none; 1093 text-decoration: none;
1081 } 1094 }
1082 1095
1096 /* isolate-run-state */
1097
1098 isolate-run-state > span {
1099 font-weight: bold;
1100 }
1101
1083 /* isolate-shared-summary */ 1102 /* isolate-shared-summary */
1084 /* TODO(cbernaschina) fix isolate-shared-summary-wrapped
1085 to isolate-shared-summary when wrapper removed */
1086 1103
1087 isolate-shared-summary, 1104 isolate-shared-summary {
1088 isolate-shared-summary-wrapped {
1089 display: block; 1105 display: block;
1090 } 1106 }
1091 isolate-shared-summary-wrapped > .summary { 1107 isolate-shared-summary > .summary {
1092 height: 300px; 1108 height: 300px;
1093 position: relative; 1109 position: relative;
1094 } 1110 }
1095 isolate-shared-summary-wrapped > .menu { 1111 isolate-shared-summary .menu {
1096 float: right; 1112 float: right;
1097 top: 0; 1113 top: 0;
1098 right: 0; 1114 right: 0;
1099 } 1115 }
1100 isolate-shared-summary-wrapped > isolate-counter-chart { 1116 isolate-shared-summary isolate-counter-chart {
1101 position: absolute; 1117 position: absolute;
1102 left: 0; 1118 left: 0;
1103 top: 0; 1119 top: 0;
1104 right: 230px; 1120 right: 230px;
1105 clear: both; 1121 clear: both;
1106 } 1122 }
1107 isolate-shared-summary-wrapped .errorBox { 1123 isolate-shared-summary .errorBox {
1108 background-color: #f5f5f5; 1124 background-color: #f5f5f5;
1109 border: 1px solid #ccc; 1125 border: 1px solid #ccc;
1110 padding: 2em; 1126 padding: 2em;
1111 font-family: consolas, courier, monospace; 1127 font-family: consolas, courier, monospace;
1112 font-size: 1em; 1128 font-size: 1em;
1113 line-height: 1.2em; 1129 line-height: 1.2em;
1114 white-space: pre; 1130 white-space: pre;
1115 } 1131 }
1116 1132
1117 /* library-ref */ 1133 /* library-ref */
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1455 script-inset-wrapped button.toggle-profile { 1471 script-inset-wrapped button.toggle-profile {
1456 background-color: transparent; 1472 background-color: transparent;
1457 padding: 0; 1473 padding: 0;
1458 margin: 0; 1474 margin: 0;
1459 border: none; 1475 border: none;
1460 position: absolute; 1476 position: absolute;
1461 display: inline-block; 1477 display: inline-block;
1462 top: 5px; 1478 top: 5px;
1463 color: #888888; 1479 color: #888888;
1464 line-height: 30px; 1480 line-height: 30px;
1481 font: 400 20px 'Montserrat', sans-serif;
1465 } 1482 }
1466 script-inset-wrapped button.refresh { 1483 script-inset-wrapped button.refresh {
1467 right: 5px; 1484 right: 5px;
1468 font-size: 25px; 1485 font-size: 25px;
1469 } 1486 }
1470 script-inset-wrapped button.toggle-profile { 1487 script-inset-wrapped button.toggle-profile {
1471 right: 30px; 1488 right: 30px;
1472 font-size: 20px; 1489 font-size: 20px;
1473 } 1490 }
1474 script-inset-wrapped button.toggle-profile.enabled { 1491 script-inset-wrapped button.toggle-profile.enabled {
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
1740 1757
1741 vm-connect-target > button.delete-button:hover { 1758 vm-connect-target > button.delete-button:hover {
1742 background: #ff0000; 1759 background: #ff0000;
1743 } 1760 }
1744 1761
1745 /* vm-connect */ 1762 /* vm-connect */
1746 1763
1747 vm-connect ul { 1764 vm-connect ul {
1748 list-style-type: none; 1765 list-style-type: none;
1749 } 1766 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/app/page.dart ('k') | runtime/observatory/lib/src/elements/debugger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698