mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
669 lines
15 KiB
SCSS
669 lines
15 KiB
SCSS
/**
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* 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.
|
|
**/
|
|
|
|
|
|
.red-ui-diff-panel {
|
|
padding: 5px;
|
|
padding-top: 30px;
|
|
position: relative;
|
|
|
|
.red-ui-editableList-container {
|
|
border-radius:1px;
|
|
padding:0;
|
|
background: #f9f9f9;
|
|
}
|
|
.red-ui-diff-list {
|
|
li {
|
|
background: #f9f9f9;
|
|
padding: 0px;
|
|
border: none;
|
|
min-height: 0;
|
|
}
|
|
}
|
|
.red-ui-editableList-item-content {
|
|
padding: 5px;
|
|
// padding-bottom: 5px;
|
|
}
|
|
}
|
|
.red-ui-diff-container {
|
|
position: absolute;
|
|
top: 40px;
|
|
right:0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.red-ui-diff-panel-headers {
|
|
position: absolute;
|
|
left:232px;
|
|
right:12px;
|
|
top: 5px;
|
|
height: 25px;
|
|
div {
|
|
height: 25px;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
padding-top: 2px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
width: 50%;
|
|
background: #f9f9f9;
|
|
text-align: center;
|
|
border-top: 1px solid $secondary-border-color;
|
|
border-color:$secondary-border-color;
|
|
border-left: 1px solid $secondary-border-color;
|
|
}
|
|
div:last-child {
|
|
border-right: 1px solid $secondary-border-color;
|
|
}
|
|
}
|
|
|
|
.red-ui-diff-dialog-toolbar {
|
|
box-sizing: border-box;
|
|
color: #666;
|
|
text-align: right;
|
|
padding: 8px 10px;
|
|
background: #f3f3f3;
|
|
border-bottom: 1px solid $secondary-border-color;
|
|
white-space: nowrap;
|
|
}
|
|
.red-ui-diff-list-flow {
|
|
background: #fff;
|
|
border: 1px solid #ddd;
|
|
border-radius: 1px;
|
|
overflow: hidden;
|
|
|
|
&.collapsed {
|
|
.red-ui-diff-list-flow-title .red-ui-diff-list-chevron {
|
|
transform: rotate(-90deg);
|
|
}
|
|
.red-ui-diff-list-node {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
.red-ui-diff-list-flow-stats {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.red-ui-diff-list-chevron {
|
|
display: inline-block;
|
|
width: 15px;
|
|
text-align: center;
|
|
margin-left: 3px;
|
|
transition: transform 0.1s ease-in-out;
|
|
|
|
}
|
|
.red-ui-diff-list-node {
|
|
margin-left: 20px;
|
|
font-size: 0.9em;
|
|
|
|
&:first-child {
|
|
border-top: 1px solid $secondary-border-color;
|
|
}
|
|
&:not(:last-child) {
|
|
border-bottom: 1px solid $secondary-border-color;
|
|
}
|
|
|
|
&.collapsed {
|
|
.red-ui-diff-list-chevron {
|
|
transform: rotate(-90deg);
|
|
}
|
|
.red-ui-diff-list-node-properties {
|
|
display: none;
|
|
}
|
|
}
|
|
&:not(.collapsed) {
|
|
.red-ui-diff-list-node-cell:not(:first-child) {
|
|
//display: none;
|
|
}
|
|
.red-ui-diff-list-node-cell:first-child {
|
|
//width: 100%
|
|
}
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
table-layout:fixed;
|
|
width: calc(100% - 20px);
|
|
margin-left: 20px;
|
|
}
|
|
col:first-child {
|
|
width: 180px;
|
|
}
|
|
col:not(:first-child) {
|
|
width: 100%;
|
|
}
|
|
td, th {
|
|
border-top: 1px solid #f3f3f3;
|
|
border-left: 1px solid $secondary-border-color;
|
|
&:first-child {
|
|
border-left: none;
|
|
}
|
|
padding: 0 0 0 3px;
|
|
text-align: left;
|
|
overflow-x: auto;
|
|
}
|
|
tr {
|
|
vertical-align: top;
|
|
&:first-child td {
|
|
white-space:nowrap;
|
|
overflow:hidden;
|
|
}
|
|
&:hover {
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
}
|
|
|
|
td {
|
|
.red-ui-diff-status {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
tr:not(.red-ui-diff-list-header) {
|
|
.red-ui-diff-status {
|
|
width: 12px;
|
|
margin-left: 0;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
.red-ui-diff-three-way {
|
|
.red-ui-diff-list-node-cell {
|
|
width: calc((100% - 220px) / 2);
|
|
&:first-child {
|
|
width: 220px;
|
|
}
|
|
}
|
|
col:not(:first-child) {
|
|
width:50%;
|
|
}
|
|
|
|
.red-ui-diff-list-node {
|
|
.red-ui-diff-list-node-cell {
|
|
width: calc((100% + 20px - 220px) / 2);
|
|
&:first-child {
|
|
width: 200px;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.red-ui-diff-list-flow-title {
|
|
cursor: pointer;
|
|
padding: 0;
|
|
// background: #f6f6f6;
|
|
&:hover {
|
|
background: #f9f9f9;
|
|
}
|
|
}
|
|
.red-ui-diff-list-flow-title-meta {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
padding-top: 2px;
|
|
}
|
|
.red-ui-diff-list-node-header {
|
|
cursor: pointer;
|
|
&:hover {
|
|
background: #f9f9f9;
|
|
}
|
|
}
|
|
.red-ui-diff-list-node-icon {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
margin: 5px;
|
|
width: 18px;
|
|
height: 15px;
|
|
background: #ddd;
|
|
border-radius: 2px;
|
|
border: 1px solid #999;
|
|
background-position: 5% 50%;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
position: relative;
|
|
|
|
.red-ui-palette-icon {
|
|
background-position: 49% 50%;
|
|
width: 15px;
|
|
}
|
|
.red-ui-palette-icon-fa {
|
|
position: relative;
|
|
top: -2.5px;
|
|
left: 0px;
|
|
}
|
|
.red-ui-palette-icon-container {
|
|
width: 18px;
|
|
}
|
|
}
|
|
.red-ui-diff-list-flow-empty {
|
|
.red-ui-diff-list-chevron i {
|
|
display: none;
|
|
}
|
|
.red-ui-diff-list-flow-title {
|
|
cursor: default;
|
|
&:hover {
|
|
background: none;
|
|
}
|
|
}
|
|
}
|
|
.red-ui-diff-status-deleted {
|
|
//background: #fadddd;
|
|
cursor: default !important;
|
|
.red-ui-diff-status {
|
|
color: $diff-state-deleted;
|
|
}
|
|
.red-ui-diff-list-node-node {
|
|
opacity: 0.5;
|
|
}
|
|
.red-ui-diff-list-node-description {
|
|
opacity: 0.5;
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
.red-ui-diff-status-added {
|
|
//background: #eefaee;
|
|
cursor: default !important;
|
|
.red-ui-diff-status {
|
|
color: $diff-state-added;
|
|
}
|
|
}
|
|
.red-ui-diff-status-moved {
|
|
//background: #eefaee;
|
|
.red-ui-diff-status {
|
|
color: $diff-state-moved;
|
|
}
|
|
}
|
|
|
|
.red-ui-diff-status-changed {
|
|
//background: #fff2ca;
|
|
.red-ui-diff-status {
|
|
color: $diff-state-changed;
|
|
}
|
|
}
|
|
.red-ui-diff-status-unchanged {
|
|
//background: #fff2ca;
|
|
.red-ui-diff-status {
|
|
color: $diff-state-unchanged;
|
|
}
|
|
}
|
|
.red-ui-diff-status-conflict {
|
|
.red-ui-diff-status {
|
|
color: $diff-state-conflict;
|
|
}
|
|
}
|
|
.red-ui-diff-list-node-title {
|
|
display: inline-block;
|
|
.red-ui-diff-status {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
.red-ui-diff-list-node-properties {
|
|
margin: 0;
|
|
color: #666;
|
|
}
|
|
.red-ui-diff-status {
|
|
display: inline-block;
|
|
height: 20px;
|
|
margin-left: 5px;
|
|
vertical-align: top;
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
text-align: center;
|
|
}
|
|
.red-ui-diff-list-element {
|
|
display: inline-block;
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
.red-ui-diff-list-node-description {
|
|
color: $form-text-color;
|
|
margin-right: 5px;
|
|
padding-top: 5px;
|
|
display: inline-block;
|
|
&:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
.red-ui-diff-state-added { color: $diff-state-added; }
|
|
.red-ui-diff-state-deleted { color: $diff-state-deleted; }
|
|
.red-ui-diff-state-changed { color: $diff-state-changed; }
|
|
.red-ui-diff-state-unchanged { color: $diff-state-unchanged; }
|
|
.red-ui-diff-state-conflicted { color: $diff-state-conflicted; }
|
|
|
|
|
|
.red-ui-diff-list-node-cell {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
box-sizing: border-box;
|
|
width: calc( (100% - 20px) / 2);
|
|
height: 32px;
|
|
border-left: 1px solid $secondary-border-color;
|
|
padding-top: 2px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
.red-ui-diff-empty {
|
|
background: #f3f3f3;
|
|
background: repeating-linear-gradient(
|
|
20deg,
|
|
#fff, #fff 5px,
|
|
#f6f6f6 5px,
|
|
#f6f6f6 10px
|
|
);
|
|
}
|
|
.red-ui-diff-list-node-cell:first-child {
|
|
border-left: none;
|
|
}
|
|
.red-ui-diff-list-cell-label {
|
|
margin-left: 20px;
|
|
vertical-align: top;
|
|
box-sizing: border-box;
|
|
padding-left: 8px;
|
|
width: 120px;
|
|
}
|
|
.red-ui-diff-list-wires {
|
|
display: inline-block;
|
|
.red-ui-diff-list-node-node {
|
|
width: 18px;
|
|
height: 15px;
|
|
}
|
|
.red-ui-palette-icon-container {
|
|
width: 18px;
|
|
}
|
|
.red-ui-palette-icon {
|
|
width: 15px;
|
|
}
|
|
ul,li,ol {
|
|
background: none !important;
|
|
}
|
|
ul {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
margin-left: 5px;
|
|
}
|
|
li {
|
|
list-style-type: none !important;
|
|
}
|
|
ol {
|
|
font-size: 0.9em;
|
|
margin: 0;
|
|
& > span {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
width: 30px;
|
|
text-align: center;
|
|
}
|
|
& > li:not(:last-child) {
|
|
border-bottom: 1px solid #999;
|
|
}
|
|
}
|
|
|
|
}
|
|
.red-ui-diff-list-node-props .red-ui-diff-list-node-cell:first-child {
|
|
padding: 6px 0px;
|
|
span:not(.red-ui-diff-list-chevron) {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
}
|
|
.red-ui-diff-list-cell {
|
|
&.red-ui-diff-status-changed {
|
|
background: #fff2e1 !important;
|
|
}
|
|
&.red-ui-diff-status-conflict {
|
|
background: #ffdad4 !important;
|
|
}
|
|
}
|
|
|
|
.red-ui-diff-selectbox {
|
|
position: absolute;
|
|
top:0;
|
|
right:0;
|
|
bottom:0;
|
|
width: 35px;
|
|
text-align: center;
|
|
border-left: 1px solid #eee;
|
|
margin:0;
|
|
input {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
&:hover {
|
|
background: #f3f3f3;
|
|
}
|
|
}
|
|
|
|
.red-ui-diff-list-node-conflict.node-diff-select-remote {
|
|
.red-ui-diff-list-node-remote {
|
|
background: #e7ffe3;
|
|
label {
|
|
border-left-color: #b8daad;
|
|
}
|
|
}
|
|
.red-ui-diff-list-node-local {
|
|
background: #ffe1e1;
|
|
label {
|
|
border-left-color: #e4bcbc;
|
|
}
|
|
}
|
|
}
|
|
.red-ui-diff-list-node-conflict.node-diff-select-local {
|
|
.red-ui-diff-list-node-local {
|
|
background: #e7ffe3;
|
|
label {
|
|
border-left-color: #b8daad;
|
|
}
|
|
}
|
|
.red-ui-diff-list-node-remote {
|
|
background: #ffe1e1;
|
|
label {
|
|
border-left-color: #e4bcbc;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
ul.red-ui-deploy-dialog-confirm-list {
|
|
font-size: 0.9em;
|
|
width: 400px;
|
|
margin: 10px auto;
|
|
text-align: left;
|
|
}
|
|
|
|
.red-ui-deploy-dialog-confirm-conflict-row {
|
|
img {
|
|
vertical-align:middle;
|
|
height: 30px;
|
|
margin-right: 10px;
|
|
}
|
|
i {
|
|
vertical-align:middle;
|
|
text-align: center;
|
|
font-size: 30px;
|
|
width: 30px;
|
|
margin-right: 10px;
|
|
}
|
|
div {
|
|
vertical-align: middle;
|
|
width: calc(100% - 60px);
|
|
display:inline-block;
|
|
}
|
|
}
|
|
|
|
#red-ui-diff-dialog-toolbar-resolved-conflicts .red-ui-diff-status {
|
|
margin:0;
|
|
}
|
|
.red-ui-diff-text-diff-button {
|
|
float: right;
|
|
margin: 2px 3px;
|
|
line-height: 14px;
|
|
height: 16px;
|
|
|
|
}
|
|
.red-ui-diff-text {
|
|
height: 100%;
|
|
overflow-y:auto;
|
|
|
|
table.red-ui-diff-text-content {
|
|
margin: 10px;
|
|
border: 1px solid $secondary-border-color;
|
|
border-radius: 3px;
|
|
table-layout: fixed;
|
|
width: calc(100% - 20px);
|
|
td {
|
|
vertical-align: top;
|
|
word-wrap: break-word;
|
|
}
|
|
td.lineno {
|
|
font-family: monospace;
|
|
text-align: right;
|
|
color: #999;
|
|
background: #f6f6f6;
|
|
padding: 1px 5px;
|
|
&.added {
|
|
background: #c0f6c0;
|
|
}
|
|
&.removed {
|
|
background: #ffcccc;
|
|
}
|
|
}
|
|
td.lineno:nth-child(3) {
|
|
border-left: 1px solid $secondary-border-color;
|
|
}
|
|
td.linetext {
|
|
font-family: monospace;
|
|
white-space: pre-wrap;
|
|
padding: 1px 5px;
|
|
border-left: 1px solid #ccc;
|
|
span.prefix {
|
|
width: 30px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
color: #999;
|
|
}
|
|
|
|
&.added {
|
|
border-left-color: #aaeeaa
|
|
}
|
|
&.removed {
|
|
border-left-color: #eebbbb
|
|
}
|
|
}
|
|
td.blank {
|
|
background: #f6f6f6;
|
|
}
|
|
td.added {
|
|
background: #eefaee;
|
|
}
|
|
td.removed {
|
|
background: #ffecec;
|
|
}
|
|
tr.mergeHeader td {
|
|
color: #800080;
|
|
background: #e5f9ff;
|
|
height: 26px;
|
|
vertical-align: middle;
|
|
}
|
|
tr.mergeHeader-separator td {
|
|
color: #800080;
|
|
background: darken(#e5f9ff, 10%);
|
|
height: 0px;
|
|
}
|
|
tr.mergeHeader-ours td {
|
|
border-top: 2px solid darken(#e5f9ff, 10%);
|
|
}
|
|
tr.mergeHeader-theirs td {
|
|
border-bottom: 2px solid darken(#e5f9ff, 10%);
|
|
}
|
|
td.unchanged {
|
|
color: #999;
|
|
}
|
|
tr.unchanged {
|
|
background: #fefefe;
|
|
}
|
|
tr.start-block {
|
|
border-top: 1px solid #f0f0f0;
|
|
}
|
|
tr.end-block {
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
tr.red-ui-diff-text-file-header td {
|
|
.filename {
|
|
font-family: monospace;
|
|
}
|
|
background: #f3f3f3;
|
|
padding: 5px 10px 5px 0;
|
|
color: #333;
|
|
cursor: pointer;
|
|
i.red-ui-diff-list-chevron {
|
|
width: 30px;
|
|
}
|
|
}
|
|
tr.red-ui-diff-text-file-header.collapsed {
|
|
td i.red-ui-diff-list-chevron {
|
|
transform: rotate(-90deg);
|
|
}
|
|
}
|
|
tr.red-ui-diff-text-commit-header td {
|
|
background: #f3f3f3;
|
|
padding: 5px 10px;
|
|
color: #333;
|
|
h3 {
|
|
font-size: 1.4em;
|
|
margin: 0;
|
|
}
|
|
.commit-summary {
|
|
border-top: 1px solid $secondary-border-color;
|
|
padding-top: 5px;
|
|
color: #999;
|
|
}
|
|
.commit-body {
|
|
margin-bottom:15px;
|
|
white-space: pre;
|
|
line-height: 1.2em;
|
|
}
|
|
}
|
|
|
|
tr.red-ui-diff-text-header > td:not(.flow-diff) {
|
|
font-family: monospace;
|
|
padding: 5px 10px;
|
|
text-align: left;
|
|
color: #666;
|
|
background: #ffd;
|
|
height: 30px;
|
|
vertical-align: middle;
|
|
border-top: 1px solid #f0f0f0;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
tr.red-ui-diff-text-expand td {
|
|
cursor: pointer;
|
|
&:hover {
|
|
background: #ffc;
|
|
}
|
|
}
|
|
}
|
|
}
|