summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/trace-viewer/src/ui/drag_handle.css
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/trace-viewer/src/ui/drag_handle.css')
-rw-r--r--chromium/third_party/trace-viewer/src/ui/drag_handle.css36
1 files changed, 0 insertions, 36 deletions
diff --git a/chromium/third_party/trace-viewer/src/ui/drag_handle.css b/chromium/third_party/trace-viewer/src/ui/drag_handle.css
deleted file mode 100644
index 2cd2b1c4c81..00000000000
--- a/chromium/third_party/trace-viewer/src/ui/drag_handle.css
+++ /dev/null
@@ -1,36 +0,0 @@
-/* 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;
-}