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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/classesPaneWidget.css

Issue 2924883002: DevTools: migrate SSP Classes and ElementState toolbar widgets to shadow (Closed)
Patch Set: Created 3 years, 6 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
(Empty)
1 /**
2 * Copyright 2017 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 .styles-element-classes-pane {
8 background-color: #f3f3f3;
9 border-bottom: 1px solid rgb(189, 189, 189);
10 padding: 6px 2px 2px;
11 }
12
13 .styles-element-classes-container {
14 display: flex;
15 flex-wrap: wrap;
16 justify-content: flex-start;
17 }
18
19 .styles-element-classes-pane label {
20 margin-right: 15px;
21 }
22
23 .styles-element-classes-pane .title-container {
24 padding-bottom: 2px;
25 }
26
27 .styles-element-classes-pane .new-class-input {
28 padding-left: 3px;
29 padding-right: 3px;
30 overflow: hidden;
31 border: 1px solid #ddd;
32 line-height: 15px;
33 margin-left: 3px;
34 width: calc(100% - 7px);
35 background-color: #fff;
36 cursor: text;
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698