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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/splitWidget.css

Issue 2353033004: [DevTools] Expose left and right toolbar in TabbedPane. (Closed)
Patch Set: review comment Created 4 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 10 *
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 .shadow-split-widget.hbox > .shadow-split-widget-sidebar:not(.maximized) { 90 .shadow-split-widget.hbox > .shadow-split-widget-sidebar:not(.maximized) {
91 border: 0; 91 border: 0;
92 border-left: 1px solid rgb(64%, 64%, 64%); 92 border-left: 1px solid rgb(64%, 64%, 64%);
93 } 93 }
94 94
95 .shadow-split-widget.hbox.shadow-split-widget-first-is-sidebar > .shadow-split-w idget-sidebar:not(.maximized) { 95 .shadow-split-widget.hbox.shadow-split-widget-first-is-sidebar > .shadow-split-w idget-sidebar:not(.maximized) {
96 border: 0; 96 border: 0;
97 border-right: 1px solid rgb(64%, 64%, 64%); 97 border-right: 1px solid rgb(64%, 64%, 64%);
98 } 98 }
99
100 .shadow-split-widget button.sidebar-show-hide-button {
101 position: absolute;
102 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
103 -webkit-mask-size: 352px 168px;
104 height: 16px;
105 width: 16px;
106 border: none;
107 z-index: 20;
108 background-color: #5a5a5a;
109 }
110
111 .shadow-split-widget button.sidebar-show-hide-button:hover {
112 background-color: #333;
113 }
114
115 .shadow-split-widget button.sidebar-show-hide-button:active {
116 background-color: #5a5a5a;
117 }
118
119 .shadow-split-widget button.sidebar-show-hide-button:disabled {
120 background-color: rgba(0, 0, 0, 0.35);
121 }
122
123 @media (-webkit-min-device-pixel-ratio: 1.1) {
124 .shadow-split-widget button.sidebar-show-hide-button {
125 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
126 }
127 } /* media */
128
129 .shadow-split-widget button.left-sidebar-show-hide-button,
130 .shadow-split-widget button.top-sidebar-show-hide-button {
131 top: 5px;
132 left: 5px;
133 }
134
135 .shadow-split-widget button.right-sidebar-show-hide-button {
136 top: 5px;
137 right:4px;
138 }
139
140 .shadow-split-widget button.bottom-sidebar-show-hide-button {
141 bottom: 5px;
142 right: 3px;
143 }
144
145 .shadow-split-widget button.left-sidebar-show-hide-button.toggled-show {
146 -webkit-mask-position: -168px -76px; /* |> */
147 }
148
149 .shadow-split-widget button.left-sidebar-show-hide-button.toggled-hide {
150 -webkit-mask-position: -199px -76px; /* |< */
151 }
152
153 .shadow-split-widget button.right-sidebar-show-hide-button.toggled-show {
154 -webkit-mask-position: -296px -76px; /* <| */
155 }
156
157 .shadow-split-widget button.right-sidebar-show-hide-button.toggled-hide {
158 -webkit-mask-position: -264px -76px; /* >| */
159 }
160
161 .shadow-split-widget button.top-sidebar-show-hide-button.toggled-show {
162 -webkit-mask-position: -168px -76px; /* |> */
163 transform: rotate(90deg);
164 }
165
166 .shadow-split-widget button.top-sidebar-show-hide-button.toggled-hide {
167 -webkit-mask-position: -199px -76px; /* |< */
168 transform: rotate(90deg);
169 }
170
171 .shadow-split-widget button.bottom-sidebar-show-hide-button.toggled-show {
172 -webkit-mask-position: -296px -76px; /* <| */
173 transform: rotate(90deg);
174 }
175
176 .shadow-split-widget button.bottom-sidebar-show-hide-button.toggled-hide {
177 -webkit-mask-position: -264px -76px; /* >| */
178 transform: rotate(90deg);
179 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698