mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
f30ce1f9eb
Fixes #913
269 lines
5.7 KiB
SCSS
269 lines
5.7 KiB
SCSS
/**
|
|
* Copyright 2015, 2016 IBM Corp.
|
|
*
|
|
* 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.
|
|
**/
|
|
|
|
|
|
#editor-stack {
|
|
position: absolute;
|
|
margin: 0;
|
|
top: 0;
|
|
bottom: 0px;
|
|
right: 323px;
|
|
width: 0;
|
|
z-index: 5;
|
|
}
|
|
.editor-tray {
|
|
position:absolute;
|
|
margin: 0;
|
|
top: 0;
|
|
//min-width: 500px;
|
|
width: auto;
|
|
right: -1000px;
|
|
bottom: 0;
|
|
background: #fff;
|
|
border-left: 1px solid $secondary-border-color;
|
|
border-bottom: 1px solid $primary-border-color;
|
|
box-sizing: content-box;
|
|
}
|
|
.editor-tray.open {
|
|
right: 0;
|
|
}
|
|
.editor-tray-body-wrapper {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
overflow: auto;
|
|
}
|
|
.editor-tray-body {
|
|
margin: 20px;
|
|
}
|
|
.editor-tray-header {
|
|
@include disable-selection;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
font-weight: bold;
|
|
border-bottom: 1px solid $secondary-border-color;
|
|
background: $palette-header-background;
|
|
&:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
.editor-tray-footer {
|
|
@include component-footer;
|
|
height: 35px;
|
|
}
|
|
|
|
.editor-tray-toolbar {
|
|
text-align: right;
|
|
padding: 6px;
|
|
|
|
button {
|
|
@include workspace-button;
|
|
font-size: 14px;
|
|
padding: 6px 14px;
|
|
margin-right: 8px;
|
|
color: $editor-button-color;
|
|
background: $editor-button-background;
|
|
|
|
&.primary {
|
|
border-color: $editor-button-background-primary;
|
|
color: $editor-button-color-primary;
|
|
background: $editor-button-background-primary;
|
|
&.disabled, &.ui-state-disabled {
|
|
background: none;
|
|
color: $editor-button-color;
|
|
border-color: $form-input-border-color;
|
|
}
|
|
&:not(.disabled):not(.ui-button-disabled):hover {
|
|
border-color: $editor-button-background-primary-hover;
|
|
background: $editor-button-background-primary-hover;
|
|
color: $editor-button-color-primary !important;
|
|
}
|
|
}
|
|
&:not(.disabled):hover {
|
|
//color: $editor-button-color;
|
|
}
|
|
&.disabled {
|
|
background: none;
|
|
}
|
|
&.disabled:focus {
|
|
outline: none;
|
|
}
|
|
|
|
|
|
&.leftButton {
|
|
float: left;
|
|
margin-top: 1px;
|
|
}
|
|
&:not(.leftButton):not(:last-child) {
|
|
margin-right: 16px;
|
|
}
|
|
&.ui-state-disabled {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.editor-tray-titlebar {
|
|
border-bottom: 1px solid $secondary-border-color;
|
|
padding: 8px;
|
|
}
|
|
.editor-tray-breadcrumbs {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding:0;
|
|
|
|
li {
|
|
display: inline-block;
|
|
padding:0;
|
|
margin:0;
|
|
|
|
&:not(:last-child) {
|
|
color: $editor-button-color;
|
|
font-weight: normal;
|
|
|
|
&:after {
|
|
display: inline-block;
|
|
content: '>';
|
|
margin: 0 5px;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
.editor-tray-resize-handle {
|
|
position: absolute;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
width: 7px;
|
|
left: -9px;
|
|
background: $background-color url(images/grip.png) no-repeat 50% 50%;
|
|
cursor: col-resize;
|
|
border-left: 1px solid $primary-border-color;
|
|
box-shadow: -1px 0 6px rgba(0,0,0,0.1);
|
|
}
|
|
.editor-tray-resize-button {
|
|
@include workspace-button;
|
|
display: block;
|
|
height: 37px;
|
|
line-height: 35px;
|
|
border: none;
|
|
border-bottom: 1px solid $secondary-border-color;
|
|
margin: 0;
|
|
background: $background-color;
|
|
color: $workspace-button-color;
|
|
}
|
|
#editor-shade, #header-shade {
|
|
position: absolute;
|
|
top:0;
|
|
bottom:0;
|
|
left:0;
|
|
right:0;
|
|
background: $shade-color;
|
|
z-index: 2;
|
|
}
|
|
|
|
|
|
.dialog-form,#dialog-form, #dialog-config-form {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.input-error {
|
|
border-color: rgb(214, 97, 95) !important;
|
|
}
|
|
|
|
.form-row {
|
|
clear: both;
|
|
color: $form-text-color;
|
|
margin-bottom:12px;
|
|
}
|
|
.form-row label {
|
|
display: inline-block;
|
|
width: 100px;
|
|
}
|
|
.form-row input {
|
|
width:70%;
|
|
}
|
|
|
|
.form-tips {
|
|
background: #ffe;
|
|
padding: 8px;
|
|
border-radius: 2px;
|
|
border: 1px solid $secondary-border-color;
|
|
max-width: 450px;
|
|
}
|
|
.form-tips code {
|
|
border: none;
|
|
padding: auto;
|
|
}
|
|
.form-tips a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.node-text-editor {
|
|
border:1px solid #ccc;
|
|
border-radius:5px;
|
|
overflow: hidden;
|
|
font-size: 14px !important;
|
|
font-family: monospace !important;
|
|
}
|
|
|
|
.editor-button {
|
|
@include workspace-button;
|
|
height: 34px;
|
|
line-height: 32px;
|
|
font-size: 13px;
|
|
border-radius: 4px;
|
|
padding: 0 10px;
|
|
}
|
|
.editor-button-small {
|
|
height: 20px;
|
|
line-height: 18px;
|
|
font-size: 10px;
|
|
border-radius: 2px;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
#node-config-dialog-scope-container {
|
|
cursor: auto;
|
|
float: right;
|
|
font-size: 12px !important;
|
|
line-height: 35px;
|
|
}
|
|
#node-config-dialog-scope-warning {
|
|
display: inline-block;
|
|
margin-right: 5px;
|
|
color: #AD1625;
|
|
vertical-align: middle;
|
|
}
|
|
#node-config-dialog-scope {
|
|
margin: 1px 0 0 0;
|
|
padding: 0;
|
|
height: 22px;
|
|
width: 150px;
|
|
|
|
}
|
|
#node-config-dialog-user-count {
|
|
vertical-align: middle;
|
|
display:inline-block;
|
|
margin-right: 20px;
|
|
float:left;
|
|
font-size: 12px;
|
|
line-height: 35px;
|
|
}
|