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 2365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2376 | 2376 |
2377 .source-frame-popover-title { | 2377 .source-frame-popover-title { |
2378 text-overflow: ellipsis; | 2378 text-overflow: ellipsis; |
2379 overflow: hidden; | 2379 overflow: hidden; |
2380 white-space: nowrap; | 2380 white-space: nowrap; |
2381 font-weight: bold; | 2381 font-weight: bold; |
2382 padding-left: 18px; | 2382 padding-left: 18px; |
2383 } | 2383 } |
2384 | 2384 |
2385 .source-frame-popover-tree { | 2385 .source-frame-popover-tree { |
2386 border-top: 1px solid rgb(194, 194, 147); | 2386 border-top: 1px solid rgb(184, 184, 184); |
2387 overflow: auto; | 2387 overflow: auto; |
2388 position: absolute; | 2388 position: absolute; |
2389 top: 15px; | 2389 top: 15px; |
2390 bottom: 0; | 2390 bottom: 0; |
2391 left: 0; | 2391 left: 0; |
2392 right: 0; | 2392 right: 0; |
2393 } | 2393 } |
2394 | 2394 |
2395 .source-frame-eval-expression { | 2395 .source-frame-eval-expression { |
2396 outline: 1px solid rgb(163, 41, 34); | 2396 outline: 1px solid rgb(163, 41, 34); |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2830 } | 2830 } |
2831 | 2831 |
2832 .custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical:hover { | 2832 .custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical:hover { |
2833 -webkit-border-image: url(Images/thumbHoverVert.png) 11 0 11 0; | 2833 -webkit-border-image: url(Images/thumbHoverVert.png) 11 0 11 0; |
2834 } | 2834 } |
2835 | 2835 |
2836 .custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical:active { | 2836 .custom-popup-vertical-scroll ::-webkit-scrollbar-thumb:vertical:active { |
2837 -webkit-border-image: url(Images/thumbActiveVert.png) 11 0 11 0; | 2837 -webkit-border-image: url(Images/thumbActiveVert.png) 11 0 11 0; |
2838 } | 2838 } |
2839 | 2839 |
2840 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:start { | 2840 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:decrement
{ |
2841 margin-top: 5px; | |
2842 } | 2841 } |
2843 | 2842 |
2844 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:end { | 2843 .custom-popup-vertical-scroll ::-webkit-scrollbar-track:vertical { |
2845 margin-bottom: 5px; | 2844 background: linear-gradient(to right, rgb(80, 80, 80), rgb(192, 192, 192) 25
%, rgb(192, 192, 192)); |
2846 } | 2845 border-radius: 5px; |
2847 | 2846 margin: 5px; |
2848 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:end:corne
r-present { | |
2849 margin-bottom: 4px; | |
2850 } | |
2851 | |
2852 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:decrement
{ | |
2853 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0; | |
2854 border-color: transparent; | |
2855 border-width: 11px 0 0 0; | |
2856 } | |
2857 | |
2858 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment
{ | |
2859 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0; | |
2860 border-color: transparent; | |
2861 border-width: 0 0 11px 0; | |
2862 } | 2847 } |
2863 | 2848 |
2864 .console-context { | 2849 .console-context { |
2865 max-width: 200px; | 2850 max-width: 200px; |
2866 } | 2851 } |
2867 | 2852 |
2868 .root-view { | 2853 .root-view { |
2869 overflow: hidden; | 2854 overflow: hidden; |
2870 position: absolute !important; | 2855 position: absolute !important; |
2871 left: 0; | 2856 left: 0; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2941 } | 2926 } |
2942 | 2927 |
2943 .viewport-control-gap-element { | 2928 .viewport-control-gap-element { |
2944 color: transparent; | 2929 color: transparent; |
2945 } | 2930 } |
2946 | 2931 |
2947 label.checkbox-with-label { | 2932 label.checkbox-with-label { |
2948 display: flex; | 2933 display: flex; |
2949 -webkit-user-select: none; | 2934 -webkit-user-select: none; |
2950 } | 2935 } |
OLD | NEW |