| OLD | NEW |
| 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 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1663 left: 0; | 1663 left: 0; |
| 1664 right: 0; | 1664 right: 0; |
| 1665 top: 300px; | 1665 top: 300px; |
| 1666 } | 1666 } |
| 1667 | 1667 |
| 1668 memory-dashboard memory-profile memory-allocations { | 1668 memory-dashboard memory-profile memory-allocations { |
| 1669 position: absolute; | 1669 position: absolute; |
| 1670 bottom: 0; | 1670 bottom: 0; |
| 1671 left: 0; | 1671 left: 0; |
| 1672 right: 0; | 1672 right: 0; |
| 1673 top: 40px; | 1673 top: 39px; |
| 1674 } | 1674 } |
| 1675 | 1675 |
| 1676 memory-dashboard memory-profile memory-snapshot { | 1676 memory-dashboard memory-profile memory-snapshot { |
| 1677 position: absolute; | 1677 position: absolute; |
| 1678 bottom: 0; | 1678 bottom: 0; |
| 1679 left: 0; | 1679 left: 0; |
| 1680 right: 0; | 1680 right: 0; |
| 1681 top: 40px; | 1681 top: 45px; |
| 1682 } | 1682 } |
| 1683 | 1683 |
| 1684 /* metric-graph */ | 1684 /* metric-graph */ |
| 1685 | 1685 |
| 1686 metric-graph { | 1686 metric-graph { |
| 1687 display: block; | 1687 display: block; |
| 1688 } | 1688 } |
| 1689 | 1689 |
| 1690 metric-graph .graph { | 1690 metric-graph .graph { |
| 1691 height: 100%; | 1691 height: 100%; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1796 } | 1796 } |
| 1797 | 1797 |
| 1798 memory-allocations .collection-item > button:hover, | 1798 memory-allocations .collection-item > button:hover, |
| 1799 memory-allocations .collection-item .group button:hover { | 1799 memory-allocations .collection-item .group button:hover { |
| 1800 text-decoration: underline; | 1800 text-decoration: underline; |
| 1801 border-radius: 0px; | 1801 border-radius: 0px; |
| 1802 } | 1802 } |
| 1803 | 1803 |
| 1804 /* memory-profile */ | 1804 /* memory-profile */ |
| 1805 | 1805 |
| 1806 memory-profile > div > h1 { |
| 1807 overflow: hidden; |
| 1808 border-bottom: 1px solid #d5d5d5; |
| 1809 } |
| 1810 |
| 1806 memory-profile .header_button { | 1811 memory-profile .header_button { |
| 1807 padding: 3px 5px; | 1812 padding: 3px 5px; |
| 1808 margin: 0px 1px; | 1813 margin: 0px 1px; |
| 1809 } | 1814 } |
| 1810 | 1815 |
| 1816 memory-profile .header_button:first-child { |
| 1817 margin-left: 5px; |
| 1818 } |
| 1819 |
| 1811 memory-profile .tab_buttons { | 1820 memory-profile .tab_buttons { |
| 1821 position: relative; |
| 1822 top: 1px; |
| 1812 float: right; | 1823 float: right; |
| 1813 } | 1824 } |
| 1814 | 1825 |
| 1815 memory-profile .tab_buttons button { | 1826 memory-profile .tab_buttons button { |
| 1816 padding: 10px 5px; | 1827 padding: 10px 5px; |
| 1817 } | 1828 } |
| 1818 | 1829 |
| 1819 memory-profile .tab_buttons button:not(:first-child) { | 1830 memory-profile .tab_buttons button:not(:first-child) { |
| 1820 border-top-left-radius: 0px; | 1831 border-top-left-radius: 0px; |
| 1821 border-bottom-left-radius: 0px; | 1832 border-bottom-left-radius: 0px; |
| (...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2694 | 2705 |
| 2695 vm-connect-target > button.delete-button:hover { | 2706 vm-connect-target > button.delete-button:hover { |
| 2696 background: #ff0000; | 2707 background: #ff0000; |
| 2697 } | 2708 } |
| 2698 | 2709 |
| 2699 /* vm-connect */ | 2710 /* vm-connect */ |
| 2700 | 2711 |
| 2701 vm-connect ul { | 2712 vm-connect ul { |
| 2702 list-style-type: none; | 2713 list-style-type: none; |
| 2703 } | 2714 } |
| OLD | NEW |