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

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

Issue 1105643002: Devtools: Introduce WI.ExtensibleToolbar (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Move close button out of toolbar Created 5 years, 8 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 79
80 .material .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-ta b:hover { 80 .material .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-ta b:hover {
81 background-color: rgba(105, 105, 105, 0.1); 81 background-color: rgba(105, 105, 105, 0.1);
82 } 82 }
83 83
84 .inspector-view-toolbar-left { 84 .inspector-view-toolbar-left {
85 padding-left: 2px; 85 padding-left: 2px;
86 margin-right: -5px; /* Should compensate for .tabbed-pane-header-contents ma rgin-left. */ 86 margin-right: -5px; /* Should compensate for .tabbed-pane-header-contents ma rgin-left. */
87 } 87 }
88 88
89 .inspector-view-toolbar-right {
dgozman 2015/04/24 12:12:34 Drop this in favor of "flex-none".
sergeyv 2015/04/24 12:25:52 Done.
90 flex: none;
91 }
92
93 .right-toolbar-container {
dgozman 2015/04/24 12:12:34 Drop this in favor of "hbox flex-centered flex-non
sergeyv 2015/04/24 12:25:52 Done.
94 display: flex;
95 align-items: center;
96 flex: none;
97 }
98
89 .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-tab, 99 .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-tab,
90 .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-tab.selected { 100 .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-tab.selected {
91 border-width: 0 2px 0 2px; 101 border-width: 0 2px 0 2px;
92 background: none; 102 background: none;
93 margin: 0; 103 margin: 0;
94 padding: 0 3px; 104 padding: 0 3px;
95 } 105 }
96 106
97 .material .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-ta b, 107 .material .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-ta b,
98 .material .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-ta b.selected { 108 .material .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-ta b.selected {
99 padding: 0 6px; 109 padding: 0 6px;
100 transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1); 110 transition: background-color 150ms cubic-bezier(0, 0, 0.2, 1);
101 } 111 }
102 112
103 .material .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-ta b.selected { 113 .material .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-ta b.selected {
104 border: none; 114 border: none;
105 background-color: rgba(105, 105, 105, 0.1); 115 background-color: rgba(105, 105, 105, 0.1);
106 } 116 }
107 117
108 .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-tab.selected { 118 .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-header-tab.selected {
109 border-width: 0 2px 0 2px; 119 border-width: 0 2px 0 2px;
110 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2; 120 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2;
111 } 121 }
112 122
113 .inspector-view-close-button { 123 .inspector-view-close-button {
114 float: right; 124 flex: none;
115 padding-right: 6px; 125 padding-right: 6px;
116 padding-left: 4px; 126 padding-left: 4px;
117 } 127 }
118 128
119 body.undocked .inspector-view-close-button { 129 body.undocked .inspector-view-close-button {
120 display: none; 130 display: none;
121 } 131 }
122 132
123 .platform-windows .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-h eader, 133 .platform-windows .inspector-view-tabbed-pane.tabbed-pane::shadow .tabbed-pane-h eader,
124 .platform-windows.inactive .inspector-view-tabbed-pane.tabbed-pane::shadow .tabb ed-pane-header { 134 .platform-windows.inactive .inspector-view-tabbed-pane.tabbed-pane::shadow .tabb ed-pane-header {
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 } 689 }
680 690
681 body.inactive select.chrome-select, 691 body.inactive select.chrome-select,
682 .chrome-select:disabled { 692 .chrome-select:disabled {
683 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 693 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
684 border-color: rgba(80, 80, 80, 0.2); 694 border-color: rgba(80, 80, 80, 0.2);
685 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 695 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
686 inset 0 1px 2px rgba(255, 255, 255, 0.75); 696 inset 0 1px 2px rgba(255, 255, 255, 0.75);
687 color: #aaa; 697 color: #aaa;
688 } 698 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698