Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / composer / src / src / styles / CanvasPanelTray.scss
diff --git a/skyquake/plugins/composer/src/src/styles/CanvasPanelTray.scss b/skyquake/plugins/composer/src/src/styles/CanvasPanelTray.scss
new file mode 100644 (file)
index 0000000..7e9e336
--- /dev/null
@@ -0,0 +1,63 @@
+
+/*
+ * 
+ *   Copyright 2016 RIFT.IO Inc
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+@import 'variables';
+@import 'DataOpenCloseIcon';
+
+$tray-body-height: 250px;
+$tray-head-height: 25px;
+
+.CanvasPanelTray {
+       position: absolute;
+       bottom: 0;
+       left: 0;
+       right: 0;
+       height: 25px;
+       min-width: 300px;
+       background-color: white;
+       &.-with-transitions {
+               transition: height 300ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
+       }
+       h1 {
+               border-bottom: 1px solid rgba(143, 143, 143, 0.05);
+               cursor: pointer;
+               color: #666;
+               font-size: 12px;
+               font-style: normal;
+               line-height: 16px;
+               height: 25px;
+               margin: 0;
+               padding-left: 0;
+               padding-right: 0;
+               text-align: center;
+               text-transform: uppercase;
+               background-color: $panel-bg-color-contrast;
+       }
+       > .tray-body {
+               position: absolute;
+               top: 25px;
+               right: 0;
+               left: 0;
+               bottom: 0;
+               overflow: hidden;
+               &:hover {
+                       overflow: auto;
+               }
+       }
+
+}