node-red/editor/sass/tab-info.scss

99 lines
2.1 KiB
SCSS
Raw Normal View History

2015-04-09 15:46:29 +02: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.
**/
2015-07-14 00:21:03 +02:00
.sidebar-node-info hr {
margin: 10px 0;
}
2015-04-09 15:46:29 +02:00
table.node-info {
font-size: 14px;
2015-07-14 19:55:53 +02:00
margin: 0px;
2015-04-09 15:46:29 +02:00
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;
border: none;
font-weight: bold;
padding-left: 0px;
}
table.node-info td:first-child{
2016-11-04 15:30:41 +01:00
color: #666;
2015-04-09 15:46:29 +02:00
vertical-align: top;
width: 90px;
padding: 3px;
border-right: 1px solid #ddd;
}
table.node-info td:last-child{
padding-left: 5px;
color: #666;
}
div.node-info {
margin: 5px;
}
.node-info-property-header {
color: #666;
}
.node-info-property-header:hover,
.node-info-property-header:focus {
color: #666;
text-decoration: none;
}
.node-help {
2015-07-13 12:26:29 +02:00
font-size: 14px;
line-height: 1.5em;
2015-04-09 15:46:29 +02:00
h1 {
font-weight: normal;
2015-07-13 12:26:29 +02:00
font-size: 23px;
2015-04-09 15:46:29 +02:00
margin: 8px auto;
}
h2 {
2015-07-14 00:21:03 +02:00
font-weight: normal;
font-size: 18px;
margin: 8px auto;
}
h3 {
2015-04-09 15:46:29 +02:00
font-weight: normal;
2015-07-13 12:26:29 +02:00
font-size: 16px;
2015-04-09 15:46:29 +02:00
margin: 8px auto;
}
h4,
h5 {
font-weight: normal;
2015-07-13 12:26:29 +02:00
font-size: 14px;
2015-04-09 15:46:29 +02:00
margin: 8px auto;
}
}
.node-info-tip {
2017-01-06 00:33:19 +01:00
position: absolute;
top: 40%;
left:0;
right:0;
padding: 20px;
font-size: 16px;
text-align: center;
2017-01-06 00:33:19 +01:00
line-height: 1.9em;
color : #bbb;
background-color: #fff;
2017-01-06 00:33:19 +01:00
@include disable-selection;
cursor: default;
}