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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/inline_editor/bezierSwatch.css

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 :host { 7 :host {
8 white-space: nowrap; 8 white-space: nowrap;
9 } 9 }
10 10
11 .bezier-swatch-icon { 11 .bezier-swatch-icon {
12 position: relative; 12 position: relative;
13 margin-left: 1px; 13 margin-left: 1px;
14 margin-right: 2px; 14 margin-right: 2px;
15 top: 1px; 15 top: 1px;
16 -webkit-user-select: none; 16 -webkit-user-select: none;
17 line-height: 10px; 17 line-height: 10px;
18 background-color: #9C27B0; 18 background-color: #9C27B0;
19 cursor: default; 19 cursor: default;
20 } 20 }
21 21
22 .bezier-swatch-icon:hover { 22 .bezier-swatch-icon:hover {
23 background-color: #800080; 23 background-color: #800080;
24 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698