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

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

Issue 2273203004: Converted Observatory persistent-hangles-page element (Closed)
Patch Set: Addressed comments and fixed style 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 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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 margin-left: 0.5em; 754 margin-left: 0.5em;
755 } 755 }
756 756
757 /* error-ref */ 757 /* error-ref */
758 /* TODO(cbernaschina) fix error-ref-wrapped to error-ref when wrapper 758 /* TODO(cbernaschina) fix error-ref-wrapped to error-ref when wrapper
759 removed */ 759 removed */
760 760
761 error-ref-wrapped > pre { 761 error-ref-wrapped > pre {
762 background-color: #f5f5f5; 762 background-color: #f5f5f5;
763 border: 1px solid #ccc; 763 border: 1px solid #ccc;
764 padding: 10px; 764 padding-left: 10px;
765 padding-right: 10px;
765 font-family: consolas, courier, monospace; 766 font-family: consolas, courier, monospace;
766 font-size: 1em; 767 font-size: 1em;
767 line-height: 1.2em; 768 line-height: 1.2em;
768 white-space: pre; 769 white-space: pre;
769 } 770 }
770 771
771 /* flag-list */ 772 /* flag-list */
772 773
773 flag-list .comment { 774 flag-list .comment {
774 color: #aaa; 775 color: #aaa;
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
1156 observatory-application { 1157 observatory-application {
1157 display: block; 1158 display: block;
1158 height: 100%; 1159 height: 100%;
1159 } 1160 }
1160 1161
1161 observatory-application > div { 1162 observatory-application > div {
1162 display: block; 1163 display: block;
1163 height: 100%; 1164 height: 100%;
1164 } 1165 }
1165 1166
1167 /* persistent-handles-page */
1168
1169 persistent-handles-page {
1170 display: block;
1171 height: 100%;
1172 }
1173 persistent-handles-page .persistent-handles,
1174 persistent-handles-page .weak-persistent-handles {
1175 margin-top: -70px;
1176 padding-top: 70px;
1177 height: 50%;
1178 }
1179 persistent-handles-page virtual-collection {
1180 overflow-y: scroll;
1181 }
1182 persistent-handles-page .weak-item,
1183 persistent-handles-page .collection-item {
1184 box-sizing: border-box;
1185 line-height: 20px;
1186 padding-left: 5%;
1187 padding-right: 5%;
1188 }
1189 persistent-handles-page .header {
1190 box-sizing: border-box;
1191 line-height: 20px;
1192 }
1193 persistent-handles-page .header .weak-item:last-child {
1194 margin-bottom: -3px;
1195 border-bottom: solid 1px #AAAAAA;
1196 }
1197 persistent-handles-page .weak-item .external-size,
1198 persistent-handles-page .weak-item .peer,
1199 persistent-handles-page .weak-item .object {
1200 display: inline-block;
1201 width: 7em;
1202 text-align: right;
1203 padding-right: 0.5em;
1204 line-height: 20px;
1205 }
1206 persistent-handles-page .weak-item .peer {
1207 width: 11em;
1208 font-family: monospace;
1209 }
1210 persistent-handles-page .weak-item .object {
1211 text-align: left;
1212 width: 25em;
1213 }
1214 persistent-handles-page .shifter .weak-item:hover {
1215 background-color: #d2e7fe;
1216 }
1217 persistent-handles-page .weak-item .finalizer {
1218 padding-left: 0.5em;
1219 }
1220 persistent-handles-page .weak-item > button,
1221 persistent-handles-page .weak-item > button:active {
1222 background-color: transparent;
1223 color: #0489c3;
1224 border-style: none;
1225 }
1226 persistent-handles-page .weak-item > button:hover {
1227 text-decoration: underline;
1228 }
1229
1166 /* ports-page */ 1230 /* ports-page */
1167 1231
1168 ports-page .port-number { 1232 ports-page .port-number {
1169 font-weight: bold; 1233 font-weight: bold;
1170 } 1234 }
1171 1235
1172 /* script-ref */ 1236 /* script-ref */
1173 /* TODO(cbernaschina) fix script-ref-wrapped to script-ref when wrapper 1237 /* TODO(cbernaschina) fix script-ref-wrapped to script-ref when wrapper
1174 removed */ 1238 removed */
1175 1239
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1371 1435
1372 vm-connect-target > button.delete-button:hover { 1436 vm-connect-target > button.delete-button:hover {
1373 background: #ff0000; 1437 background: #ff0000;
1374 } 1438 }
1375 1439
1376 /* vm-connect */ 1440 /* vm-connect */
1377 1441
1378 vm-connect ul { 1442 vm-connect ul {
1379 list-style-type: none; 1443 list-style-type: none;
1380 } 1444 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698