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

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

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

Powered by Google App Engine
This is Rietveld 408576698