/**
 * Copyright 2016-present, Baifendian, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
/**
 * Colors
 */
.bfd-split-panel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 10px auto;
  overflow: hidden;
}
.bfd-split-panel__horline {
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  width: 100%;
  overflow: hidden;
  background: #19afff;
  cursor: n-resize;
}
.bfd-split-panel__verline {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  overflow: hidden;
  background: #19afff;
  cursor: w-resize;
}
.bfd-split-panel--top {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 2px;
  overflow: hidden;
}
.bfd-split-panel--bottom {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 2px;
  overflow: hidden;
}
