2016-10-09 23:02:24 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2016-10-09 23:02:24 +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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-panel {
|
2018-02-14 00:09:51 +01:00
|
|
|
padding: 5px;
|
|
|
|
padding-top: 30px;
|
|
|
|
position: relative;
|
|
|
|
|
2016-10-09 23:02:24 +02:00
|
|
|
.red-ui-editableList-container {
|
|
|
|
border-radius:1px;
|
|
|
|
padding:0;
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $tertiary-background;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list {
|
2016-10-09 23:02:24 +02:00
|
|
|
li {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $tertiary-background;
|
2016-10-09 23:02:24 +02:00
|
|
|
padding: 0px;
|
|
|
|
border: none;
|
2016-12-06 23:37:21 +01:00
|
|
|
min-height: 0;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.red-ui-editableList-item-content {
|
|
|
|
padding: 5px;
|
2016-12-15 21:41:53 +01:00
|
|
|
// padding-bottom: 5px;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-container {
|
2018-02-14 00:09:51 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 40px;
|
|
|
|
right:0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
overflow-y: scroll;
|
2016-12-06 23:37:21 +01:00
|
|
|
}
|
2017-10-25 16:26:24 +02:00
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-panel-headers {
|
2016-12-15 21:41:53 +01:00
|
|
|
position: absolute;
|
2018-02-14 00:09:51 +01:00
|
|
|
left:232px;
|
|
|
|
right:12px;
|
2017-10-25 16:26:24 +02:00
|
|
|
top: 5px;
|
2016-12-15 21:41:53 +01:00
|
|
|
height: 25px;
|
2017-08-04 00:04:39 +02:00
|
|
|
div {
|
|
|
|
height: 25px;
|
|
|
|
display: inline-block;
|
|
|
|
box-sizing: border-box;
|
2017-08-20 23:59:51 +02:00
|
|
|
padding-top: 2px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2017-08-04 00:04:39 +02:00
|
|
|
width: 50%;
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $tertiary-background;
|
2016-12-15 21:41:53 +01:00
|
|
|
text-align: center;
|
|
|
|
border-top: 1px solid $secondary-border-color;
|
|
|
|
border-color:$secondary-border-color;
|
2017-08-04 00:04:39 +02:00
|
|
|
border-left: 1px solid $secondary-border-color;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2017-08-04 00:04:39 +02:00
|
|
|
div:last-child {
|
2016-12-15 21:41:53 +01:00
|
|
|
border-right: 1px solid $secondary-border-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-dialog-toolbar {
|
2016-12-15 21:41:53 +01:00
|
|
|
box-sizing: border-box;
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $secondary-text-color;
|
2016-12-06 23:37:21 +01:00
|
|
|
text-align: right;
|
|
|
|
padding: 8px 10px;
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $primary-background;
|
2016-12-06 23:37:21 +01:00
|
|
|
border-bottom: 1px solid $secondary-border-color;
|
|
|
|
white-space: nowrap;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-flow {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $secondary-background;
|
|
|
|
border: 1px solid $secondary-border-color;
|
2016-12-15 21:41:53 +01:00
|
|
|
border-radius: 1px;
|
2016-12-06 23:37:21 +01:00
|
|
|
overflow: hidden;
|
2016-10-09 23:02:24 +02:00
|
|
|
|
|
|
|
&.collapsed {
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-flow-title .red-ui-diff-list-chevron {
|
2016-10-09 23:02:24 +02:00
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node {
|
2016-10-09 23:02:24 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-flow-stats {
|
2016-12-15 21:41:53 +01:00
|
|
|
font-size: 0.9em;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-chevron {
|
2016-12-06 23:37:21 +01:00
|
|
|
display: inline-block;
|
2016-10-09 23:02:24 +02:00
|
|
|
width: 15px;
|
|
|
|
text-align: center;
|
2016-12-15 21:41:53 +01:00
|
|
|
margin-left: 3px;
|
2016-10-09 23:02:24 +02:00
|
|
|
transition: transform 0.1s ease-in-out;
|
|
|
|
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node {
|
2016-12-15 21:41:53 +01:00
|
|
|
margin-left: 20px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
|
|
|
&:first-child {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-top: 1px solid $tertiary-border-color;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
|
|
|
&:not(:last-child) {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-bottom: 1px solid $tertiary-border-color;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
|
|
|
|
&.collapsed {
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-chevron {
|
2016-10-09 23:02:24 +02:00
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-properties {
|
2016-10-09 23:02:24 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2016-12-15 21:41:53 +01:00
|
|
|
&:not(.collapsed) {
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-cell:not(:first-child) {
|
2016-12-15 21:41:53 +01:00
|
|
|
//display: none;
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-cell:first-child {
|
2016-12-20 20:42:38 +01:00
|
|
|
//width: 100%
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
|
|
|
|
table {
|
2017-01-04 21:57:10 +01:00
|
|
|
border-collapse: collapse;
|
|
|
|
table-layout:fixed;
|
2017-08-04 00:04:39 +02:00
|
|
|
width: calc(100% - 20px);
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
col:first-child {
|
|
|
|
width: 180px;
|
|
|
|
}
|
|
|
|
col:not(:first-child) {
|
2017-08-03 10:58:25 +02:00
|
|
|
width: 100%;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
|
|
|
td, th {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-top: 1px solid $secondary-border-color;
|
2017-08-04 00:04:39 +02:00
|
|
|
border-left: 1px solid $secondary-border-color;
|
|
|
|
&:first-child {
|
|
|
|
border-left: none;
|
|
|
|
}
|
2016-12-15 21:41:53 +01:00
|
|
|
padding: 0 0 0 3px;
|
2016-10-09 23:02:24 +02:00
|
|
|
text-align: left;
|
2016-12-06 23:37:21 +01:00
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
vertical-align: top;
|
2016-12-15 21:41:53 +01:00
|
|
|
&:first-child td {
|
|
|
|
white-space:nowrap;
|
|
|
|
overflow:hidden;
|
|
|
|
}
|
2017-08-03 10:58:25 +02:00
|
|
|
&:hover {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $secondary-background-selected;
|
2017-08-03 10:58:25 +02:00
|
|
|
}
|
|
|
|
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
2017-08-04 00:04:39 +02:00
|
|
|
|
2016-12-15 21:41:53 +01:00
|
|
|
td {
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status {
|
2016-12-15 21:41:53 +01:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
tr:not(.red-ui-diff-list-header) {
|
|
|
|
.red-ui-diff-status {
|
2016-12-15 21:41:53 +01:00
|
|
|
width: 12px;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-three-way {
|
|
|
|
.red-ui-diff-list-node-cell {
|
2016-12-20 20:42:38 +01:00
|
|
|
width: calc((100% - 220px) / 2);
|
|
|
|
&:first-child {
|
|
|
|
width: 220px;
|
|
|
|
}
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2017-08-03 10:58:25 +02:00
|
|
|
col:not(:first-child) {
|
|
|
|
width:50%;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node {
|
|
|
|
.red-ui-diff-list-node-cell {
|
2016-12-20 20:42:38 +01:00
|
|
|
width: calc((100% + 20px - 220px) / 2);
|
2016-12-15 21:41:53 +01:00
|
|
|
&:first-child {
|
2016-12-20 20:42:38 +01:00
|
|
|
width: 200px;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2016-12-20 20:42:38 +01:00
|
|
|
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-flow-title {
|
2016-12-15 21:41:53 +01:00
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
2017-08-03 10:58:25 +02:00
|
|
|
&:hover {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $secondary-background-selected;
|
2017-08-03 10:58:25 +02:00
|
|
|
}
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-flow-title-meta {
|
2016-12-15 21:41:53 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: 2px;
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-header {
|
2016-10-09 23:02:24 +02:00
|
|
|
cursor: pointer;
|
2017-08-03 10:58:25 +02:00
|
|
|
&:hover {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $secondary-background-selected;
|
2017-08-03 10:58:25 +02:00
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-icon {
|
2016-10-09 23:02:24 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 5px;
|
2016-12-15 21:41:53 +01:00
|
|
|
width: 18px;
|
|
|
|
height: 15px;
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $form-input-background;
|
2016-10-09 23:02:24 +02:00
|
|
|
border-radius: 2px;
|
2019-05-15 14:54:29 +02:00
|
|
|
border: 1px solid $node-border;
|
2016-10-09 23:02:24 +02:00
|
|
|
background-position: 5% 50%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
position: relative;
|
|
|
|
|
2019-04-29 23:38:14 +02:00
|
|
|
.red-ui-palette-icon {
|
2016-12-15 21:41:53 +01:00
|
|
|
background-position: 49% 50%;
|
|
|
|
width: 15px;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
2019-04-29 23:38:14 +02:00
|
|
|
.red-ui-palette-icon-fa {
|
2018-09-26 02:16:15 +02:00
|
|
|
position: relative;
|
|
|
|
top: -2.5px;
|
|
|
|
left: 0px;
|
|
|
|
}
|
2019-04-29 23:38:14 +02:00
|
|
|
.red-ui-palette-icon-container {
|
2016-12-15 21:41:53 +01:00
|
|
|
width: 18px;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-flow-empty {
|
|
|
|
.red-ui-diff-list-chevron i {
|
2016-12-06 23:37:21 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-flow-title {
|
2016-12-06 23:37:21 +01:00
|
|
|
cursor: default;
|
2017-08-03 10:58:25 +02:00
|
|
|
&:hover {
|
|
|
|
background: none;
|
|
|
|
}
|
2016-12-06 23:37:21 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status-deleted {
|
2016-12-06 23:37:21 +01:00
|
|
|
cursor: default !important;
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status {
|
|
|
|
color: $diff-state-deleted;
|
2016-12-06 23:37:21 +01:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-node {
|
2016-12-06 23:37:21 +01:00
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-description {
|
2016-12-06 23:37:21 +01:00
|
|
|
opacity: 0.5;
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status-added {
|
2016-12-06 23:37:21 +01:00
|
|
|
cursor: default !important;
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status {
|
|
|
|
color: $diff-state-added;
|
2016-12-06 23:37:21 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status-moved {
|
|
|
|
.red-ui-diff-status {
|
|
|
|
color: $diff-state-moved;
|
2016-12-23 13:53:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status-changed {
|
|
|
|
.red-ui-diff-status {
|
|
|
|
color: $diff-state-changed;
|
2016-12-06 23:37:21 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status-unchanged {
|
|
|
|
.red-ui-diff-status {
|
|
|
|
color: $diff-state-unchanged;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status-conflict {
|
|
|
|
.red-ui-diff-status {
|
|
|
|
color: $diff-state-conflict;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-title {
|
2016-12-15 21:41:53 +01:00
|
|
|
display: inline-block;
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status {
|
2016-12-06 23:37:21 +01:00
|
|
|
margin-left: 15px;
|
|
|
|
}
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-properties {
|
2017-08-04 00:04:39 +02:00
|
|
|
margin: 0;
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $primary-text-color;
|
2016-10-09 23:02:24 +02:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-status {
|
2016-12-06 23:37:21 +01:00
|
|
|
display: inline-block;
|
|
|
|
height: 20px;
|
|
|
|
margin-left: 5px;
|
2016-12-15 21:41:53 +01:00
|
|
|
vertical-align: top;
|
|
|
|
margin-top: 6px;
|
|
|
|
margin-bottom: 6px;
|
2016-12-06 23:37:21 +01:00
|
|
|
text-align: center;
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-element {
|
2017-07-26 16:47:19 +02:00
|
|
|
display: inline-block;
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
}
|
2016-12-06 23:37:21 +01:00
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-description {
|
2016-10-09 23:02:24 +02:00
|
|
|
color: $form-text-color;
|
|
|
|
margin-right: 5px;
|
|
|
|
padding-top: 5px;
|
|
|
|
display: inline-block;
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.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; }
|
2016-12-15 21:41:53 +01:00
|
|
|
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-cell {
|
2016-12-15 21:41:53 +01:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: calc( (100% - 20px) / 2);
|
|
|
|
height: 32px;
|
2017-08-04 00:04:39 +02:00
|
|
|
border-left: 1px solid $secondary-border-color;
|
2016-12-15 21:41:53 +01:00
|
|
|
padding-top: 2px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2016-12-20 20:42:38 +01:00
|
|
|
position: relative;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-empty {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $secondary-background-disabled;
|
2016-12-15 21:41:53 +01:00
|
|
|
background: repeating-linear-gradient(
|
|
|
|
20deg,
|
2019-05-15 14:54:29 +02:00
|
|
|
$secondary-background, $secondary-background 5px,
|
|
|
|
$secondary-background-disabled 5px,
|
|
|
|
$secondary-background-disabled 10px
|
2016-12-15 21:41:53 +01:00
|
|
|
);
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-cell:first-child {
|
2016-12-15 21:41:53 +01:00
|
|
|
border-left: none;
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-cell-label {
|
2016-12-15 21:41:53 +01:00
|
|
|
margin-left: 20px;
|
|
|
|
vertical-align: top;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-left: 8px;
|
|
|
|
width: 120px;
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-wires {
|
2016-12-15 21:41:53 +01:00
|
|
|
display: inline-block;
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-node {
|
2016-12-15 21:41:53 +01:00
|
|
|
width: 18px;
|
|
|
|
height: 15px;
|
|
|
|
}
|
2019-04-29 23:38:14 +02:00
|
|
|
.red-ui-palette-icon-container {
|
2016-12-15 21:41:53 +01:00
|
|
|
width: 18px;
|
|
|
|
}
|
2019-04-29 23:38:14 +02:00
|
|
|
.red-ui-palette-icon {
|
2016-12-15 21:41:53 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-props .red-ui-diff-list-node-cell:first-child {
|
2016-12-15 21:41:53 +01:00
|
|
|
padding: 6px 0px;
|
2019-05-03 21:22:46 +02:00
|
|
|
span:not(.red-ui-diff-list-chevron) {
|
2016-12-15 21:41:53 +01:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-cell {
|
2019-05-15 14:54:29 +02:00
|
|
|
.red-ui-debug-msg-row:hover {
|
|
|
|
background: none;
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
&.red-ui-diff-status-changed {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-changed-background;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
&.red-ui-diff-status-conflict {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-conflict-background;
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-15 14:54:29 +02:00
|
|
|
label.red-ui-diff-selectbox {
|
2016-12-20 20:42:38 +01:00
|
|
|
position: absolute;
|
|
|
|
top:0;
|
|
|
|
right:0;
|
|
|
|
bottom:0;
|
|
|
|
width: 35px;
|
|
|
|
text-align: center;
|
2019-05-15 14:54:29 +02:00
|
|
|
border-left: 1px solid $secondary-border-color;
|
2016-12-20 20:42:38 +01:00
|
|
|
margin:0;
|
2019-05-15 14:54:29 +02:00
|
|
|
input[type="radio"] {
|
2016-12-20 20:42:38 +01:00
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $secondary-background-hover;
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 14:26:49 +02:00
|
|
|
.red-ui-diff-list-node-conflict.red-ui-diff-select-remote {
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-remote {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-added-background;
|
2016-12-20 20:42:38 +01:00
|
|
|
label {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-left-color: $diff-state-added-border;
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-local {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-deleted-background;
|
2016-12-20 20:42:38 +01:00
|
|
|
label {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-left-color: $diff-state-deleted-border;
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
2019-05-16 14:26:49 +02:00
|
|
|
.red-ui-diff-list-node-conflict.red-ui-diff-select-local {
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-local {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-added-background;
|
2016-12-20 20:42:38 +01:00
|
|
|
label {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-left-color: $diff-state-added-border;
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-list-node-remote {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-deleted-background;
|
2016-12-20 20:42:38 +01:00
|
|
|
label {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-left-color: $diff-state-deleted-border;
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
ul.red-ui-deploy-dialog-confirm-list {
|
2018-01-23 00:04:05 +01:00
|
|
|
font-size: 0.9em;
|
|
|
|
width: 400px;
|
|
|
|
margin: 10px auto;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-deploy-dialog-confirm-conflict-row {
|
2018-01-23 00:04:05 +01:00
|
|
|
img {
|
|
|
|
vertical-align:middle;
|
|
|
|
height: 30px;
|
|
|
|
margin-right: 10px;
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
2018-01-23 00:04:05 +01:00
|
|
|
i {
|
|
|
|
vertical-align:middle;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 30px;
|
|
|
|
width: 30px;
|
|
|
|
margin-right: 10px;
|
2019-05-15 14:54:29 +02:00
|
|
|
&.fa-check {
|
|
|
|
color: $text-color-green;
|
|
|
|
}
|
|
|
|
&.fa-exclamation {
|
|
|
|
color: $secondary-text-color;
|
|
|
|
}
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
2018-01-23 00:04:05 +01:00
|
|
|
div {
|
|
|
|
vertical-align: middle;
|
|
|
|
width: calc(100% - 60px);
|
|
|
|
display:inline-block;
|
2016-12-20 20:42:38 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-15 21:41:53 +01:00
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
#red-ui-diff-dialog-toolbar-resolved-conflicts .red-ui-diff-status {
|
2016-12-20 20:42:38 +01:00
|
|
|
margin:0;
|
2016-12-15 21:41:53 +01:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-text-diff-button {
|
2017-08-20 23:59:51 +02:00
|
|
|
float: right;
|
|
|
|
margin: 2px 3px;
|
|
|
|
line-height: 14px;
|
|
|
|
height: 16px;
|
|
|
|
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
.red-ui-diff-text {
|
2017-08-20 23:59:51 +02:00
|
|
|
height: 100%;
|
|
|
|
overflow-y:auto;
|
2018-02-14 00:09:51 +01:00
|
|
|
|
2019-05-03 21:22:46 +02:00
|
|
|
table.red-ui-diff-text-content {
|
2017-08-20 23:59:51 +02:00
|
|
|
margin: 10px;
|
|
|
|
border: 1px solid $secondary-border-color;
|
|
|
|
border-radius: 3px;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: calc(100% - 20px);
|
2018-02-14 00:09:51 +01:00
|
|
|
td {
|
|
|
|
vertical-align: top;
|
|
|
|
word-wrap: break-word;
|
2017-10-09 01:11:07 +02:00
|
|
|
}
|
2018-02-14 00:09:51 +01:00
|
|
|
td.lineno {
|
2019-05-09 20:22:40 +02:00
|
|
|
font-family: $monospace-font;
|
2018-02-14 00:09:51 +01:00
|
|
|
text-align: right;
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $tertiary-text-color;
|
|
|
|
background: $tertiary-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
padding: 1px 5px;
|
2018-12-18 11:57:18 +01:00
|
|
|
&.added {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-added-header-background;
|
2018-12-18 11:57:18 +01:00
|
|
|
}
|
|
|
|
&.removed {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-deleted-header-background;
|
2018-12-18 11:57:18 +01:00
|
|
|
}
|
2017-11-22 00:31:41 +01:00
|
|
|
}
|
2018-02-14 00:09:51 +01:00
|
|
|
td.lineno:nth-child(3) {
|
|
|
|
border-left: 1px solid $secondary-border-color;
|
2017-10-25 16:26:24 +02:00
|
|
|
}
|
2018-02-14 00:09:51 +01:00
|
|
|
td.linetext {
|
2019-05-09 20:22:40 +02:00
|
|
|
font-family: $monospace-font;
|
2018-02-14 00:09:51 +01:00
|
|
|
white-space: pre-wrap;
|
|
|
|
padding: 1px 5px;
|
2019-05-15 14:54:29 +02:00
|
|
|
border-left: 1px solid $tertiary-border-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
span.prefix {
|
|
|
|
width: 30px;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $secondary-text-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
2018-12-18 11:57:18 +01:00
|
|
|
|
|
|
|
&.added {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-left-color: $diff-state-added-header-border;
|
2018-12-18 11:57:18 +01:00
|
|
|
}
|
|
|
|
&.removed {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-left-color: $diff-state-deleted-header-border;
|
2018-12-18 11:57:18 +01:00
|
|
|
}
|
2017-10-25 16:26:24 +02:00
|
|
|
}
|
2018-02-14 00:09:51 +01:00
|
|
|
td.blank {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $tertiary-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
|
|
|
td.added {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-added-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
|
|
|
td.removed {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-deleted-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
|
|
|
tr.mergeHeader td {
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $diff-merge-header-color;
|
|
|
|
background: $diff-merge-header-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
height: 26px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
tr.mergeHeader-separator td {
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $diff-merge-header-color;
|
|
|
|
background: $diff-merge-header-border-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
height: 0px;
|
|
|
|
}
|
|
|
|
tr.mergeHeader-ours td {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-top: 2px solid $diff-merge-header-border-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
|
|
|
tr.mergeHeader-theirs td {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-bottom: 2px solid $diff-merge-header-border-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
|
|
|
td.unchanged {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-unchanged-background;
|
|
|
|
color: $diff-state-unchanged;
|
2017-10-25 16:26:24 +02:00
|
|
|
}
|
2018-02-14 00:09:51 +01:00
|
|
|
tr.unchanged {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-state-unchanged-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
|
|
|
tr.start-block {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-top: 1px solid $secondary-border-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
|
|
|
tr.end-block {
|
2019-05-15 14:54:29 +02:00
|
|
|
border-bottom: 1px solid $secondary-border-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
tr.red-ui-diff-text-file-header td {
|
2018-02-14 00:09:51 +01:00
|
|
|
.filename {
|
2019-05-09 20:22:40 +02:00
|
|
|
font-family: $monospace-font;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $primary-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
padding: 5px 10px 5px 0;
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $primary-text-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
cursor: pointer;
|
2019-05-03 21:22:46 +02:00
|
|
|
i.red-ui-diff-list-chevron {
|
2018-02-14 00:09:51 +01:00
|
|
|
width: 30px;
|
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
tr.red-ui-diff-text-file-header.collapsed {
|
|
|
|
td i.red-ui-diff-list-chevron {
|
2018-02-14 00:09:51 +01:00
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
tr.red-ui-diff-text-commit-header td {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $primary-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
padding: 5px 10px;
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $primary-text-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
h3 {
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.commit-summary {
|
|
|
|
border-top: 1px solid $secondary-border-color;
|
|
|
|
padding-top: 5px;
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $secondary-text-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
|
|
|
.commit-body {
|
|
|
|
margin-bottom:15px;
|
|
|
|
white-space: pre;
|
|
|
|
line-height: 1.2em;
|
|
|
|
}
|
2017-10-25 16:26:24 +02:00
|
|
|
}
|
2017-10-10 00:37:19 +02:00
|
|
|
|
2019-05-16 14:26:49 +02:00
|
|
|
tr.red-ui-diff-text-header > td:not(.red-ui-diff-flow-diff) {
|
2019-05-09 20:22:40 +02:00
|
|
|
font-family: $monospace-font;
|
2018-02-14 00:09:51 +01:00
|
|
|
padding: 5px 10px;
|
|
|
|
text-align: left;
|
2019-05-15 14:54:29 +02:00
|
|
|
color: $secondary-text-color;
|
|
|
|
background: $diff-text-header-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
height: 30px;
|
|
|
|
vertical-align: middle;
|
2019-05-15 14:54:29 +02:00
|
|
|
border-top: 1px solid $secondary-border-color;
|
|
|
|
border-bottom: 1px solid $secondary-border-color;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
2019-05-03 21:22:46 +02:00
|
|
|
tr.red-ui-diff-text-expand td {
|
2018-02-14 00:09:51 +01:00
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
2019-05-15 14:54:29 +02:00
|
|
|
background: $diff-text-header-background;
|
2018-02-14 00:09:51 +01:00
|
|
|
}
|
2017-08-20 23:59:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|