mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
77 lines
1.7 KiB
SCSS
77 lines
1.7 KiB
SCSS
/**
|
|
* Copyright 2015 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.
|
|
**/
|
|
|
|
.dialog-form, #dialog-form, #dialog-config-form {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.input-error {
|
|
border-color: rgb(214, 97, 95) !important;
|
|
}
|
|
|
|
.leftButton {
|
|
margin-right: 200px !important;
|
|
}
|
|
|
|
.form-row {
|
|
clear: both;
|
|
margin-bottom:10px;
|
|
}
|
|
.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 {
|
|
background: lightgoldenrodyellow;
|
|
font-size: 12px;
|
|
padding: 8px;
|
|
border-radius: 5px;
|
|
border: 1px solid #999;
|
|
max-width: 450px;
|
|
}
|
|
.form-tips code {
|
|
border: none;
|
|
padding: auto;
|
|
}
|
|
|
|
.node-text-editor {
|
|
border:1px solid #ccc;
|
|
border-radius:5px;
|
|
overflow: hidden;
|
|
font-size: 14px !important;
|
|
font-family: monospace !important;
|
|
}
|
|
|