2015-04-09 15:46:29 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2015-04-09 15:46:29 +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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
#palette {
|
|
|
|
position: absolute;
|
2015-07-12 00:43:45 +02:00
|
|
|
top: 0px;
|
2015-07-14 16:59:56 +02:00
|
|
|
bottom: 0px;
|
2015-07-12 00:43:45 +02:00
|
|
|
left:0px;
|
2015-04-09 15:46:29 +02:00
|
|
|
background: #f3f3f3;
|
2015-07-12 00:43:45 +02:00
|
|
|
width: 180px;
|
2015-04-09 15:46:29 +02:00
|
|
|
text-align: center;
|
|
|
|
@include disable-selection;
|
|
|
|
@include component-border;
|
2016-08-04 17:49:36 +02:00
|
|
|
transition: width 0.2s ease-in-out;
|
|
|
|
}
|
2015-07-12 00:43:45 +02:00
|
|
|
|
2016-08-04 17:49:36 +02:00
|
|
|
.palette-expanded {
|
|
|
|
& #palette {
|
|
|
|
width: 380px;
|
|
|
|
box-shadow: 1px 0 6px rgba(0,0,0,0.1);
|
|
|
|
}
|
|
|
|
& #workspace { left: 379px !important; }
|
|
|
|
& #palette-collapse-all { display: none; }
|
|
|
|
& #palette-expand-all { display: none; }
|
|
|
|
& #palette-container { display: none !important; }
|
|
|
|
& #palette-search { display: none !important; }
|
|
|
|
& #palette-edit { background: $workspace-button-background-active }
|
|
|
|
& #palette-editor { display: block !important }
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
2016-08-04 17:49:36 +02:00
|
|
|
|
|
|
|
|
2015-04-09 15:46:29 +02:00
|
|
|
.palette-scroll {
|
|
|
|
position: absolute;
|
2015-07-12 00:43:45 +02:00
|
|
|
top: 35px;
|
2015-04-09 15:46:29 +02:00
|
|
|
right: 0;
|
2015-07-14 16:59:56 +02:00
|
|
|
bottom: 25px;
|
2015-04-13 01:11:32 +02:00
|
|
|
left:0;
|
2015-07-12 00:43:45 +02:00
|
|
|
padding: 0;
|
2015-04-09 15:46:29 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
box-sizing:border-box;
|
|
|
|
}
|
2016-08-13 00:00:28 +02:00
|
|
|
#palette > .palette-spinner {
|
|
|
|
padding-top: 80px;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
2016-08-05 17:39:41 +02:00
|
|
|
.palette-search {
|
2016-08-13 00:00:28 +02:00
|
|
|
position: relative;
|
2015-04-09 15:46:29 +02:00
|
|
|
overflow: hidden;
|
2015-07-12 00:43:45 +02:00
|
|
|
background: #ffffff;
|
2015-04-09 15:46:29 +02:00
|
|
|
text-align: center;
|
|
|
|
height: 35px;
|
|
|
|
padding: 3px;
|
2015-07-13 12:26:29 +02:00
|
|
|
border-bottom: 1px solid $primary-border-color;
|
2015-04-09 15:46:29 +02:00
|
|
|
box-sizing:border-box;
|
|
|
|
}
|
|
|
|
|
2015-07-14 16:59:56 +02:00
|
|
|
#palette-footer {
|
|
|
|
@include component-footer;
|
|
|
|
}
|
|
|
|
.palette-button {
|
|
|
|
@include component-footer-button;
|
|
|
|
}
|
|
|
|
|
2015-04-09 15:46:29 +02:00
|
|
|
|
|
|
|
.palette-category {
|
2015-07-12 00:43:45 +02:00
|
|
|
border-bottom: 1px solid #ccc;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
|
|
|
.palette-content {
|
|
|
|
background: #fff;
|
2015-07-12 00:43:45 +02:00
|
|
|
padding: 3px;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.palette-header {
|
2016-01-13 11:30:24 +01:00
|
|
|
position: relative;
|
2015-07-14 00:21:03 +02:00
|
|
|
background: $palette-header-background;
|
2015-04-09 15:46:29 +02:00
|
|
|
cursor: pointer;
|
|
|
|
text-align: left;
|
2015-07-12 00:43:45 +02:00
|
|
|
padding: 9px;
|
|
|
|
font-weight: bold;
|
2016-01-13 11:30:24 +01:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
2017-10-07 01:18:20 +02:00
|
|
|
.palette-header > i {
|
2015-07-12 00:43:45 +02:00
|
|
|
margin: 3px 10px 3px 3px;
|
2015-04-09 15:46:29 +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 {
|
2015-07-13 12:26:29 +02:00
|
|
|
font-size: 13px;
|
2017-04-10 12:29:52 +02:00
|
|
|
margin: 4px 0 4px 32px;
|
2015-04-09 15:46:29 +02:00
|
|
|
line-height: 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: center;
|
2017-04-10 12:29:52 +02:00
|
|
|
@include disable-selection;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
|
|
|
.palette_label_right {
|
2017-04-10 12:29:52 +02:00
|
|
|
margin: 4px 32px 4px 0;
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.palette_node {
|
2017-04-10 12:29:52 +02:00
|
|
|
display: block;
|
2015-04-09 15:46:29 +02:00
|
|
|
cursor:move;
|
|
|
|
background: #ddd;
|
|
|
|
margin: 10px auto;
|
|
|
|
height: 25px;
|
2015-07-12 00:43:45 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid #999;
|
2015-04-09 15:46:29 +02:00
|
|
|
background-position: 5% 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 120px;
|
|
|
|
background-size: contain;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.palette_node:hover {
|
2015-07-13 12:26:29 +02:00
|
|
|
border-color: $node-selected-color;
|
2015-04-09 15:46:29 +02:00
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
.palette_port {
|
|
|
|
position: absolute;
|
|
|
|
top:8px;
|
|
|
|
left: -5px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
background:#d9d9d9;
|
|
|
|
border-radius: 3px;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border: 1px solid #999;
|
|
|
|
}
|
|
|
|
.palette_port_output {
|
|
|
|
left:auto;
|
|
|
|
right: -6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.palette_node:hover .palette_port {
|
|
|
|
border-color: #999;
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
.palette_icon_container {
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
top:0;
|
|
|
|
bottom:0;
|
|
|
|
left:0;
|
|
|
|
width: 30px;
|
2015-07-12 00:43:45 +02:00
|
|
|
border-right: 1px solid rgba(0,0,0,0.1);
|
2015-04-09 15:46:29 +02:00
|
|
|
background-color: rgba(0,0,0,0.05);
|
|
|
|
}
|
|
|
|
.palette_icon_container_right {
|
|
|
|
left: auto;
|
|
|
|
right: 0;
|
|
|
|
border-right: none;
|
2015-09-23 23:49:48 +02:00
|
|
|
border-left: 1px solid rgba(0,0,0,0.1);
|
2015-04-09 15:46:29 +02:00
|
|
|
}
|
|
|
|
.palette_icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 20px;
|
|
|
|
height: 100%;
|
|
|
|
background-position: 50% 50%;
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
2017-04-10 15:33:21 +02:00
|
|
|
|
|
|
|
.palette_node_small {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 18px;
|
|
|
|
height: 15px;
|
|
|
|
margin: 3px 0px;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
.palette_icon_container {
|
|
|
|
width: 18px;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.palette_icon {
|
|
|
|
margin-left: -1px;
|
|
|
|
width: 15px;
|
|
|
|
}
|
|
|
|
}
|