summaryrefslogtreecommitdiff
path: root/public/javascripts/themes/gray/layout.css
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-03-20 17:33:43 -0700
committeryo mama <pepper@scannerjammer.com>2015-03-20 17:33:43 -0700
commit2afbcf4e7d000d99fdbc582d7113684ee00e80cc (patch)
tree6ba3313b78625735fb295e3d375e59054c31e558 /public/javascripts/themes/gray/layout.css
first
Diffstat (limited to 'public/javascripts/themes/gray/layout.css')
-rw-r--r--public/javascripts/themes/gray/layout.css91
1 files changed, 91 insertions, 0 deletions
diff --git a/public/javascripts/themes/gray/layout.css b/public/javascripts/themes/gray/layout.css
new file mode 100644
index 0000000..d26772e
--- /dev/null
+++ b/public/javascripts/themes/gray/layout.css
@@ -0,0 +1,91 @@
+.layout {
+ position: relative;
+ overflow: hidden;
+ margin: 0;
+ padding: 0;
+ z-index: 0;
+}
+.layout-panel {
+ position: absolute;
+ overflow: hidden;
+}
+.layout-panel-east,
+.layout-panel-west {
+ z-index: 2;
+}
+.layout-panel-north,
+.layout-panel-south {
+ z-index: 3;
+}
+.layout-expand {
+ position: absolute;
+ padding: 0px;
+ font-size: 1px;
+ cursor: pointer;
+ z-index: 1;
+}
+.layout-expand .panel-header,
+.layout-expand .panel-body {
+ background: transparent;
+ filter: none;
+ overflow: hidden;
+}
+.layout-expand .panel-header {
+ border-bottom-width: 0px;
+}
+.layout-split-proxy-h,
+.layout-split-proxy-v {
+ position: absolute;
+ font-size: 1px;
+ display: none;
+ z-index: 5;
+}
+.layout-split-proxy-h {
+ width: 5px;
+ cursor: e-resize;
+}
+.layout-split-proxy-v {
+ height: 5px;
+ cursor: n-resize;
+}
+.layout-mask {
+ position: absolute;
+ background: #fafafa;
+ filter: alpha(opacity=10);
+ opacity: 0.10;
+ z-index: 4;
+}
+.layout-button-up {
+ background: url('images/layout_arrows.png') no-repeat -16px -16px;
+}
+.layout-button-down {
+ background: url('images/layout_arrows.png') no-repeat -16px 0;
+}
+.layout-button-left {
+ background: url('images/layout_arrows.png') no-repeat 0 0;
+}
+.layout-button-right {
+ background: url('images/layout_arrows.png') no-repeat 0 -16px;
+}
+.layout-split-proxy-h,
+.layout-split-proxy-v {
+ background-color: #bfbfbf;
+}
+.layout-split-north {
+ border-bottom: 5px solid #efefef;
+}
+.layout-split-south {
+ border-top: 5px solid #efefef;
+}
+.layout-split-east {
+ border-left: 5px solid #efefef;
+}
+.layout-split-west {
+ border-right: 5px solid #efefef;
+}
+.layout-expand {
+ background-color: #f3f3f3;
+}
+.layout-expand-over {
+ background-color: #f3f3f3;
+}