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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 opacity: 0.8; | 217 opacity: 0.8; |
218 padding-top: 1px; | 218 padding-top: 1px; |
219 } | 219 } |
220 | 220 |
221 .toolbar-controls-right { | 221 .toolbar-controls-right { |
222 flex: none; | 222 flex: none; |
223 margin-right: 2px; | 223 margin-right: 2px; |
224 padding-top: 1px; | 224 padding-top: 1px; |
225 } | 225 } |
226 | 226 |
227 .toolbar-controls-right .status-bar-item | 227 .toolbar-controls-right #remote-device-count, |
| 228 .toolbar-controls-right #error-warning-count, |
| 229 .toolbar-controls-right .console-status-bar-item, |
| 230 .toolbar-controls-right .settings-status-bar-item, |
| 231 .toolbar-controls-right .dock-status-bar-item |
228 { | 232 { |
229 opacity: 0.8; | 233 opacity: 0.8; |
230 } | 234 } |
231 | 235 |
232 .scrollable-content { | 236 .scrollable-content { |
233 position: static; | 237 position: static; |
234 height: 100%; | 238 height: 100%; |
235 overflow-y: auto; | 239 overflow-y: auto; |
236 width: 100%; | 240 width: 100%; |
237 margin-right: 12px; | 241 margin-right: 12px; |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
764 } | 768 } |
765 | 769 |
766 .green-ball { | 770 .green-ball { |
767 background-position: -235px -96px; | 771 background-position: -235px -96px; |
768 } | 772 } |
769 | 773 |
770 .orange-ball { | 774 .orange-ball { |
771 background-position: -246px -96px; | 775 background-position: -246px -96px; |
772 } | 776 } |
773 | 777 |
774 .status-bar-counter { | 778 #error-warning-count, #remote-device-count { |
775 display: inline-block; | 779 display: inline-block; |
776 padding: 4px 6px 6px 0; | 780 padding: 4px 6px 6px 0; |
777 font-size: 11px; | 781 font-size: 11px; |
778 height: 19px; | 782 height: 19px; |
779 cursor: pointer; | 783 cursor: pointer; |
780 line-height: 14px; | 784 line-height: 14px; |
781 } | 785 } |
782 | 786 |
783 .status-bar-counter:hover { | 787 #error-warning-count:hover, #remote-device-count:hover { |
784 border-bottom: 1px solid rgb(96, 96, 96); | 788 border-bottom: 1px solid rgb(96, 96, 96); |
785 } | 789 } |
786 | 790 |
787 .status-bar-counter-item { | 791 #error-warning-count .error-icon-small, |
788 margin-left: 6px; | 792 #error-warning-count .warning-icon-small, |
| 793 #remote-device-count .device-icon-small{ |
| 794 vertical-align: -1px; |
| 795 margin-right: 2px; |
789 } | 796 } |
790 | 797 |
791 .status-bar-counter-item.status-bar-counter-item-first { | 798 #error-warning-count .warning-icon-small { |
792 margin-left: 0; | 799 margin-left: 6px; |
793 } | |
794 | |
795 .status-bar-counter-item > div { | |
796 vertical-align: -1px; | |
797 margin-right: 2px; | |
798 } | 800 } |
799 | 801 |
800 #drawer-tabbed-pane > .tabbed-pane-header { | 802 #drawer-tabbed-pane > .tabbed-pane-header { |
801 background-color: rgb(236, 236, 236); | 803 background-color: rgb(236, 236, 236); |
802 } | 804 } |
803 | 805 |
804 #drawer-contents .tabbed-pane-header .tabbed-pane-header-tab { | 806 #drawer-contents .tabbed-pane-header .tabbed-pane-header-tab { |
805 cursor: default; | 807 cursor: default; |
806 } | 808 } |
807 | 809 |
(...skipping 2116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2924 } | 2926 } |
2925 | 2927 |
2926 .viewport-control-gap-element { | 2928 .viewport-control-gap-element { |
2927 color: transparent; | 2929 color: transparent; |
2928 } | 2930 } |
2929 | 2931 |
2930 label.checkbox-with-label { | 2932 label.checkbox-with-label { |
2931 display: flex; | 2933 display: flex; |
2932 -webkit-user-select: none; | 2934 -webkit-user-select: none; |
2933 } | 2935 } |
OLD | NEW |