OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1789 background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 22
3, 223)); | 1789 background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 22
3, 223)); |
1790 border-radius: 12px; | 1790 border-radius: 12px; |
1791 -webkit-appearance: none; | 1791 -webkit-appearance: none; |
1792 } | 1792 } |
1793 | 1793 |
1794 .pane-title-button:active { | 1794 .pane-title-button:active { |
1795 background-color: rgb(215, 215, 215); | 1795 background-color: rgb(215, 215, 215); |
1796 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); | 1796 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); |
1797 } | 1797 } |
1798 | 1798 |
1799 #console-messages.console-filter-top { | |
1800 margin-top: 23px; | |
1801 } | |
1802 | |
1803 .console-warning-level.repeated-message, | 1799 .console-warning-level.repeated-message, |
1804 .console-error-level.repeated-message, | 1800 .console-error-level.repeated-message, |
1805 .console-log-level.repeated-message, | 1801 .console-log-level.repeated-message, |
1806 .console-debug-level.repeated-message, | 1802 .console-debug-level.repeated-message, |
1807 .console-info-level.repeated-message { | 1803 .console-info-level.repeated-message { |
1808 display: -webkit-flex; | 1804 display: -webkit-flex; |
1809 } | 1805 } |
1810 | 1806 |
1811 .console-user-command-result { | 1807 .console-user-command-result { |
1812 display: block; | 1808 display: block; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1859 } | 1855 } |
1860 | 1856 |
1861 .sidebar-tree > .children > .sidebar-tree-item { | 1857 .sidebar-tree > .children > .sidebar-tree-item { |
1862 padding-left: 37px; | 1858 padding-left: 37px; |
1863 } | 1859 } |
1864 | 1860 |
1865 .sidebar-tree > .children > .children > .sidebar-tree-item { | 1861 .sidebar-tree > .children > .children > .sidebar-tree-item { |
1866 padding-left: 37px; | 1862 padding-left: 37px; |
1867 } | 1863 } |
1868 | 1864 |
1869 .sidebar-tree.some-expandable:not(.hide-disclosure-buttons) > .sidebar-tree-item
:not(.parent) .icon { | 1865 .sidebar-tree.some-expandable > .sidebar-tree-item:not(.parent) .icon { |
1870 margin-left: 16px; | 1866 margin-left: 16px; |
1871 } | 1867 } |
1872 | 1868 |
1873 .sidebar-tree-item .disclosure-button { | 1869 .sidebar-tree-item .disclosure-button { |
1874 float: left; | 1870 float: left; |
1875 width: 10px; | 1871 width: 10px; |
1876 height: 10px; | 1872 height: 10px; |
1877 border: 0; | 1873 border: 0; |
1878 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); | 1874 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); |
1879 -webkit-mask-size: 320px 144px; | 1875 -webkit-mask-size: 320px 144px; |
(...skipping 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2773 outline: none; | 2769 outline: none; |
2774 } | 2770 } |
2775 | 2771 |
2776 body.inactive select.chrome-select, | 2772 body.inactive select.chrome-select, |
2777 .chrome-select:disabled { | 2773 .chrome-select:disabled { |
2778 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); | 2774 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); |
2779 border-color: rgba(80, 80, 80, 0.2); | 2775 border-color: rgba(80, 80, 80, 0.2); |
2780 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), | 2776 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), |
2781 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 2777 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
2782 color: #aaa; | 2778 color: #aaa; |
2783 } | 2779 } |
OLD | NEW |