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

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

Issue 2862383002: Clarify presentation of the target in retaining paths. (Closed)
Patch Set: review Created 3 years, 7 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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 560
561 /* code-ref */ 561 /* code-ref */
562 562
563 code-ref > a[href]:hover { 563 code-ref > a[href]:hover {
564 text-decoration: underline; 564 text-decoration: underline;
565 } 565 }
566 code-ref > a[href] { 566 code-ref > a[href] {
567 color: #0489c3; 567 color: #0489c3;
568 text-decoration: none; 568 text-decoration: none;
569 } 569 }
570 code-ref .emphasize {
571 font-style: italic;
572 }
573
570 574
571 /* class-tree */ 575 /* class-tree */
572 576
573 class-tree { 577 class-tree {
574 position: relative; 578 position: relative;
575 display: block; 579 display: block;
576 height: 100%; 580 height: 100%;
577 } 581 }
578 582
579 class-tree virtual-tree { 583 class-tree virtual-tree {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 } 644 }
641 645
642 code-view .code-comment { 646 code-view .code-comment {
643 color: grey; 647 color: grey;
644 font-style: italic; 648 font-style: italic;
645 } 649 }
646 650
647 /* context-ref */ 651 /* context-ref */
648 652
649 context-ref > a[href]:hover { 653 context-ref > a[href]:hover {
650 text-decoration: underline; 654 text-decoration: underline;
651 } 655 }
652 context-ref > a[href] { 656 context-ref > a[href] {
653 color: #0489c3; 657 color: #0489c3;
654 text-decoration: none; 658 text-decoration: none;
655 } 659 }
656 context-ref > a[href] * { 660 context-ref > a[href] * {
657 color: inherit; 661 color: inherit;
658 } 662 }
663 context-ref .emphasize {
664 font-style: italic;
665 }
666
659 667
660 /* cpu-profile */ 668 /* cpu-profile */
661 669
662 cpu-profile { 670 cpu-profile {
663 position: relative; 671 position: relative;
664 display: block; 672 display: block;
665 height: 100%; 673 height: 100%;
666 } 674 }
667 675
668 cpu-profile > cpu-profile-virtual-tree { 676 cpu-profile > cpu-profile-virtual-tree {
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 1253
1246 /* function-ref */ 1254 /* function-ref */
1247 1255
1248 function-ref > a[href]:hover { 1256 function-ref > a[href]:hover {
1249 text-decoration: underline; 1257 text-decoration: underline;
1250 } 1258 }
1251 function-ref > a[href] { 1259 function-ref > a[href] {
1252 color: #0489c3; 1260 color: #0489c3;
1253 text-decoration: none; 1261 text-decoration: none;
1254 } 1262 }
1263 function-ref .emphasize {
1264 font-style: italic;
1265 }
1266
1255 1267
1256 /* heap-snapshot */ 1268 /* heap-snapshot */
1257 1269
1258 heap-snapshot .statusMessage { 1270 heap-snapshot .statusMessage {
1259 font-size: 150%; 1271 font-size: 150%;
1260 font-weight: bold; 1272 font-weight: bold;
1261 } 1273 }
1262 heap-snapshot .statusBox { 1274 heap-snapshot .statusBox {
1263 height: 100%; 1275 height: 100%;
1264 padding: 1em; 1276 padding: 1em;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
1298 1310
1299 heap-snapshot .tree-item > .name { 1311 heap-snapshot .tree-item > .name {
1300 display: inline; 1312 display: inline;
1301 margin-left: 0.5em; 1313 margin-left: 0.5em;
1302 } 1314 }
1303 1315
1304 1316
1305 /* icdata-ref */ 1317 /* icdata-ref */
1306 1318
1307 icdata-ref > a[href]:hover { 1319 icdata-ref > a[href]:hover {
1308 text-decoration: underline; 1320 text-decoration: underline;
1321 }
1322 icdata-ref > a[href] {
1323 color: #0489c3;
1324 text-decoration: none;
1325 }
1326 icdata-ref > a[href] * {
1327 color: inherit;
1328 }
1329 icdata-ref .emphasize {
1330 font-style: italic;
1309 } 1331 }
1310 1332
1311 icdata-ref > a[href] {
1312 color: #0489c3;
1313 text-decoration: none;
1314 }
1315
1316 icdata-ref > a[href] * {
1317 color: inherit;
1318 }
1319 1333
1320 /* inbound-reference */ 1334 /* inbound-reference */
1321 1335
1322 inbound-reference > a[href]:hover { 1336 inbound-reference > a[href]:hover {
1323 text-decoration: underline; 1337 text-decoration: underline;
1324 } 1338 }
1325 inbound-reference > a[href] { 1339 inbound-reference > a[href] {
1326 color: #0489c3; 1340 color: #0489c3;
1327 text-decoration: none; 1341 text-decoration: none;
1328 } 1342 }
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
1477 1491
1478 /* library-ref */ 1492 /* library-ref */
1479 1493
1480 library-ref > a[href]:hover { 1494 library-ref > a[href]:hover {
1481 text-decoration: underline; 1495 text-decoration: underline;
1482 } 1496 }
1483 library-ref > a[href] { 1497 library-ref > a[href] {
1484 color: #0489c3; 1498 color: #0489c3;
1485 text-decoration: none; 1499 text-decoration: none;
1486 } 1500 }
1501 library-ref .emphasize {
1502 font-style: italic;
1503 }
1504
1487 1505
1488 .nav-option { 1506 .nav-option {
1489 float: right; 1507 float: right;
1490 margin: 3px; 1508 margin: 3px;
1491 padding: 8px; 1509 padding: 8px;
1492 } 1510 }
1493 1511
1494 .nav-option label { 1512 .nav-option label {
1495 color: white; 1513 color: white;
1496 } 1514 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1548 megamorphic-cache-ref > a[href]:hover { 1566 megamorphic-cache-ref > a[href]:hover {
1549 text-decoration: underline; 1567 text-decoration: underline;
1550 } 1568 }
1551 megamorphic-cache-ref > a[href] { 1569 megamorphic-cache-ref > a[href] {
1552 color: #0489c3; 1570 color: #0489c3;
1553 text-decoration: none; 1571 text-decoration: none;
1554 } 1572 }
1555 megamorphic-cache-ref > a[href] * { 1573 megamorphic-cache-ref > a[href] * {
1556 color: inherit; 1574 color: inherit;
1557 } 1575 }
1576 megamorphic-ref .emphasize {
1577 font-style: italic;
1578 }
1558 1579
1559 /* metric-graph */ 1580 /* metric-graph */
1560 1581
1561 metric-graph { 1582 metric-graph {
1562 display: block; 1583 display: block;
1563 height: 100%; 1584 height: 100%;
1564 } 1585 }
1565 1586
1566 metric-graph .graph { 1587 metric-graph .graph {
1567 height: 100%; 1588 height: 100%;
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1802 color: #0489c3; 1823 color: #0489c3;
1803 padding: 0; 1824 padding: 0;
1804 margin: -8px 4px; 1825 margin: -8px 4px;
1805 font-size: 20px; 1826 font-size: 20px;
1806 text-decoration: none; 1827 text-decoration: none;
1807 } 1828 }
1808 1829
1809 /* object-pool-ref */ 1830 /* object-pool-ref */
1810 1831
1811 object-pool-ref > a[href]:hover { 1832 object-pool-ref > a[href]:hover {
1812 text-decoration: underline; 1833 text-decoration: underline;
1813 } 1834 }
1814 1835
1815 object-pool-ref > a[href] { 1836 object-pool-ref > a[href] {
1816 color: #0489c3; 1837 color: #0489c3;
1817 text-decoration: none; 1838 text-decoration: none;
1818 } 1839 }
1819
1820 object-pool-ref > a[href] * { 1840 object-pool-ref > a[href] * {
1821 color: inherit; 1841 color: inherit;
1842 }
1843 object-pool-ref .emphasize {
1844 font-style: italic;
1822 } 1845 }
1823 1846
1824 /* object-pool-view */ 1847 /* object-pool-view */
1825 1848
1826 object-pool-view .hexadecimal { 1849 object-pool-view .hexadecimal {
1827 font-family: monospace; 1850 font-family: monospace;
1828 } 1851 }
1829 1852
1830 /* observatory-application */ 1853 /* observatory-application */
1831 1854
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
1904 1927
1905 /* ports-page */ 1928 /* ports-page */
1906 1929
1907 ports-page .port-number { 1930 ports-page .port-number {
1908 font-weight: bold; 1931 font-weight: bold;
1909 } 1932 }
1910 1933
1911 /* script-ref */ 1934 /* script-ref */
1912 1935
1913 script-ref > a[href]:hover { 1936 script-ref > a[href]:hover {
1914 text-decoration: underline; 1937 text-decoration: underline;
1938 }
1939 script-ref > a[href] {
1940 color: #0489c3;
1941 text-decoration: none;
1942 }
1943 script-ref .emphasize {
1944 font-style: italic;
1915 } 1945 }
1916 1946
1917 script-ref > a[href] {
1918 color: #0489c3;
1919 text-decoration: none;
1920 }
1921 1947
1922 /* source-link */ 1948 /* source-link */
1923 1949
1924 source-link > a[href]:hover { 1950 source-link > a[href]:hover {
1925 text-decoration: underline; 1951 text-decoration: underline;
1926 } 1952 }
1927 1953
1928 source-link > a[href] { 1954 source-link > a[href] {
1929 color: #0489c3; 1955 color: #0489c3;
1930 text-decoration: none; 1956 text-decoration: none;
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
2164 2190
2165 /* type-arguments-ref */ 2191 /* type-arguments-ref */
2166 2192
2167 type-arguments-ref a[href]:hover { 2193 type-arguments-ref a[href]:hover {
2168 text-decoration: underline; 2194 text-decoration: underline;
2169 } 2195 }
2170 type-arguments-ref a[href] { 2196 type-arguments-ref a[href] {
2171 color: #0489c3; 2197 color: #0489c3;
2172 text-decoration: none; 2198 text-decoration: none;
2173 } 2199 }
2200 type-arguments-ref .emphasize {
2201 font-style: italic;
2202 }
2203
2174 2204
2175 /* token-stream-ref */ 2205 /* token-stream-ref */
2176 2206
2177 token-stream-ref a[href]:hover { 2207 token-stream-ref a[href]:hover {
2178 text-decoration: underline; 2208 text-decoration: underline;
2179 } 2209 }
2180 token-stream-ref a[href] { 2210 token-stream-ref a[href] {
2181 color: #0489c3; 2211 color: #0489c3;
2182 text-decoration: none; 2212 text-decoration: none;
2183 } 2213 }
2214 token-stream-ref .emphasize {
2215 font-style: italic;
2216 }
2217
2218
2219 /* unknown-ref */
2220
2221 unknown-ref > a[href]:hover {
2222 text-decoration: underline;
2223 }
2224 unknown-ref > a[href] {
2225 color: #0489c3;
2226 text-decoration: none;
2227 }
2228 unknown-ref > a[href] * {
2229 color: inherit;
2230 }
2231 unknown-ref .emphasize {
2232 font-style: italic;
2233 }
2234
2184 2235
2185 /* view-footer */ 2236 /* view-footer */
2186 2237
2187 view-footer { 2238 view-footer {
2188 padding: 1em; 2239 padding: 1em;
2189 padding-top: 10.3em; 2240 padding-top: 10.3em;
2190 float: right; 2241 float: right;
2191 align-content: right; 2242 align-content: right;
2192 } 2243 }
2193 2244
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
2305 2356
2306 vm-connect-target > button.delete-button:hover { 2357 vm-connect-target > button.delete-button:hover {
2307 background: #ff0000; 2358 background: #ff0000;
2308 } 2359 }
2309 2360
2310 /* vm-connect */ 2361 /* vm-connect */
2311 2362
2312 vm-connect ul { 2363 vm-connect ul {
2313 list-style-type: none; 2364 list-style-type: none;
2314 } 2365 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/code_view.dart ('k') | runtime/observatory/lib/src/elements/error_view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698