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

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

Issue 2292583002: DevTools: Create 2D slider for shadow-editor offset (Closed)
Patch Set: Move beginPath under if Created 4 years, 3 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/cssShadowEditor.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 .dt-range-input { 7 .dt-range-input {
8 -webkit-appearance: none; 8 -webkit-appearance: none;
9 margin: 0; 9 margin: 0;
10 padding: 0; 10 padding: 0;
11 height: 12px; 11 height: 10px;
12 width: 88px; 12 width: 88px;
13 outline: none; 13 outline: none;
14 background: none; 14 background: none;
15 } 15 }
16 16
17 .dt-range-input::-webkit-slider-thumb { 17 .dt-range-input::-webkit-slider-thumb {
18 -webkit-appearance: none; 18 -webkit-appearance: none;
19 margin: 0; 19 margin: 0;
20 padding: 0; 20 padding: 0;
21 border: 0; 21 border: 0;
(...skipping 12 matching lines...) Expand all
34 height: 2px; 34 height: 2px;
35 background-color: rgba(0, 0, 0, 0.26); 35 background-color: rgba(0, 0, 0, 0.26);
36 } 36 }
37 37
38 .dt-range-input:focus::-webkit-slider-thumb { 38 .dt-range-input:focus::-webkit-slider-thumb {
39 box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.4); 39 box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.4);
40 } 40 }
41 41
42 .dt-range-input:disabled::-webkit-slider-thumb { 42 .dt-range-input:disabled::-webkit-slider-thumb {
43 background-color: #bdbdbd; 43 background-color: #bdbdbd;
44 } 44 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/cssShadowEditor.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698