Merging local changes
This commit is contained in:
parent
ea8409575c
commit
661053aee2
34 changed files with 1691 additions and 814 deletions
99
js/plugins/jquery-split-pane.css
Normal file
99
js/plugins/jquery-split-pane.css
Normal file
|
@ -0,0 +1,99 @@
|
|||
/*!
|
||||
|
||||
Split Pane v0.3
|
||||
|
||||
Copyright (c) 2012 Simon Hagström
|
||||
|
||||
Released under the MIT license
|
||||
https://raw.github.com/shagstrom/split-pane/master/LICENSE
|
||||
|
||||
*/
|
||||
.split-pane {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.split-pane.fixed-top > .split-pane-component,
|
||||
.split-pane.fixed-bottom > .split-pane-component,
|
||||
.split-pane.horizontal-percent > .split-pane-component {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
top: auto;
|
||||
bottom: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.split-pane.fixed-top > .split-pane-component:first-child,
|
||||
.split-pane.fixed-bottom > .split-pane-component:first-child,
|
||||
.split-pane.horizontal-percent > .split-pane-component:first-child {
|
||||
top: 0;
|
||||
bottom: auto;
|
||||
}
|
||||
|
||||
.split-pane.fixed-top > .split-pane-divider,
|
||||
.split-pane.fixed-bottom > .split-pane-divider,
|
||||
.split-pane.horizontal-percent > .split-pane-divider {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
left: 0;
|
||||
cursor: ns-resize;
|
||||
cursor: n-resize\9;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.split-pane.fixed-left > .split-pane-component,
|
||||
.split-pane.fixed-right > .split-pane-component,
|
||||
.split-pane.vertical-percent > .split-pane-component {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
left: auto;
|
||||
right: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.split-pane.fixed-left > .split-pane-component:first-child,
|
||||
.split-pane.fixed-right > .split-pane-component:first-child,
|
||||
.split-pane.vertical-percent > .split-pane-component:first-child {
|
||||
left: 0;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
.split-pane.fixed-left > .split-pane-divider,
|
||||
.split-pane.fixed-right > .split-pane-divider,
|
||||
.split-pane.vertical-percent > .split-pane-divider {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
cursor: ew-resize;
|
||||
cursor: w-resize\9;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.split-pane-resize-shim {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 10000;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.split-pane.fixed-left > .split-pane-resize-shim,
|
||||
.split-pane.fixed-right > .split-pane-resize-shim,
|
||||
.split-pane.vertical-percent > .split-pane-resize-shim {
|
||||
cursor: ew-resize;
|
||||
cursor: w-resize\9;
|
||||
}
|
||||
|
||||
.split-pane.fixed-top > .split-pane-resize-shim,
|
||||
.split-pane.fixed-bottom > .split-pane-resize-shim,
|
||||
.split-pane.horizontal-percent > .split-pane-resize-shim {
|
||||
cursor: ns-resize;
|
||||
cursor: n-resize\9;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue