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

Side by Side Diff: Source/devtools/front_end/inspectorStyle.css

Issue 408853002: [DevTools] Make toolbar counters declarative. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed comment Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
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
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 #remote-device-count, 227 .toolbar-controls-right .status-bar-item
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
232 { 228 {
233 opacity: 0.8; 229 opacity: 0.8;
234 } 230 }
235 231
236 .scrollable-content { 232 .scrollable-content {
237 position: static; 233 position: static;
238 height: 100%; 234 height: 100%;
239 overflow-y: auto; 235 overflow-y: auto;
240 width: 100%; 236 width: 100%;
241 margin-right: 12px; 237 margin-right: 12px;
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 } 764 }
769 765
770 .green-ball { 766 .green-ball {
771 background-position: -235px -96px; 767 background-position: -235px -96px;
772 } 768 }
773 769
774 .orange-ball { 770 .orange-ball {
775 background-position: -246px -96px; 771 background-position: -246px -96px;
776 } 772 }
777 773
778 #error-warning-count, #remote-device-count { 774 .status-bar-counter {
779 display: inline-block; 775 display: inline-block;
780 padding: 4px 6px 6px 0; 776 padding: 4px 6px 6px 0;
781 font-size: 11px; 777 font-size: 11px;
782 height: 19px; 778 height: 19px;
783 cursor: pointer; 779 cursor: pointer;
784 line-height: 14px; 780 line-height: 14px;
785 } 781 }
786 782
787 #error-warning-count:hover, #remote-device-count:hover { 783 .status-bar-counter:hover {
788 border-bottom: 1px solid rgb(96, 96, 96); 784 border-bottom: 1px solid rgb(96, 96, 96);
789 } 785 }
790 786
791 #error-warning-count .error-icon-small, 787 .status-bar-counter-item {
792 #error-warning-count .warning-icon-small, 788 margin-left: 6px;
793 #remote-device-count .device-icon-small{ 789 }
790
791 .status-bar-counter-item.status-bar-counter-item-first {
792 margin-left: 0;
793 }
794
795 .status-bar-counter-item > div {
794 vertical-align: -1px; 796 vertical-align: -1px;
795 margin-right: 2px; 797 margin-right: 2px;
796 } 798 }
797 799
798 #error-warning-count .warning-icon-small {
799 margin-left: 6px;
800 }
801
802 #drawer-tabbed-pane > .tabbed-pane-header { 800 #drawer-tabbed-pane > .tabbed-pane-header {
803 background-color: rgb(236, 236, 236); 801 background-color: rgb(236, 236, 236);
804 } 802 }
805 803
806 #drawer-contents .tabbed-pane-header .tabbed-pane-header-tab { 804 #drawer-contents .tabbed-pane-header .tabbed-pane-header-tab {
807 cursor: default; 805 cursor: default;
808 } 806 }
809 807
810 body.platform-mac .monospace, 808 body.platform-mac .monospace,
811 body.platform-mac .source-code { 809 body.platform-mac .source-code {
(...skipping 2114 matching lines...) Expand 10 before | Expand all | Expand 10 after
2926 } 2924 }
2927 2925
2928 .viewport-control-gap-element { 2926 .viewport-control-gap-element {
2929 color: transparent; 2927 color: transparent;
2930 } 2928 }
2931 2929
2932 label.checkbox-with-label { 2930 label.checkbox-with-label {
2933 display: flex; 2931 display: flex;
2934 -webkit-user-select: none; 2932 -webkit-user-select: none;
2935 } 2933 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/components/InspectorView.js ('k') | Source/devtools/front_end/main/AdvancedApp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698