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

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

Issue 2252913002: DevTools: Box-shadow editor initial implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shadowIcon
Patch Set: Merge 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/module.json ('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
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .dt-range-input {
8 -webkit-appearance: none;
9 margin: 0;
10 padding: 0;
11 height: 12px;
12 width: 88px;
13 outline: none;
14 background: none;
15 }
16
17 .dt-range-input::-webkit-slider-thumb {
18 -webkit-appearance: none;
19 margin: 0;
20 padding: 0;
21 border: 0;
22 width: 12px;
23 height: 12px;
24 margin-top: -5px;
25 border-radius: 50%;
26 background-color: #4285F4;
27 }
28
29 .dt-range-input::-webkit-slider-runnable-track {
30 -webkit-appearance: none;
31 margin: 0;
32 padding: 0;
33 width: 100%;
34 height: 2px;
35 background-color: rgba(0, 0, 0, 0.26);
36 }
37
38 .dt-range-input:focus::-webkit-slider-thumb {
39 box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.4);
40 }
41
42 .dt-range-input:disabled::-webkit-slider-thumb {
43 background-color: #bdbdbd;
44 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/module.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698