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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/resources/resourcesPanel.css

Issue 2773583002: [DevTools] Introduce a sidebar with a drop-down
Patch Set: [DevTools] Introduce a sidebar with a drop-down Created 3 years, 9 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) 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 left: 3px; 155 left: 3px;
156 right: 3px; 156 right: 3px;
157 max-width: 8px; 157 max-width: 8px;
158 max-height: 11px; 158 max-height: 11px;
159 overflow: hidden; 159 overflow: hidden;
160 } 160 }
161 161
162 .resources-sidebar { 162 .resources-sidebar {
163 padding: 0; 163 padding: 0;
164 } 164 }
165
166 .frame-selector {
dgozman 2017/03/24 17:06:55 This should go to a separate applicationSidebar.cs
eostroukhov 2017/04/04 23:47:17 The whole frame-selector is gone now, replaced by
167 border-width: 0;
168 display: flex;
169 align-items: center;
170 background: inherit;
171 padding: 6px 6px 6px 0;
172 border-width: 1px;
173 border-color: transparent;
174 border-style: solid;
175 }
176
177 .frame-selector:hover {
178 border-color: lightgray;
179 }
180
181 .frame-selector:focus {
182 border-color: lightgray;
183 }
184
185 .frame-name {
186 flex-grow: 1;
187 text-align: start;
188 overflow: hidden;
189 white-space: nowrap;
190 margin-right: 6px;
191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698