1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*!
- * StyleSheet for JQuery splitter Plugin
- * Copyright (C) 2010 Jakub Jankiewicz <http://jcubic.pl>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- .splitter_panel {
- position: relative;
- }
- .splitter_panel .vsplitter {
- background-color: grey;
- cursor: col-resize;
- z-index:900;
- width: 7px;
- }
- .splitter_panel .hsplitter {
- background-color: #5F5F5F;
- cursor: row-resize;
- z-index: 800;
- height: 7px;
- }
- .splitter_panel .vsplitter.splitter-invisible,
- .splitter_panel .hsplitter.splitter-invisible {
- background: none;
- }
- .splitter_panel .vsplitter, .splitter_panel .left_panel, .splitter_panel .right_panel,
- .splitter_panel .hsplitter, .splitter_panel .top_panel, .splitter_panel .bottom_panel {
- position: absolute;
- overflow: auto;
- }
- .splitter_panel .vsplitter, .splitter_panel .left_panel, .splitter_panel .right_panel {
- height: 100%;
- }
- .splitter_panel .hsplitter, .splitter_panel .top_panel, .splitter_panel .bottom_panel {
- width: 100%;
- }
- .splitter_panel .top_panel, .splitter_panel .left_panel, .splitter_panel .vsplitter {
- top: 0;
- }
- .splitter_panel .top_panel, .splitter_panel .bottom_panel, .splitter_panel .left_panel, .splitter_panel .hsplitter {
- left: 0;
- }
- .splitter_panel .bottom_panel {
- bottom: 0;
- }
- .splitter_panel .right_panel {
- right: 0;
- }
- .splitterMask {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 1000;
- }
|