summaryrefslogtreecommitdiff
path: root/chromium/third_party/trace-viewer/src/ui/drag_handle.css
blob: 2cd2b1c4c81ac891f8ee119f8613f27d81f46198 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* Copyright (c) 2012 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.
 */

x-drag-handle {
  -webkit-user-select: none;
  box-sizing: border-box;
  display: block;
}

x-drag-handle.horizontal-drag-handle {
  background-image: -webkit-gradient(linear,
                                     0 0, 0 100%,
                                     from(#E5E5E5),
                                     to(#D1D1D1));
  border-bottom: 1px solid #8e8e8e;
  border-top: 1px solid white;
  cursor: ns-resize;
  height: 7px;
  position: relative;
  z-index: 10;
}

x-drag-handle.vertical-drag-handle {
  background-image: -webkit-gradient(linear,
                                     0 0, 100% 0,
                                     from(#E5E5E5),
                                     to(#D1D1D1));
  border-left: 1px solid white;
  border-right: 1px solid #8e8e8e;
  cursor: ew-resize;
  position: relative;
  width: 7px;
  z-index: 10;
}