|
@@ -1,170 +1,265 @@
|
|
|
body {
|
|
|
- margin : 0;
|
|
|
- padding : 0;
|
|
|
- background-color : black;
|
|
|
-}
|
|
|
-
|
|
|
-ul, li {
|
|
|
- margin : 0;
|
|
|
- padding : 0;
|
|
|
- list-style : none;
|
|
|
-}
|
|
|
-
|
|
|
-body, td, th, li, p, a, input, select {
|
|
|
- font-family : Verdana, serif;
|
|
|
- font-size : 9pt;
|
|
|
- color: #aaa;
|
|
|
-}
|
|
|
-
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ background-color: black;
|
|
|
+}
|
|
|
+ul,
|
|
|
+li {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ list-style: none;
|
|
|
+}
|
|
|
+body,
|
|
|
+td,
|
|
|
+th,
|
|
|
+li,
|
|
|
+p,
|
|
|
+a,
|
|
|
+input,
|
|
|
+select {
|
|
|
+ font-family: Verdana, serif;
|
|
|
+ font-size: 9pt;
|
|
|
+ color: #aaa;
|
|
|
+}
|
|
|
+input {
|
|
|
+ padding-left: 4px;
|
|
|
+}
|
|
|
+.checkbox-wrapper {
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+input[type='checkbox'] {
|
|
|
+ -webkit-font-smoothing: antialiased;
|
|
|
+ text-rendering: optimizeSpeed;
|
|
|
+ width: 13px;
|
|
|
+ height: 13px;
|
|
|
+ margin: 0;
|
|
|
+ margin-right: 1px;
|
|
|
+ display: block;
|
|
|
+ float: left;
|
|
|
+ position: relative;
|
|
|
+ cursor: pointer;
|
|
|
+ top: 1px;
|
|
|
+}
|
|
|
+input[type='checkbox']:after {
|
|
|
+ content: "";
|
|
|
+ vertical-align: middle;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 13px;
|
|
|
+ position: absolute;
|
|
|
+ cursor: pointer;
|
|
|
+ height: 13px;
|
|
|
+ width: 13px;
|
|
|
+ left: 0px;
|
|
|
+ top: 0px;
|
|
|
+ font-size: 10px;
|
|
|
+ box-shadow: inset 0px 1px 1px #000, 0px 1px 0px #444;
|
|
|
+ background: #202020;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+input[type='checkbox']:checked:after {
|
|
|
+ content: '\2714';
|
|
|
+}
|
|
|
a {
|
|
|
- text-decoration : none;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+#mainmenu {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+select,
|
|
|
+input {
|
|
|
+ background-color: #222222;
|
|
|
+ border: 1px solid #aaa;
|
|
|
+}
|
|
|
+select:focus,
|
|
|
+input:focus {
|
|
|
+ background-color: #141414;
|
|
|
}
|
|
|
-
|
|
|
-#mainmenu { display : none }
|
|
|
-
|
|
|
.hide-scrollzone {
|
|
|
- width : 100%;
|
|
|
- height : 100%;
|
|
|
- overflow : auto;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: auto;
|
|
|
}
|
|
|
-
|
|
|
.hide-scrollzone::-webkit-scrollbar {
|
|
|
- width: 5px;
|
|
|
- height: 5px;
|
|
|
+ width: 5px;
|
|
|
+ height: 5px;
|
|
|
}
|
|
|
-
|
|
|
.hide-scrollzone::-webkit-scrollbar-track {
|
|
|
- background: #666;
|
|
|
+ background: #666;
|
|
|
}
|
|
|
-
|
|
|
.hide-scrollzone::-webkit-scrollbar-thumb {
|
|
|
- background: #ddd;
|
|
|
+ background: #ddd;
|
|
|
}
|
|
|
-
|
|
|
.hide-loading {
|
|
|
- width : 16px;
|
|
|
- height : 16px;
|
|
|
- display : inline-block;
|
|
|
- background : url('libs/jstree/default-dark/throbber.gif');
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ display: inline-block;
|
|
|
+ background: url('libs/jstree/default-dark/throbber.gif');
|
|
|
}
|
|
|
-
|
|
|
.hide-scene {
|
|
|
- cursor: default;
|
|
|
+ cursor: default;
|
|
|
}
|
|
|
-
|
|
|
.hide-scene-layer {
|
|
|
- position: absolute;
|
|
|
- z-index: 1;
|
|
|
- height: 100%;
|
|
|
+ position: absolute;
|
|
|
+ z-index: 1;
|
|
|
+ height: 100%;
|
|
|
}
|
|
|
-
|
|
|
.hide-scene-layer .jstree {
|
|
|
- background: transparent !important;
|
|
|
- user-select: none;
|
|
|
+ background: transparent !important;
|
|
|
+ user-select: none;
|
|
|
}
|
|
|
-
|
|
|
-.hide-toolbar-content {
|
|
|
- flex-grow: 100;
|
|
|
- position: relative;
|
|
|
+.hide-toolbar {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ height: 100%;
|
|
|
}
|
|
|
-
|
|
|
-.hide-toolbar-content > canvas {
|
|
|
- position : absolute;
|
|
|
+.hide-toolbar > .content {
|
|
|
+ flex-grow: 100;
|
|
|
+ position: relative;
|
|
|
}
|
|
|
-
|
|
|
-.hide-toolbar-container {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- height : 100%;
|
|
|
+.hide-toolbar > .content > canvas {
|
|
|
+ position: absolute;
|
|
|
}
|
|
|
-
|
|
|
-.hide-toolbar {
|
|
|
- width: 100%;
|
|
|
- height : 24px;
|
|
|
- padding : 4px;
|
|
|
- padding-top: 2px;
|
|
|
- padding-bottom: 6px;
|
|
|
- background-color : rgb(34,34,34);
|
|
|
- border-bottom : 1px solid #000;
|
|
|
-}
|
|
|
-
|
|
|
-.hide-toolbar-button, .hide-toolbar-toggle {
|
|
|
- margin-right : 5px;
|
|
|
- display: inline-block;
|
|
|
- border: 1px solid rgb(90,90,90);
|
|
|
- width : 20px;
|
|
|
- height : 20px;
|
|
|
- padding : 2px;
|
|
|
- text-align: center;
|
|
|
- border-radius: 1px;
|
|
|
- text-shadow: 1px 2px 2px black;
|
|
|
- background: -webkit-linear-gradient(top, rgb(90,90,90), rgb(50,50,50));
|
|
|
- cursor : pointer;
|
|
|
- font-size: 16px;
|
|
|
- vertical-align: top;
|
|
|
-}
|
|
|
-
|
|
|
-.hide-toolbar-button .hide-toolbar-icon {
|
|
|
- vertical-align: center;
|
|
|
-}
|
|
|
-
|
|
|
-.hide-toolbar-button:hover, .hide-toolbar-toggle:hover {
|
|
|
- color : white;
|
|
|
- border-color : white;
|
|
|
- background-color : #666;
|
|
|
-}
|
|
|
-
|
|
|
-.hide-toolbar-toggle.toggled {
|
|
|
- color : #ddd;
|
|
|
- background : #777;
|
|
|
- padding-top: 2px;
|
|
|
- padding-bottom: 1px;
|
|
|
- text-shadow: none;
|
|
|
- border-top-width: 2px;
|
|
|
- border-top-color: #444;
|
|
|
-}
|
|
|
-
|
|
|
-.hide-toolbar-button:active {
|
|
|
- padding-top: 3px;
|
|
|
- padding-bottom: 1px;
|
|
|
-}
|
|
|
-
|
|
|
-.hide-toolbar-select {
|
|
|
- height : 20px;
|
|
|
- padding : 2px;
|
|
|
- padding-top: 4px;
|
|
|
- margin-right : 5px;
|
|
|
- display : inline-block;
|
|
|
-}
|
|
|
-
|
|
|
-.hide-toolbar-select .hide-toolbar-icon {
|
|
|
- font-size: 16px;
|
|
|
- vertical-align: top;
|
|
|
-}
|
|
|
-
|
|
|
-.hide-toolbar-select > select {
|
|
|
- margin-left : 5px;
|
|
|
- min-width : 100px;
|
|
|
-}
|
|
|
-
|
|
|
-select {
|
|
|
- background-color: rgb(34,34,34);
|
|
|
+.hide-toolbar > .toolbar {
|
|
|
+ width: 100%;
|
|
|
+ height: 24px;
|
|
|
+ padding: 4px;
|
|
|
+ padding-top: 2px;
|
|
|
+ padding-bottom: 6px;
|
|
|
+ background-color: #222222;
|
|
|
+ border-bottom: 1px solid #000;
|
|
|
+}
|
|
|
+.hide-toolbar .button,
|
|
|
+.hide-toolbar .toggle {
|
|
|
+ margin-right: 5px;
|
|
|
+ display: inline-block;
|
|
|
+ border: 1px solid #5a5a5a;
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ padding: 2px;
|
|
|
+ text-align: center;
|
|
|
+ border-radius: 1px;
|
|
|
+ text-shadow: 1px 2px 2px black;
|
|
|
+ background: -webkit-linear-gradient(top, #5a5a5a, #323232);
|
|
|
+ cursor: pointer;
|
|
|
+ font-size: 16px;
|
|
|
+ vertical-align: top;
|
|
|
+}
|
|
|
+.hide-toolbar .button > .icon,
|
|
|
+.hide-toolbar .toggle > .icon {
|
|
|
+ vertical-align: center;
|
|
|
+}
|
|
|
+.hide-toolbar .button:hover,
|
|
|
+.hide-toolbar .toggle:hover {
|
|
|
+ color: white;
|
|
|
+ border-color: white;
|
|
|
+ background-color: #666;
|
|
|
+}
|
|
|
+.hide-toolbar .toggle.toggled {
|
|
|
+ color: #ddd;
|
|
|
+ background: #777;
|
|
|
+ padding-top: 2px;
|
|
|
+ padding-bottom: 1px;
|
|
|
+ text-shadow: none;
|
|
|
+ border-top-width: 2px;
|
|
|
+ border-top-color: #444;
|
|
|
+}
|
|
|
+.hide-toolbar .button:active {
|
|
|
+ padding-top: 3px;
|
|
|
+ padding-bottom: 1px;
|
|
|
+}
|
|
|
+.hide-toolbar .select {
|
|
|
+ height: 20px;
|
|
|
+ padding: 2px;
|
|
|
+ padding-top: 4px;
|
|
|
+ margin-right: 5px;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.hide-toolbar .select .icon {
|
|
|
+ font-size: 16px;
|
|
|
+ vertical-align: top;
|
|
|
+}
|
|
|
+.hide-toolbar .select > select {
|
|
|
+ margin-left: 5px;
|
|
|
+ min-width: 100px;
|
|
|
+}
|
|
|
+/* Properties */
|
|
|
+.hide-properties {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+.hide-properties > .panel {
|
|
|
+ width: 250px;
|
|
|
+ padding: 10px;
|
|
|
+}
|
|
|
+.hide-properties > .content {
|
|
|
+ flex-grow: 100;
|
|
|
+}
|
|
|
+.hide-properties .section {
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+.hide-properties .section > h1 {
|
|
|
+ font-size: 12px;
|
|
|
+ margin: 0px;
|
|
|
+ cursor: pointer;
|
|
|
+ user-select: none;
|
|
|
+ width: 100%;
|
|
|
+ padding: 2px;
|
|
|
+ padding-bottom: 0px;
|
|
|
+ margin-bottom: 2px;
|
|
|
+}
|
|
|
+.hide-properties .section > h1:hover {
|
|
|
+ background-color: #333;
|
|
|
+}
|
|
|
+.hide-properties .section > h1:before {
|
|
|
+ content: "\25ba ";
|
|
|
+}
|
|
|
+.hide-properties .section.open > h1:before {
|
|
|
+ content: "\25bc ";
|
|
|
+}
|
|
|
+.hide-properties dl {
|
|
|
+ margin: 0px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+.hide-properties dd,
|
|
|
+.hide-properties dt {
|
|
|
+ vertical-align: middle;
|
|
|
+ display: inline-block;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-top: 4px;
|
|
|
+}
|
|
|
+.hide-properties dt {
|
|
|
+ width: 80px;
|
|
|
+ text-align: right;
|
|
|
+ color: #d8d8d8;
|
|
|
+}
|
|
|
+.hide-properties dd {
|
|
|
+ width: 160px;
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
+.hide-properties dd input:not([type=checkbox]) {
|
|
|
+ width: 150px;
|
|
|
+}
|
|
|
+.hide-properties dd select {
|
|
|
+ width: 156px;
|
|
|
}
|
|
|
-
|
|
|
/* Golden Layout Fixes */
|
|
|
-
|
|
|
.lm_header .lm_tabs {
|
|
|
- z-index : 1;
|
|
|
+ z-index: 1;
|
|
|
}
|
|
|
-
|
|
|
.lm_dropTargetIndicator {
|
|
|
- box-shadow : none;
|
|
|
+ box-shadow: none;
|
|
|
+}
|
|
|
+div.lm_close_tab {
|
|
|
+ top: 0px !important;
|
|
|
+ right: 0px !important;
|
|
|
+ width: 20px !important;
|
|
|
+ height: 18px !important;
|
|
|
+}
|
|
|
+div.lm_close_tab:hover {
|
|
|
+ background-color: #555 !important;
|
|
|
}
|
|
|
-div.lm_close_tab { top : 0px !important; right : 0px !important; width : 20px !important; height : 18px !important; }
|
|
|
-div.lm_close_tab:hover { background-color : #555 !important; }
|
|
|
-
|
|
|
/* JSTree fixes */
|
|
|
-
|
|
|
.jstree-icon {
|
|
|
- color : #888 !important;
|
|
|
-}
|
|
|
+ color: #888 !important;
|
|
|
+}
|