UNPKG

@phosphor/widgets

Version:
79 lines (54 loc) 1.25 kB
/*----------------------------------------------------------------------------- | Copyright (c) 2014-2017, PhosphorJS Contributors | | Distributed under the terms of the BSD 3-Clause License. | | The full license is in the file LICENSE, distributed with this software. |----------------------------------------------------------------------------*/ .p-DockPanel { z-index: 0; } .p-DockPanel-widget { z-index: 0; } .p-DockPanel-tabBar { z-index: 1; } .p-DockPanel-handle { z-index: 2; } .p-DockPanel-handle.p-mod-hidden { display: none !important; } .p-DockPanel-handle:after { position: absolute; top: 0; left: 0; width: 100%; height: 100%; content: ''; } .p-DockPanel-handle[data-orientation='horizontal'] { cursor: ew-resize; } .p-DockPanel-handle[data-orientation='vertical'] { cursor: ns-resize; } .p-DockPanel-handle[data-orientation='horizontal']:after { left: 50%; min-width: 8px; transform: translateX(-50%); } .p-DockPanel-handle[data-orientation='vertical']:after { top: 50%; min-height: 8px; transform: translateY(-50%); } .p-DockPanel-overlay { z-index: 3; box-sizing: border-box; pointer-events: none; } .p-DockPanel-overlay.p-mod-hidden { display: none !important; }