Home | History | Annotate | Download | only in ui
      1 /* Copyright (c) 2012 The Chromium 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 x-drag-handle {
      7   -webkit-user-select: none;
      8   box-sizing: border-box;
      9   display: block;
     10 }
     11 
     12 x-drag-handle.horizontal-drag-handle {
     13   background-image: -webkit-gradient(linear,
     14                                      0 0, 0 100%,
     15                                      from(#E5E5E5),
     16                                      to(#D1D1D1));
     17   border-bottom: 1px solid #8e8e8e;
     18   border-top: 1px solid white;
     19   cursor: ns-resize;
     20   height: 7px;
     21   position: relative;
     22   z-index: 10;
     23 }
     24 
     25 x-drag-handle.vertical-drag-handle {
     26   background-image: -webkit-gradient(linear,
     27                                      0 0, 100% 0,
     28                                      from(#E5E5E5),
     29                                      to(#D1D1D1));
     30   border-left: 1px solid white;
     31   border-right: 1px solid #8e8e8e;
     32   cursor: ew-resize;
     33   position: relative;
     34   width: 7px;
     35   z-index: 10;
     36 }
     37