2013-09-05 16:02:48 +02:00
|
|
|
/**
|
2015-01-14 23:40:45 +01:00
|
|
|
* Copyright 2013, 2015 IBM Corp.
|
2013-09-05 16:02:48 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
body {
|
|
|
|
font: 13px "Helvetica" !important;
|
|
|
|
padding-top: 100px;
|
|
|
|
background: url("pw_maze_white.png");
|
|
|
|
}
|
2014-08-20 22:58:54 +02:00
|
|
|
|
|
|
|
#header {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
background: #000;
|
|
|
|
box-sizing: border-box;
|
2015-01-15 11:27:18 +01:00
|
|
|
padding: 0px 0px 0px 20px;
|
2014-11-12 14:21:39 +01:00
|
|
|
color: #C7C7C7;
|
|
|
|
font-size: 14px;
|
2014-08-20 22:58:54 +02:00
|
|
|
}
|
|
|
|
|
2014-11-12 14:21:39 +01:00
|
|
|
|
2013-12-31 22:32:50 +01:00
|
|
|
#dropTarget {
|
|
|
|
position: absolute;
|
|
|
|
top: 0; bottom: 0;
|
|
|
|
left: 0; right: 0;
|
2014-11-10 12:19:33 +01:00
|
|
|
background: rgba(0,0,0,0.1);
|
2013-12-31 22:32:50 +01:00
|
|
|
display:table;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#dropTarget div {
|
2015-02-03 12:21:29 +01:00
|
|
|
display: table-cell;
|
2013-12-31 22:32:50 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 40px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2014-08-20 22:58:54 +02:00
|
|
|
#dropTarget div i {
|
|
|
|
font-size: 80px;
|
|
|
|
}
|
2014-02-21 10:54:50 +01:00
|
|
|
div.btn-group, a.btn {
|
2015-01-15 11:27:18 +01:00
|
|
|
-webkit-user-select: none;
|
2014-02-21 10:54:50 +01:00
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2014-08-22 12:07:32 +02:00
|
|
|
span.logo {
|
|
|
|
pointer-events: none;
|
2014-08-21 22:48:08 +02:00
|
|
|
float: left;
|
2015-01-15 11:27:18 +01:00
|
|
|
margin-top: 5px;
|
2014-08-21 22:48:08 +02:00
|
|
|
font-size: 30px;
|
2014-08-20 22:58:54 +02:00
|
|
|
line-height: 30px;
|
|
|
|
text-decoration: none;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2014-08-22 12:07:32 +02:00
|
|
|
span.logo span {
|
2013-09-05 16:02:48 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
font-size: 16px !important;
|
|
|
|
}
|
2014-08-22 12:07:32 +02:00
|
|
|
span.logo img {
|
|
|
|
height: 18px;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-01-08 23:34:26 +01:00
|
|
|
#header ul.header-toolbar {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
2015-01-15 11:27:18 +01:00
|
|
|
float: right;
|
2015-01-08 23:34:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#header ul.header-toolbar > li {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2014-12-10 15:58:53 +01:00
|
|
|
#header ul.header-toolbar > li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2014-02-25 00:35:11 +01:00
|
|
|
.button {
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2014-08-22 12:07:32 +02:00
|
|
|
#header .button {
|
2015-01-08 23:34:26 +01:00
|
|
|
min-width: 20px;
|
|
|
|
text-align: center;
|
2015-01-15 11:27:18 +01:00
|
|
|
line-height: 40px;
|
2014-08-22 12:07:32 +02:00
|
|
|
display: inline-block;
|
|
|
|
font-size: 14px;
|
2015-01-15 11:27:18 +01:00
|
|
|
padding: 0px 12px;
|
2014-08-22 12:07:32 +02:00
|
|
|
text-decoration: none;
|
2015-01-15 22:41:40 +01:00
|
|
|
color: #C7C7C7;
|
2015-01-08 23:34:26 +01:00
|
|
|
margin: auto 5px;
|
2014-08-22 12:07:32 +02:00
|
|
|
vertical-align: middle;
|
2015-01-15 11:27:18 +01:00
|
|
|
border-left: 2px solid #000;
|
|
|
|
border-right: 2px solid #000;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2014-08-22 12:07:32 +02:00
|
|
|
#header .button:not(.disabled):hover {
|
2015-01-15 11:27:18 +01:00
|
|
|
border-color: #323232;
|
2014-08-22 12:07:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#btn-deploy {
|
2015-01-14 23:40:45 +01:00
|
|
|
background: #8C101C; /*#d24741;*/
|
2015-01-15 11:27:18 +01:00
|
|
|
color: #eee !important;
|
2014-11-23 23:25:25 +01:00
|
|
|
}
|
|
|
|
#btn-deploy + a {
|
2015-01-14 23:40:45 +01:00
|
|
|
background: #8C101C; /*#BA403B;*/
|
2015-01-15 11:27:18 +01:00
|
|
|
color: #eee;
|
2014-11-23 23:25:25 +01:00
|
|
|
}
|
|
|
|
#btn-deploy + a:hover {
|
2015-01-14 23:40:45 +01:00
|
|
|
background: #6E0A1E; /*#AD3C38;*/
|
2015-01-15 11:27:18 +01:00
|
|
|
color: #eee;
|
2014-08-22 12:07:32 +02:00
|
|
|
}
|
2014-11-23 23:25:25 +01:00
|
|
|
#btn-deploy + a:active {
|
2015-01-14 23:40:45 +01:00
|
|
|
background: #4C0A17; /*#aa1f19;*/
|
2014-11-23 23:25:25 +01:00
|
|
|
color: #ccc;
|
|
|
|
}
|
2015-01-15 11:27:18 +01:00
|
|
|
span.deploy-button-group.open > #btn-deploy + a {
|
2015-01-15 22:41:40 +01:00
|
|
|
background: #121212 !important;
|
2015-01-15 11:27:18 +01:00
|
|
|
}
|
2014-11-23 23:25:25 +01:00
|
|
|
|
|
|
|
#btn-deploy:not(.disabled):hover {
|
2015-01-14 23:40:45 +01:00
|
|
|
background: #6E0A1E; /*#ca3f39;*/
|
2014-11-23 23:25:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-22 12:07:32 +02:00
|
|
|
#btn-deploy:not(.disabled):active {
|
2015-01-14 23:40:45 +01:00
|
|
|
background: #4C0A17 /*#aa1f19*/ !important;
|
2014-11-23 23:25:25 +01:00
|
|
|
}
|
|
|
|
#btn-deploy:not(.disabled):active {
|
2014-08-22 12:07:32 +02:00
|
|
|
color: #ccc !important;
|
|
|
|
}
|
2014-11-23 23:25:25 +01:00
|
|
|
|
2014-08-22 12:07:32 +02:00
|
|
|
#btn-deploy.disabled {
|
|
|
|
cursor: default;
|
2014-11-23 23:25:25 +01:00
|
|
|
background: #444;
|
2014-08-22 12:07:32 +02:00
|
|
|
color: #999 !important;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-01-14 23:40:45 +01:00
|
|
|
|
2014-11-23 23:25:25 +01:00
|
|
|
#btn-deploy.disabled + a {
|
2015-01-14 23:40:45 +01:00
|
|
|
background: #444;
|
2014-11-23 23:25:25 +01:00
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
#btn-deploy.disabled + a:hover {
|
|
|
|
background: #555;
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
#btn-deploy.disabled + a:active {
|
|
|
|
background: #444;
|
|
|
|
color: #ddd;
|
|
|
|
}
|
2015-01-15 11:27:18 +01:00
|
|
|
span.deploy-button-group.open > #btn-deploy.disabled + a {
|
2015-01-15 22:41:40 +01:00
|
|
|
background: #121212 !important;
|
2015-01-15 11:27:18 +01:00
|
|
|
}
|
|
|
|
|
2014-11-23 23:25:25 +01:00
|
|
|
|
2015-01-14 23:40:45 +01:00
|
|
|
#btn-deploy img {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
#btn-deploy.disabled img {
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
2014-11-23 23:25:25 +01:00
|
|
|
|
|
|
|
.button-group {
|
|
|
|
display: inline-block;
|
2014-12-10 15:58:53 +01:00
|
|
|
margin: auto 15px;
|
2014-11-23 23:25:25 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
background: #555;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.button-group > a {
|
|
|
|
float: left;
|
|
|
|
line-height: 22px;
|
|
|
|
font-size: 14px;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 4px 8px;
|
|
|
|
color: #ccc;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.button-group > a:last-child {
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2014-12-10 15:58:53 +01:00
|
|
|
#header .button {
|
2014-08-22 12:07:32 +02:00
|
|
|
font-size: 20px !important;
|
|
|
|
}
|
2014-12-10 15:58:53 +01:00
|
|
|
#header .button:active, #header .button.active {
|
2015-01-15 22:41:40 +01:00
|
|
|
background: #121212;
|
2014-05-15 23:49:07 +02:00
|
|
|
}
|
2014-08-22 12:07:32 +02:00
|
|
|
#header .button:focus {
|
|
|
|
outline: none;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2014-12-10 15:58:53 +01:00
|
|
|
#header li.open .button {
|
2015-01-15 22:41:40 +01:00
|
|
|
background: #121212;
|
|
|
|
border-color: #121212;
|
2015-01-14 23:40:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2014-02-25 00:35:11 +01:00
|
|
|
#workspace-toolbar .button {
|
|
|
|
line-height: 18px;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 2px 8px;
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #666;
|
|
|
|
background: #f6f6f6;
|
|
|
|
vertical-align: middle;
|
|
|
|
box-shadow: 0 0 2px #888;
|
2014-11-13 13:59:28 +01:00
|
|
|
margin-right: 5px;
|
2014-02-25 00:35:11 +01:00
|
|
|
}
|
2014-11-13 13:59:28 +01:00
|
|
|
#workspace-toolbar .button.disabled {
|
|
|
|
box-shadow: 0 0 2px #bbb;
|
|
|
|
color: #aaa;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
#workspace-toolbar .button:not(.disabled):hover {
|
2014-02-25 00:35:11 +01:00
|
|
|
background: #e6e6e6;
|
|
|
|
box-shadow: 0 0 2px #666;
|
|
|
|
}
|
2014-11-13 13:59:28 +01:00
|
|
|
#workspace-toolbar .button:not(.disabled):active {
|
2014-02-25 00:35:11 +01:00
|
|
|
background: #e0e0e0;
|
|
|
|
box-shadow: 0 0 2px #444;
|
|
|
|
}
|
2014-08-22 12:07:32 +02:00
|
|
|
|
2013-10-23 01:02:22 +02:00
|
|
|
#workspace {
|
2013-09-05 16:02:48 +02:00
|
|
|
margin-left: 160px;
|
2013-10-23 01:02:22 +02:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chart {
|
2013-09-05 16:02:48 +02:00
|
|
|
overflow: auto;
|
|
|
|
background: #e3e3e3;
|
2013-10-23 01:02:22 +02:00
|
|
|
position: absolute;
|
|
|
|
bottom:0px;
|
|
|
|
top: 30px;
|
|
|
|
left:0px;
|
|
|
|
right:0px;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-03-02 23:55:34 +01:00
|
|
|
#chart svg:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2014-02-21 10:54:50 +01:00
|
|
|
#workspace-toolbar {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 30px;
|
|
|
|
left:0;
|
2014-02-25 00:35:11 +01:00
|
|
|
right: 20px;
|
|
|
|
padding: 7px;
|
|
|
|
border-bottom-right-radius: 5px;
|
2014-02-21 10:54:50 +01:00
|
|
|
background: #f3f3f3;
|
|
|
|
}
|
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
#chart-zoom-controls {
|
|
|
|
padding-top: 3px;
|
|
|
|
text-align: right;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
#palette {
|
|
|
|
background: #f3f3f3;
|
2014-01-19 01:01:27 +01:00
|
|
|
width: 140px;
|
2013-09-05 16:02:48 +02:00
|
|
|
text-align: center;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2014-01-19 01:01:27 +01:00
|
|
|
.palette-scroll {
|
2014-03-17 17:26:15 +01:00
|
|
|
display: none;
|
2014-01-19 01:01:27 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left:0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 35px;
|
|
|
|
padding: 5px;
|
|
|
|
overflow-y: auto;
|
|
|
|
box-sizing:border-box;
|
2015-02-03 12:21:29 +01:00
|
|
|
-moz-box-sizing: border-box;
|
2014-01-19 01:01:27 +01:00
|
|
|
}
|
2014-03-17 17:26:15 +01:00
|
|
|
.palette-spinner {
|
|
|
|
padding-top: 40px;
|
|
|
|
}
|
2014-01-19 01:01:27 +01:00
|
|
|
#palette-search {
|
|
|
|
position: absolute;
|
2014-03-17 17:26:15 +01:00
|
|
|
display: none;
|
2014-01-19 01:01:27 +01:00
|
|
|
bottom: 0;
|
|
|
|
left:0;
|
2014-01-27 22:55:31 +01:00
|
|
|
right:0;
|
2014-01-19 01:01:27 +01:00
|
|
|
overflow: hidden;
|
|
|
|
background: #f3f3f3;
|
|
|
|
text-align: center;
|
|
|
|
height: 35px;
|
|
|
|
padding: 3px;
|
|
|
|
border-top: 1px solid #999;
|
|
|
|
box-sizing:border-box;
|
2015-02-03 12:21:29 +01:00
|
|
|
-moz-box-sizing: border-box;
|
2014-01-19 01:01:27 +01:00
|
|
|
}
|
2014-08-19 23:58:52 +02:00
|
|
|
#palette-search i.fa-search {
|
2014-01-19 01:01:27 +01:00
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
2014-08-19 23:58:52 +02:00
|
|
|
left: 4px;
|
2014-01-19 01:01:27 +01:00
|
|
|
top: 10px;
|
|
|
|
}
|
2014-08-19 23:58:52 +02:00
|
|
|
#palette-search i.fa-times {
|
2014-01-19 01:01:27 +01:00
|
|
|
position: absolute;
|
2014-08-19 23:58:52 +02:00
|
|
|
right: 6px;
|
2014-01-19 01:01:27 +01:00
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#palette-search-clear {
|
|
|
|
display: none;
|
2014-08-19 23:58:52 +02:00
|
|
|
color: #000;
|
2014-01-19 01:01:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#palette-search input {
|
|
|
|
border-radius: 0;
|
|
|
|
border: none;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
padding: 3px 17px;
|
|
|
|
margin: 0px;
|
|
|
|
height: 30px;
|
|
|
|
box-sizing:border-box;
|
2015-02-03 12:21:29 +01:00
|
|
|
-moz-box-sizing: border-box;
|
2014-01-19 01:01:27 +01:00
|
|
|
}
|
2015-02-03 12:21:29 +01:00
|
|
|
|
2014-01-19 01:01:27 +01:00
|
|
|
#palette-search input:focus {
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
.palette-category {
|
|
|
|
border: 1px solid #999;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
.palette-content {
|
|
|
|
background: #fff;
|
|
|
|
border-top: 1px solid #aaa;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.palette-header {
|
|
|
|
background: #f3f3f3;
|
|
|
|
border-radius: 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: left;
|
2014-08-19 23:58:52 +02:00
|
|
|
padding: 1px;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
.palette-header i {
|
2014-08-19 23:58:52 +02:00
|
|
|
margin: 3px 4px 3px 3px;
|
2013-09-05 16:02:48 +02:00
|
|
|
-webkit-transition: all 0.2s ease-in-out;
|
|
|
|
-moz-transition: all 0.2s ease-in-out;
|
|
|
|
-o-transition: all 0.2s ease-in-out;
|
|
|
|
-webkit-transform: rotate(-90deg);
|
|
|
|
-moz-transform: rotate(-90deg);
|
|
|
|
-o-transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
.palette-header i.expanded {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
.palette-header span {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.palette_label {
|
2014-02-25 00:35:11 +01:00
|
|
|
margin: 4px 0;
|
|
|
|
line-height: 20px;
|
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
.palette_node {
|
|
|
|
cursor:move;
|
|
|
|
font-size:13px;
|
|
|
|
background: #ddd;
|
|
|
|
margin: 10px auto;
|
|
|
|
height: 25px;
|
|
|
|
border-radius: 6px;
|
|
|
|
border: 2px solid #999;
|
|
|
|
background-position: 5% 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 90px;
|
|
|
|
background-size: contain;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.palette_node:hover {
|
|
|
|
border-color: #ff7f0e;
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
.palette_port {
|
|
|
|
position: absolute;
|
|
|
|
top:8px;
|
|
|
|
left: -5px;
|
|
|
|
box-sizing: border-box;
|
2015-02-03 12:21:29 +01:00
|
|
|
-moz-box-sizing: border-box;
|
2013-09-05 16:02:48 +02:00
|
|
|
background:#d9d9d9;
|
|
|
|
border-radius: 3px;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border: 1px solid #999;
|
|
|
|
}
|
|
|
|
.palette_port_output {
|
|
|
|
left:85px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.palette_node:hover .palette_port {
|
|
|
|
border-color: #999;
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
|
|
|
background: #fff;
|
2013-10-28 21:06:46 +01:00
|
|
|
box-sizing: border-box;
|
2015-02-03 12:21:29 +01:00
|
|
|
-moz-box-sizing: border-box;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
#sidebar.closing {
|
|
|
|
background: #eee;
|
|
|
|
border-color: #900;
|
|
|
|
border-style: dashed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------- Layout ---------- */
|
|
|
|
#main-container {
|
|
|
|
position: absolute;
|
|
|
|
top:50px; left:0; bottom: 0; right:0;
|
|
|
|
overflow:hidden;
|
|
|
|
}
|
|
|
|
#palette {
|
|
|
|
position: absolute;
|
|
|
|
top: 5px; left:10px; bottom: 10px;
|
|
|
|
}
|
2013-10-23 01:02:22 +02:00
|
|
|
#workspace {
|
2013-09-05 16:02:48 +02:00
|
|
|
position: absolute;
|
|
|
|
margin: 0;
|
|
|
|
top:5px; left:160px; bottom: 10px; right: 330px;
|
|
|
|
}
|
|
|
|
#chart-zoom-controls {
|
|
|
|
position: absolute;
|
|
|
|
bottom:30px; right: 350px;
|
|
|
|
}
|
|
|
|
#sidebar {
|
|
|
|
width: 305px;
|
|
|
|
position: absolute;
|
|
|
|
right: 10px; top: 5px; bottom:10px;
|
|
|
|
}
|
|
|
|
#sidebar-separator {
|
2014-05-13 01:01:05 +02:00
|
|
|
width: 15px;
|
|
|
|
background: url(grip.png) no-repeat 50% 50%;
|
2013-09-05 16:02:48 +02:00
|
|
|
position: absolute;
|
2014-05-13 01:01:05 +02:00
|
|
|
right: 316px; top: 5px; bottom:10px;
|
2013-09-05 16:02:48 +02:00
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-closed > #sidebar { display: none; }
|
2014-05-13 01:01:05 +02:00
|
|
|
.sidebar-closed > #sidebar-separator { right: 0px !important; }
|
|
|
|
.sidebar-closed > #workspace { right: 15px !important; }
|
|
|
|
.sidebar-closed > #chart-zoom-controls { right: 35px !important; }
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
/* ---------- end layout ---------- */
|
|
|
|
|
|
|
|
.lasso {
|
|
|
|
stroke-width: 2px;
|
|
|
|
stroke: #ff7f0e;
|
|
|
|
fill: rgba(20,125,255,0.1);
|
|
|
|
stroke-dasharray: 10 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group-box {
|
|
|
|
stroke-width: 1px;
|
|
|
|
stroke: #aaaaaa;
|
|
|
|
fill: rgba(208, 211, 238, 0.1);
|
|
|
|
stroke-dasharray: 3 3;
|
|
|
|
}
|
|
|
|
.group-box-active {
|
|
|
|
fill: #fff;
|
|
|
|
stroke: #ff7f0e;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group_label {
|
|
|
|
stroke-width: 0;
|
|
|
|
fill: #999;
|
|
|
|
font-size: 11px;
|
|
|
|
pointer-events: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pull-right {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
|
2013-10-23 01:02:22 +02:00
|
|
|
#workspace, #palette, #sidebar {
|
2013-09-05 16:02:48 +02:00
|
|
|
border: 1px solid #000;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
#sidebar-content {
|
2013-10-28 21:06:46 +01:00
|
|
|
font-size: 1.2em;
|
2013-09-05 16:02:48 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
position: absolute;
|
2013-10-28 21:06:46 +01:00
|
|
|
top: 30px; left: 0px; right: 0; bottom: 1px;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.node_label_italic {
|
2013-12-12 16:51:15 +01:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.node_label_unknown {
|
|
|
|
font-style: italic;
|
|
|
|
fill: #e00 !important;
|
2013-09-19 12:07:57 +02:00
|
|
|
}
|
|
|
|
.node_label_white {
|
|
|
|
fill: #eee !important;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
.node_label {
|
|
|
|
stroke-width: 0;
|
|
|
|
fill: #333;
|
|
|
|
font-size: 14px;
|
|
|
|
pointer-events: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
2014-02-25 00:35:11 +01:00
|
|
|
.port_label {
|
|
|
|
stroke-width: 0;
|
|
|
|
fill: #888;
|
|
|
|
font-size: 16px;
|
|
|
|
alignment-baseline: middle;
|
|
|
|
text-anchor: middle;
|
|
|
|
pointer-events: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
.function_label {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.node {
|
|
|
|
stroke: #999;
|
|
|
|
cursor: move;
|
|
|
|
stroke-width: 2;
|
|
|
|
}
|
2013-12-12 16:51:15 +01:00
|
|
|
.node_unknown {
|
|
|
|
stroke-dasharray:10,4;
|
|
|
|
stroke: #f33;
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
.tool_arrow {
|
|
|
|
stroke-width: 1;
|
|
|
|
stroke: #999;
|
|
|
|
fill: #999;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.node_tools {
|
|
|
|
fill: #ddd;
|
|
|
|
stroke: #999;
|
|
|
|
cursor: move;
|
|
|
|
stroke-width: 1;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.node_tools_hovered {
|
|
|
|
stroke: #ff7f0e;
|
|
|
|
fill: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
.node_button {
|
|
|
|
fill: inherit;
|
|
|
|
|
|
|
|
}
|
|
|
|
.port {
|
2014-02-25 00:35:11 +01:00
|
|
|
stroke: #999;
|
|
|
|
stroke-width: 2;
|
2013-09-05 16:02:48 +02:00
|
|
|
fill: #ddd;
|
|
|
|
cursor: crosshair;
|
|
|
|
}
|
2014-02-25 00:35:11 +01:00
|
|
|
|
|
|
|
.port_highlight {
|
|
|
|
stroke: #6DA332;
|
|
|
|
stroke-width: 3;
|
|
|
|
fill: #fff;
|
|
|
|
pointer-events:none;
|
|
|
|
fill-opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
.node_error {
|
|
|
|
stroke: #ff0000;
|
|
|
|
stroke-width: 2;
|
|
|
|
fill: #ff7f0e;
|
|
|
|
}
|
|
|
|
|
|
|
|
.node_badge {
|
|
|
|
stroke: rgb(93, 114, 145);
|
|
|
|
stroke-width: 1;
|
|
|
|
fill: rgb(190, 209, 255);
|
|
|
|
}
|
|
|
|
.node_badge_label {
|
|
|
|
stroke-width:0;
|
|
|
|
fill: #fff;
|
|
|
|
font-size: 11px;
|
|
|
|
pointer-events: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
}
|
|
|
|
.node_invalid {
|
|
|
|
stroke: #ff0000;
|
|
|
|
}
|
|
|
|
.node_selected {
|
2014-02-25 00:35:11 +01:00
|
|
|
stroke: #ff7f0e !important;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
.node_highlighted {
|
2013-10-28 17:54:49 +01:00
|
|
|
stroke: #dd1616;
|
2013-11-03 20:09:45 +01:00
|
|
|
stroke-width: 3;
|
2013-10-28 17:54:49 +01:00
|
|
|
stroke-dasharray: 10, 4;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
.node_hovered {
|
|
|
|
}
|
2013-09-28 15:11:50 +02:00
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
.port_hovered {
|
|
|
|
stroke: #ff7f0e;
|
|
|
|
fill: #ff7f0e;
|
|
|
|
}
|
2014-02-25 00:35:11 +01:00
|
|
|
.subflowport {
|
|
|
|
stroke-dasharray: 5,5;
|
|
|
|
fill: #eee;
|
|
|
|
stroke: #999;
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
.drag_line {
|
|
|
|
stroke: #ff7f0e;
|
|
|
|
stroke-width: 5;
|
|
|
|
fill: none;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.drag_line_hidden {
|
|
|
|
stroke: #ff7f0e;
|
|
|
|
stroke-width: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
fill: none;
|
|
|
|
}
|
|
|
|
|
2014-05-15 23:44:07 +02:00
|
|
|
.link_line {
|
2013-09-05 16:02:48 +02:00
|
|
|
stroke: #7f7f7f;
|
|
|
|
stroke-width: 4;
|
2014-05-15 23:44:07 +02:00
|
|
|
fill: none;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2014-02-25 00:35:11 +01:00
|
|
|
.link_subflow {
|
|
|
|
stroke: #bbb;
|
|
|
|
stroke-dasharray: 10,5;
|
|
|
|
stroke-width: 3;
|
|
|
|
}
|
|
|
|
|
2014-05-15 23:44:07 +02:00
|
|
|
.link_outline {
|
|
|
|
stroke: #fff;
|
|
|
|
stroke-width: 6;
|
|
|
|
cursor: crosshair;
|
|
|
|
fill: none;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
.link_background {
|
|
|
|
stroke: #fff;
|
|
|
|
opacity: 0;
|
|
|
|
stroke-width: 25;
|
2013-09-05 16:02:48 +02:00
|
|
|
cursor: crosshair;
|
|
|
|
fill: none;
|
|
|
|
}
|
|
|
|
|
2014-05-15 23:44:07 +02:00
|
|
|
g.link_selected path.link_line {
|
2013-09-05 16:02:48 +02:00
|
|
|
stroke: #ff7f0e;
|
|
|
|
}
|
2014-05-15 23:44:07 +02:00
|
|
|
g.link_unknown path.link_line {
|
2013-12-12 16:51:15 +01:00
|
|
|
stroke: #f00;
|
|
|
|
stroke-width: 2;
|
|
|
|
stroke-dasharray: 10, 4;
|
|
|
|
}
|
2014-05-15 23:44:07 +02:00
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
#shade {
|
|
|
|
position: absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2014-11-10 12:19:33 +01:00
|
|
|
background: rgba(0,0,0,0.1);
|
2013-09-05 16:02:48 +02:00
|
|
|
text-align: center;
|
|
|
|
display: none;
|
|
|
|
}
|
2013-09-28 15:11:50 +02:00
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
#dialog {
|
|
|
|
}
|
2013-09-28 15:11:50 +02:00
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
.container {
|
|
|
|
}
|
|
|
|
|
|
|
|
.notification {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
#notifications {
|
|
|
|
z-index: 10000;
|
|
|
|
width: 500px;
|
|
|
|
margin-left: -250px;
|
|
|
|
left: 50%;
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
|
|
|
}
|
|
|
|
#notifications .alert {
|
|
|
|
box-shadow: 0 0 1px 1px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2013-09-28 15:11:50 +02:00
|
|
|
|
2015-03-09 21:41:57 +01:00
|
|
|
#dialog-form, #dialog-config-form {
|
2014-11-10 12:19:33 +01:00
|
|
|
margin: 0;
|
2014-11-13 18:21:12 +01:00
|
|
|
height: 100%;
|
2014-11-10 12:19:33 +01:00
|
|
|
}
|
2015-03-09 21:41:57 +01:00
|
|
|
|
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
.form-row {
|
|
|
|
clear: both;
|
2014-11-13 18:21:12 +01:00
|
|
|
margin-bottom:10px;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
.form-row label {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
.form-row input {
|
|
|
|
width:70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.input-append-left {
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
border-bottom-right-radius: 0px;
|
|
|
|
}
|
|
|
|
button.input-append-right {
|
|
|
|
border-top-left-radius: 0px !important;
|
|
|
|
border-bottom-left-radius: 0px !important;
|
|
|
|
border-top-right-radius: 4px !important;
|
|
|
|
border-bottom-right-radius: 4px !important;
|
|
|
|
margin-left: -1px !important;
|
|
|
|
padding-left: 4px !important;
|
|
|
|
padding-right: 4px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-tips {
|
2013-10-28 11:01:12 +01:00
|
|
|
background: lightgoldenrodyellow;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 8px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid #999;
|
2015-03-09 21:41:57 +01:00
|
|
|
max-width: 450px;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
.form-tips code {
|
|
|
|
border: none;
|
|
|
|
padding: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.node-info {
|
|
|
|
margin: 5px;
|
|
|
|
width: 97%;
|
|
|
|
}
|
|
|
|
table.node-info tr {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
table.node-info tr.blank {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
table.node-info tr.blank td {
|
|
|
|
padding-top: 8px;
|
2014-08-20 00:46:18 +02:00
|
|
|
border: none;
|
|
|
|
font-weight: bold;
|
|
|
|
padding-left: 0px;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
table.node-info td:first-child{
|
|
|
|
color: #000;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 90px;
|
2014-08-20 00:46:18 +02:00
|
|
|
padding: 3px;
|
2014-02-09 16:24:05 +01:00
|
|
|
border-right: 1px solid #ddd;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
table.node-info td:last-child{
|
2014-02-09 16:24:05 +01:00
|
|
|
padding-left: 5px;
|
2013-09-05 16:02:48 +02:00
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.node-info {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-error {
|
|
|
|
border-color: rgb(214, 97, 95) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-01-14 23:40:45 +01:00
|
|
|
|
2014-08-22 12:07:32 +02:00
|
|
|
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus, .dropdown-submenu:hover>a, .dropdown-submenu:focus>a {
|
|
|
|
background: #999;
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2015-01-15 22:41:40 +01:00
|
|
|
.dropdown-menu * .fa-check-square {
|
2013-09-05 16:02:48 +02:00
|
|
|
display: none;
|
2015-01-15 22:41:40 +01:00
|
|
|
color: #e0e0e0;
|
|
|
|
margin-left: -25px;
|
2014-08-19 23:58:52 +02:00
|
|
|
margin-top: 3px;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-01-15 22:41:40 +01:00
|
|
|
.dropdown-menu * a.active > .fa-check-square {
|
2013-09-05 16:02:48 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-01-15 22:41:40 +01:00
|
|
|
.dropdown-menu * .fa-square {
|
|
|
|
display: inline-block;
|
|
|
|
color: #e0e0e0;
|
|
|
|
margin-left: -25px;
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
|
|
|
.dropdown-menu * a.active > .fa-square {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-28 15:11:50 +02:00
|
|
|
.dropdown-menu>li.disabled>a:hover>[class^="icon-"] {
|
|
|
|
background-image: url("bootstrap/img/glyphicons-halflings.png") !important;
|
|
|
|
}
|
|
|
|
/** Fix for unreachable dropdown menu **/
|
|
|
|
.dropdown-menu {
|
2015-01-14 23:40:45 +01:00
|
|
|
border-radius: 0;
|
2013-09-28 15:11:50 +02:00
|
|
|
width: 200px !important;
|
2015-01-14 23:40:45 +01:00
|
|
|
margin-left: 0px !important;
|
2013-09-28 15:11:50 +02:00
|
|
|
}
|
2014-08-19 23:58:52 +02:00
|
|
|
.dropdown-menu > li > a > i {
|
|
|
|
width: 10px;
|
|
|
|
text-align: center;
|
|
|
|
margin-left: -8px;
|
|
|
|
}
|
2013-09-28 15:11:50 +02:00
|
|
|
.dropdown-menu > li > a {
|
2014-08-19 23:58:52 +02:00
|
|
|
padding-left: 38px ;
|
2013-09-28 15:11:50 +02:00
|
|
|
text-indent: -8px ;
|
|
|
|
white-space: normal !important;
|
|
|
|
}
|
|
|
|
|
2015-01-15 11:27:18 +01:00
|
|
|
.dropdown-submenu>a:after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.dropdown-submenu>a:before {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
margin-top: 5px;
|
2015-01-15 22:41:40 +01:00
|
|
|
margin-left: -30px;
|
2015-01-15 11:27:18 +01:00
|
|
|
border-color: transparent;
|
2015-01-15 22:41:40 +01:00
|
|
|
border-right-color: #e0e0e0;
|
2015-01-15 11:27:18 +01:00
|
|
|
border-style: solid;
|
|
|
|
border-width: 5px 5px 5px 0;
|
|
|
|
content: " ";
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2015-01-15 11:27:18 +01:00
|
|
|
.dropdown-submenu.disabled > a:before {
|
|
|
|
border-right-color: #444;
|
|
|
|
}
|
|
|
|
.dropdown-submenu.pull-left>.dropdown-menu {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.popover-title { display: none; }
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
.leftButton {
|
|
|
|
margin-right: 200px !important;
|
|
|
|
}
|
|
|
|
#node-help {
|
|
|
|
width: 700px;
|
|
|
|
}
|
|
|
|
#node-help * td {
|
|
|
|
padding: 0.8em 0.5em;
|
|
|
|
}
|
|
|
|
#node-help * tr > td:first-child+td+td {
|
|
|
|
padding-left: 5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.help-key {
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background: #f6f6f6;
|
|
|
|
font-family: Courier, monospace;
|
|
|
|
box-shadow: #999 1px 1px 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#helpcontent {
|
|
|
|
padding: 20px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
#helpnavigation {
|
|
|
|
overflow: hidden;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
border-radius: 10px;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
#helpnavigation li a{
|
|
|
|
font-size: 1.2em;
|
|
|
|
padding: 10px;
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
#node-select-library {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#node-select-library ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
#node-select-library li {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
#node-select-library li.list-selected {
|
|
|
|
background: #eee;
|
|
|
|
}
|
|
|
|
#node-select-library li.list-hover {
|
|
|
|
background: #ffffd0;
|
|
|
|
}
|
|
|
|
.node-text-editor {
|
|
|
|
border:1px solid #ccc;
|
|
|
|
border-radius:5px;
|
|
|
|
overflow: hidden;
|
2015-02-26 22:29:56 +01:00
|
|
|
font-size: 16px !important;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2013-10-28 23:31:36 +01:00
|
|
|
#workspace-tabs {
|
|
|
|
margin-right: 28px;
|
|
|
|
}
|
|
|
|
#workspace-add-tab {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 29px;
|
|
|
|
width: 28px;
|
|
|
|
border-bottom: 1px solid #999;
|
|
|
|
}
|
|
|
|
#btn-workspace-add-tab {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
background: #e3e3e3;
|
|
|
|
height: 100%;
|
2014-08-19 23:58:52 +02:00
|
|
|
line-height: 30px;
|
2013-10-28 23:31:36 +01:00
|
|
|
text-align: center;
|
2014-08-19 23:58:52 +02:00
|
|
|
color: #000;
|
2013-10-28 23:31:36 +01:00
|
|
|
}
|
|
|
|
#btn-workspace-add-tab:hover {
|
|
|
|
background: #efefef;
|
|
|
|
}
|
2013-10-23 01:02:22 +02:00
|
|
|
|
|
|
|
ul.red-ui-tabs {
|
|
|
|
list-style-type: none;
|
|
|
|
padding:5px 2px 0px 5px;
|
|
|
|
margin: 0;
|
|
|
|
display: block;
|
2013-10-23 11:44:08 +02:00
|
|
|
height: 24px;
|
|
|
|
border-bottom: 1px solid #999;
|
2013-10-28 21:06:46 +01:00
|
|
|
background: #e3e3e3;
|
2014-02-21 10:54:50 +01:00
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
2013-10-23 01:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.red-ui-tabs li {
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
border-left: 1px solid #999;
|
|
|
|
border-top: 1px solid #999;
|
|
|
|
border-right: 1px solid #999;
|
|
|
|
border-bottom: 1px solid #999;
|
|
|
|
background: #e3e3e3;
|
|
|
|
margin: 0 5px 0 0;
|
2013-10-23 11:44:08 +02:00
|
|
|
height: 23px;
|
|
|
|
line-height: 17px;
|
2013-10-23 01:02:22 +02:00
|
|
|
max-width: 150px;
|
|
|
|
width: 14%;
|
|
|
|
overflow: hidden;
|
2013-10-23 17:42:13 +02:00
|
|
|
white-space: nowrap;
|
2013-10-23 01:02:22 +02:00
|
|
|
}
|
|
|
|
|
2014-01-25 23:31:43 +01:00
|
|
|
ul.red-ui-tabs li a.red-ui-tab-label {
|
2015-02-03 12:21:29 +01:00
|
|
|
display: block;
|
2013-10-23 01:02:22 +02:00
|
|
|
padding: 3px 16px;
|
|
|
|
color: #666;
|
|
|
|
}
|
2014-01-25 23:31:43 +01:00
|
|
|
ul.red-ui-tabs li {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.red-ui-tabs li a.red-ui-tab-close {
|
|
|
|
background: rgba(227,227,227,0.8);
|
|
|
|
position: absolute;
|
|
|
|
right: 2px;
|
|
|
|
top: 2px;
|
|
|
|
display: block;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0px;
|
|
|
|
border-radius: 5px;
|
2014-08-21 22:48:08 +02:00
|
|
|
color: #666;
|
2014-01-25 23:31:43 +01:00
|
|
|
}
|
|
|
|
ul.red-ui-tabs li a.red-ui-tab-close:hover {
|
|
|
|
background: #bbb !important;
|
|
|
|
}
|
2013-10-23 01:02:22 +02:00
|
|
|
ul.red-ui-tabs li a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.red-ui-tabs li.active {
|
|
|
|
background: #fff;
|
|
|
|
border-bottom: 1px solid #fff;
|
|
|
|
}
|
|
|
|
ul.red-ui-tabs li.active a {
|
|
|
|
color: #333;
|
|
|
|
}
|
2014-01-25 23:31:43 +01:00
|
|
|
ul.red-ui-tabs li.active a.red-ui-tab-close {
|
|
|
|
background: rgba(255,255,255,0.8);
|
|
|
|
}
|
|
|
|
ul.red-ui-tabs li.active a.red-ui-tab-label:hover {
|
2013-10-23 01:02:22 +02:00
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
ul.red-ui-tabs li.red-ui-add-tab {
|
2013-10-23 11:44:08 +02:00
|
|
|
width: 25px;
|
2013-10-23 01:02:22 +02:00
|
|
|
border-top-right-radius: 15px;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
|
|
|
ul.red-ui-tabs li.red-ui-add-tab a {
|
|
|
|
padding: 2px 4px;
|
|
|
|
}
|
2014-01-25 23:31:43 +01:00
|
|
|
|
|
|
|
ul.tab-config-list {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 3px;
|
|
|
|
margin: 0;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.tab-config-list li {
|
|
|
|
max-width: 400px;
|
|
|
|
font-size: 13px;
|
|
|
|
background: #f3f3f3;
|
|
|
|
margin: 10px auto;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding: 3px 8px;
|
|
|
|
}
|
|
|
|
div.tab-config-list-type {
|
|
|
|
}
|
|
|
|
|
|
|
|
div.tab-config-list-entry {
|
|
|
|
position: relative;
|
|
|
|
margin: 4px 0;
|
|
|
|
padding: 8px 4px 8px 10px;
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
div.tab-config-list-entry:hover {
|
|
|
|
background: #f6f6f6;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.tab-config-list-label {
|
|
|
|
}
|
|
|
|
div.tab-config-list-users {
|
|
|
|
position: absolute;
|
|
|
|
right: 3px;
|
|
|
|
top: 3px;
|
|
|
|
bottom: 3px;
|
|
|
|
line-height: 27px;
|
|
|
|
font-size: 11px;
|
|
|
|
background: #f6f6f6;
|
|
|
|
float: right;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 1px 5px;
|
|
|
|
}
|
|
|
|
|
2014-02-20 18:31:40 +01:00
|
|
|
i.spinner {
|
|
|
|
display: inline-block;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
line-height: 14px;
|
|
|
|
vertical-align: text-top;
|
|
|
|
margin-top: 0px;
|
2014-04-01 23:53:48 +02:00
|
|
|
background: url(spin.svg) no-repeat 50% 50%;
|
|
|
|
background-size: contain
|
2014-02-20 18:31:40 +01:00
|
|
|
}
|
2014-11-10 12:19:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* jQuery Theme overrides */
|
|
|
|
.ui-tabs .ui-tabs-panel {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-autocomplete {
|
|
|
|
max-height: 250px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog {
|
|
|
|
border-radius: 1px;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
background: #fff;
|
|
|
|
padding: 0;
|
|
|
|
box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-content {
|
2014-11-13 18:21:12 +01:00
|
|
|
padding: 25px 25px 10px 25px;
|
2014-11-10 12:19:33 +01:00
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-titlebar {
|
|
|
|
padding: 10px;
|
|
|
|
background: #f0f0f0;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 2px solid #888;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
.ui-corner-all {
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
|
|
|
|
background: #f3f3f3;
|
|
|
|
}
|
|
|
|
.ui-dialog-no-close .ui-dialog-titlebar-close {
|
|
|
|
display: none;
|
|
|
|
}
|
2014-02-20 18:31:40 +01:00
|
|
|
|
2015-01-14 23:40:45 +01:00
|
|
|
#header ul.dropdown-menu {
|
2015-01-15 22:41:40 +01:00
|
|
|
background: #121212;
|
2015-01-15 11:27:18 +01:00
|
|
|
width: 250px !important;
|
|
|
|
margin-top: 0;
|
2015-01-14 23:40:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#header ul.dropdown-menu li a {
|
2015-01-15 22:41:40 +01:00
|
|
|
color: #C7C7C7;
|
|
|
|
padding: 3px 40px;
|
2015-01-14 23:40:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#header ul.dropdown-menu li a img {
|
|
|
|
margin-right: 10px;
|
|
|
|
padding: 4px;
|
|
|
|
border: 3px solid rgba(0,0,0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#header ul.dropdown-menu li a.active img {
|
|
|
|
border: 3px solid #777677;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header ul.dropdown-menu li a span.menu-label-container {
|
|
|
|
width: 180px;
|
|
|
|
vertical-align: top;
|
|
|
|
display: inline-block;
|
|
|
|
text-indent: 0px;
|
|
|
|
}
|
|
|
|
#header ul.dropdown-menu li a span.menu-label {
|
2015-01-15 22:41:40 +01:00
|
|
|
font-size: 14px;
|
2015-01-14 23:40:45 +01:00
|
|
|
display: inline-block;
|
|
|
|
text-indent: 0px;
|
|
|
|
}
|
|
|
|
#header ul.dropdown-menu li a span.menu-sublabel {
|
|
|
|
color: #aeaeae;
|
|
|
|
font-size: 13px;
|
|
|
|
display: inline-block;
|
|
|
|
text-indent: 0px;
|
|
|
|
}
|
|
|
|
|
2015-01-15 22:41:40 +01:00
|
|
|
#header ul.dropdown-menu > li:hover > a,
|
|
|
|
#header ul.dropdown-menu > li:focus > a {
|
|
|
|
background: #323232 !important;
|
2015-01-14 23:40:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#header ul.dropdown-menu li.divider {
|
2015-01-15 22:41:40 +01:00
|
|
|
background: #464646;
|
|
|
|
border-bottom-color: #323232;
|
2015-01-14 23:40:45 +01:00
|
|
|
}
|
2015-01-15 11:27:18 +01:00
|
|
|
#header ul.dropdown-menu li.disabled a {
|
|
|
|
color: #666;
|
|
|
|
}
|
2015-02-03 12:21:29 +01:00
|
|
|
|
2015-02-06 12:27:21 +01:00
|
|
|
#header ul.dropdown-menu > li.disabled:hover > a,
|
|
|
|
#header ul.dropdown-menu > li.disabled:focus > a {
|
|
|
|
background: none !important;
|
|
|
|
}
|
|
|
|
|
2015-01-14 23:40:45 +01:00
|
|
|
/* Deploy menu customisations */
|
2015-01-15 11:27:18 +01:00
|
|
|
#header ul#btn-deploy-options-submenu {
|
|
|
|
width: 300px !important;
|
|
|
|
}
|
2015-01-14 23:40:45 +01:00
|
|
|
#header ul#btn-deploy-options-submenu li a span.menu-label {
|
|
|
|
font-size: 16px;
|
|
|
|
display: inline-block;
|
|
|
|
text-indent: 0px;
|
|
|
|
}
|
|
|
|
#header ul#btn-deploy-options-submenu li a {
|
|
|
|
padding: 10px 30px;
|
2015-01-15 22:41:40 +01:00
|
|
|
color: #fff;
|
2015-01-14 23:40:45 +01:00
|
|
|
}
|
2015-01-15 22:41:40 +01:00
|
|
|
#header ul#btn-deploy-options-submenu li a > i.fa {
|
|
|
|
display: none !important;
|
2015-01-14 23:40:45 +01:00
|
|
|
}
|
2015-02-06 12:27:21 +01:00
|
|
|
|
|
|
|
/* User menu customisations */
|
|
|
|
#header ul#btn-usermenu-submenu li a#btn-username > .menu-label {
|
|
|
|
font-size: 16px;
|
|
|
|
color: #fff;
|
|
|
|
}
|