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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/elements/classesPaneWidget.css
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/classesPaneWidget.css b/third_party/WebKit/Source/devtools/front_end/elements/classesPaneWidget.css
new file mode 100644
index 0000000000000000000000000000000000000000..66e35443396e3784b92f98b0e8e785e49cd85315
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/elements/classesPaneWidget.css
@@ -0,0 +1,37 @@
+/**
+ * Copyright 2017 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.styles-element-classes-pane {
+ background-color: #f3f3f3;
+ border-bottom: 1px solid rgb(189, 189, 189);
+ padding: 6px 2px 2px;
+}
+
+.styles-element-classes-container {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: flex-start;
+}
+
+.styles-element-classes-pane label {
+ margin-right: 15px;
+}
+
+.styles-element-classes-pane .title-container {
+ padding-bottom: 2px;
+}
+
+.styles-element-classes-pane .new-class-input {
+ padding-left: 3px;
+ padding-right: 3px;
+ overflow: hidden;
+ border: 1px solid #ddd;
+ line-height: 15px;
+ margin-left: 3px;
+ width: calc(100% - 7px);
+ background-color: #fff;
+ cursor: text;
+}

Powered by Google App Engine
This is Rietveld 408576698