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

Side by Side Diff: experimental/flocking_geese/css/slider.css

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 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
OLDNEW
(Empty)
1 /* Copyright 2011 The Native Client Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 /**
7 * Styling for a slider bar.
8 */
9
10 .slider {
11 position: relative;
12 cursor: default;
13 -webkit-user-select: none;
14 -moz-user-select: none;
15 }
16
17 .slider .slider-ruler {
18 position: absolute;
19 top: 0;
20 left: 0;
21 margin: 0;
22 padding: 0;
23 outline: 0;
24 }
25
26 .slider-thumb {
27 display: block;
28 position: absolute;
29 top: 0;
30 left: 0;
31 z-index: 1;
32 cursor: col-resize;
33 -webkit-transition: left 0.218s;
34 -moz-transition: left 0.218s;
35 -o-transition: left 0.218s;
36 transition: left 0.218s;
37 -webkit-user-select: none;
38 -moz-user-select: none;
39 }
40
OLDNEW
« no previous file with comments | « experimental/flocking_geese/css/load_progress.css ('k') | experimental/flocking_geese/css/speedometer.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698