1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00
node-red/packages/node_modules/@node-red/editor-client/src/sass/projects.scss

800 lines
19 KiB
SCSS
Raw Normal View History

2017-09-20 11:30:07 +02:00
/**
* 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.
**/
2019-05-07 16:47:33 +02:00
#red-ui-projects-dialog {
2017-09-20 11:30:07 +02:00
.red-ui-editableList-container {
padding: 0px;
}
}
2019-05-07 16:47:33 +02:00
#red-ui-project-settings-tab-settings {
overflow-y: scroll;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-shade {
2019-05-15 14:54:29 +02:00
background: $primary-background;
2018-01-12 22:00:11 +01:00
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-edit-form form {
2017-09-20 11:30:07 +02:00
margin: 0;
.form-row {
2017-10-25 16:26:24 +02:00
margin-bottom: 15px;
2017-09-20 11:30:07 +02:00
label {
2019-05-15 14:54:29 +02:00
color: $primary-text-color;
2017-10-25 16:26:24 +02:00
width: 100%;
2017-09-20 11:30:07 +02:00
display: block;
2019-05-07 16:47:33 +02:00
&.red-ui-projects-edit-form-inline-label {
2017-10-25 16:26:24 +02:00
font-weight: normal;
color: inherit;
width: auto;
}
2017-09-20 11:30:07 +02:00
}
input[type=text], input[type=password],textarea {
width: 100%;
}
input[type=checkbox], input[type=radio] {
width: auto;
vertical-align: middle;
}
}
2017-10-25 16:26:24 +02:00
2017-09-20 11:30:07 +02:00
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-edit-form-sublabel {
2019-05-15 14:54:29 +02:00
color: $tertiary-text-color;
text-align: right;
margin-bottom: -15px;
font-weight: normal;
}
2019-05-07 16:47:33 +02:00
.red-ui-project-settings-tab-pane {
& * .red-ui-projects-edit-form-sublabel {
margin-right: 50px;
margin-top: -10px !important;
margin-bottom: 5px;
}
}
2017-09-20 11:30:07 +02:00
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-screen-start {
.red-ui-projects-dialog-screen-start-hero {
text-align: center;
font-size: 2em;
padding: 10px;
min-height: 60px;
2019-05-15 14:54:29 +02:00
color: $primary-text-color;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-screen-start-body {
min-height: 400px;
line-height: 1.6em;
p {
font-size: 1.1em;
margin-bottom: 20px;
}
p:first-child {
font-weight: 500;
font-size: 1.2em;
}
}
2017-09-20 11:30:07 +02:00
button.editor-button {
2018-05-02 14:38:50 +02:00
width: calc(50% - 80px);
2017-09-20 11:30:07 +02:00
margin: 20px;
2018-05-02 14:38:50 +02:00
height: auto;
2017-09-20 11:30:07 +02:00
line-height: 2em;
2018-05-02 14:38:50 +02:00
padding: 10px;
2017-09-20 11:30:07 +02:00
}
.button-group {
text-align: center;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-screen-create {
2017-09-20 11:30:07 +02:00
min-height: 500px;
2019-05-07 16:47:33 +02:00
button.red-ui-projects-dialog-screen-create-type {
2017-09-20 11:30:07 +02:00
height: auto;
padding: 10px;
}
.button-group {
text-align: center;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-screen-secret {
2017-09-20 11:30:07 +02:00
min-height: auto;
}
.red-ui-projects-dialog-credentials-box {
width: 550px;
> div {
vertical-align: top;
display: inline-block;
}
}
.red-ui-projects-dialog-credentials-box-right {
min-height:150px;
box-sizing: border-box;
float: right;
width: 331px;
margin-left: -1px;
padding: 15px;
margin-top: -15px;
border: 1px solid $secondary-border-color;
border-radius: 3px;
}
.red-ui-projects-dialog-credentials-box-left {
width: 220px;
> div {
padding: 7px 8px 3px 8px;
border: 1px solid $secondary-border-color;
border-radius: 4px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-right-color: $form-background;
&.disabled {
border-color: $form-background;
border-right-color:$secondary-border-color;
}
i {
font-size: 1.4em;
margin-right: 8px;
vertical-align: middle;
}
label.red-ui-projects-edit-form-inline-label {
margin-left: 5px;
span {
vertical-align: middle;
}
}
input[type="radio"] {
vertical-align: middle;
margin-top:0;
margin-right: 10px;
}
}
}
.red-ui-projects-dialog-credentials-box-enabled {
}
.red-ui-projects-dialog-credentials-box-disabled {
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-container {
border: 1px solid $secondary-border-color;
border-radius: 2px;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-inner-container {
height: 300px;
overflow-y: scroll;
position:relative;
.red-ui-editableList-border {
border: none;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list {
2017-09-20 11:30:07 +02:00
li {
padding: 0 !important;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-entry {
2017-09-20 11:30:07 +02:00
padding: 12px 0;
2019-05-15 14:54:29 +02:00
color: $list-item-color;
background: $list-item-background;
border-left: 3px solid $list-item-background;
border-right: 3px solid $list-item-background;
2017-09-20 11:30:07 +02:00
&.projects-list-entry-current {
&:not(.selectable) {
2019-05-15 14:54:29 +02:00
color: $form-text-color;
background: $list-item-background-selected;
border-left-color:$list-item-border-selected;
border-right-color:$list-item-border-selected;
2017-09-20 11:30:07 +02:00
}
i {
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
2017-09-20 11:30:07 +02:00
}
}
&.selectable {
cursor: pointer;
2019-05-15 14:54:29 +02:00
&:hover:not(.selected) {
color: $form-text-color;
background: $list-item-background-hover;
border-left-color:$list-item-background-hover;
border-right-color:$list-item-background-hover;
2017-09-20 11:30:07 +02:00
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-entry-icon {
i {
2019-05-15 14:54:29 +02:00
color: $tertiary-text-color;
font-size: 2em;
2017-09-20 11:30:07 +02:00
}
2017-09-20 11:30:07 +02:00
}
&.selected {
2019-05-15 14:54:29 +02:00
color: $form-text-color;
background: $list-item-background-selected;
border-left-color:$list-item-border-selected;
border-right-color:$list-item-border-selected;
2017-09-20 11:30:07 +02:00
}
span {
display: inline-block;
vertical-align:middle;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-entry-icon {
2017-09-20 11:30:07 +02:00
margin: 0 10px 0 5px;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-entry-name {
2017-09-20 11:30:07 +02:00
font-size: 1.2em;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-entry-current {
2017-09-20 11:30:07 +02:00
float: right;
margin-right: 20px;
font-size: 0.9em;
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
2017-09-20 11:30:07 +02:00
padding-top: 4px;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-entry-tools {
position: absolute;
top: 16px;
right: 30px;
display: none;
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
}
&:hover {
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-project-list-entry-tools {
display: block;
}
}
2017-09-20 11:30:07 +02:00
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-screen-create-type.editor-button.toggle.selected:not(.disabled):not(:disabled) {
2019-05-15 14:54:29 +02:00
color: $secondary-text-color-active !important;
2017-10-17 00:23:50 +02:00
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-screen-input-status {
text-align: right;
position: absolute;
top: 2px;
right: 8px;
width: 70px;
height: 30px;
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
}
2017-09-20 11:30:07 +02:00
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc {
2017-09-20 11:30:07 +02:00
height: 100%;
}
2019-05-15 14:54:29 +02:00
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-stack {
2017-09-20 11:30:07 +02:00
position: absolute;
top: 0px;
2017-09-20 11:30:07 +02:00
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
2017-09-20 11:30:07 +02:00
2019-04-29 23:38:14 +02:00
.red-ui-palette-category {
&:not(.expanded) button {
2017-09-20 11:30:07 +02:00
display: none;
}
}
}
2019-05-07 16:47:33 +02:00
#red-ui-project-settings-tab-deps {
2017-09-20 11:30:07 +02:00
.red-ui-editableList-container {
padding: 0;
}
.red-ui-editableList-border {
border-radius: 0;
}
.red-ui-editableList-item-content {
padding: 0px 6px;
}
.red-ui-palette-module-header {
2017-09-20 11:30:07 +02:00
padding: 6px 4px;
}
.red-ui-palette-module-button {
2017-09-20 11:30:07 +02:00
float: right;
}
.red-ui-palette-module-unused {
2017-09-20 11:30:07 +02:00
& > * {
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
2017-09-20 11:30:07 +02:00
}
}
.red-ui-palette-module-unknown {
2019-05-15 14:54:29 +02:00
border: 1px dashed $secondary-border-color;
background: $secondary-background-inactive;
}
.red-ui-palette-module-not-installed {
2019-05-15 14:54:29 +02:00
border: 1px dashed $text-color-warning;
2017-09-20 11:30:07 +02:00
i.fa-warning {
2019-05-15 14:54:29 +02:00
color: $text-color-warning;
2017-09-20 11:30:07 +02:00
}
}
}
2019-05-07 16:47:33 +02:00
.red-ui-project-settings-tab-pane {
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
overflow-y: auto;
padding: 8px 20px 20px;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc {
.red-ui-editableList-container {
2019-05-15 14:54:29 +02:00
background: $tertiary-background;
padding: 0;
li {
padding:0;
2019-05-15 14:54:29 +02:00
background: $secondary-background;
}
}
.red-ui-editableList-border {
border: none;
border-radius: 0;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-change-container {
2017-10-10 00:37:19 +02:00
position: relative;
height: 50%;
box-sizing: border-box;
transition: height 0.2s ease-in-out;
&:first-child {
// border-bottom: 1px solid $primary-border-color;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-merging {
.red-ui-sidebar-vc-change-container {
height: 33%;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-slide-box {
position:absolute;
bottom: 0;
left:0;
right:0;
height:0;
transition: height 0.2s ease-in-out;
2019-05-15 14:54:29 +02:00
background: $tertiary-background;
box-sizing: border-box;
overflow: hidden;
2019-05-07 16:47:33 +02:00
&.red-ui-sidebar-vc-slide-box-top {
2017-11-23 01:27:13 +01:00
z-index: 4;
top: 0px;
left: auto;
width: 100%;
max-width: 280px;
border-left: 1px solid $primary-border-color;
border-right: 1px solid $primary-border-color;
border-bottom: 1px solid $primary-border-color;
2019-05-15 14:54:29 +02:00
box-shadow: 1px 1px 4px $shadow;
2019-05-15 14:54:29 +02:00
color: $primary-text-color;
background: $tertiary-background;
padding: 10px;
box-sizing: border-box;
}
2019-05-07 16:47:33 +02:00
&.red-ui-sidebar-vc-slide-box-bottom {
bottom: 0px;
border-top: 1px solid $secondary-border-color;
}
textarea {
height: 110px;
margin: 10px;
width: calc(100% - 20px);
box-sizing: border-box;
border-radius: 1px;
resize: none;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-branch-list {
position: relative;
.red-ui-searchBox-container {
border-top: 1px solid $secondary-border-color;
border-left: 1px solid $secondary-border-color;
border-right: 1px solid $secondary-border-color;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
overflow: hidden;
}
.red-ui-editableList {
border: 1px solid $secondary-border-color;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
& > .red-ui-editableList-border {
border-radius: 0;
border: none;
}
.red-ui-editableList-container {
padding: 0;
li {
padding: 0;
2019-05-15 14:54:29 +02:00
background: $secondary-background;
}
}
}
}
2019-05-07 16:47:33 +02:00
.uneditable-input .red-ui-projects-branch-list {
.red-ui-editableList {
border-left: none;
border-bottom: none;
border-right: none;
}
.red-ui-searchBox-container {
border-left: none;
border-right: none;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-slide-box-header {
margin-bottom: 10px;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-slide-box-toolbar {
padding: 0 20px;
text-align: right;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-branch-list-entry {
padding: 5px 8px;
2019-05-15 14:54:29 +02:00
margin: 0 1px;
color: $list-item-color;
background: $list-item-background;
border-left: 2px solid $list-item-background;
border-right: 2px solid $list-item-background;
cursor: pointer;
&.selected {
2019-05-15 14:54:29 +02:00
border-left-color:$list-item-border-selected;
border-right-color:$list-item-border-selected;
}
i { width: 16px; text-align: center}
&.input-error {
cursor: default;
}
&:not(.input-error):hover {
2019-05-15 14:54:29 +02:00
background: $list-item-background-hover;
border-left-color:$list-item-border-selected;
border-right-color:$list-item-border-selected;
}
span {
margin-left: 5px;
}
span.current {
float: right;
font-size: 0.8em;
2019-05-15 14:54:29 +02:00
color: $tertiary-text-color;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-change-entry {
height: 20px;
padding: 5px 10px;
position: relative;
white-space: nowrap;
span {
margin: 0 6px;
}
2017-12-11 18:05:12 +01:00
a {
color: currentColor;
&.disabled {
pointer-events: none;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-change-entry-tools {
position: absolute;
top: 4px;
right: 4px;
display: none;
2018-02-08 23:22:58 +01:00
button {
width: 24px;
}
}
&:hover {
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-change-entry-tools {
display: block;
}
}
&.red-ui-help-info-node {
text-align: center;
2019-05-15 14:54:29 +02:00
background: $list-item-background;
white-space: normal;
height: auto;
}
}
2017-10-10 00:37:19 +02:00
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-entry {
2017-10-10 00:37:19 +02:00
min-height: 20px;
padding: 5px 10px;
position: relative;
white-space: nowrap;
overflow: hidden;
2017-10-10 00:37:19 +02:00
cursor: pointer;
&:hover {
2019-05-15 14:54:29 +02:00
background: $secondary-background-hover;
2017-10-10 00:37:19 +02:00
}
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-more {
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
text-align: center;
padding: 10px;
font-style: italic;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-sha {
2017-10-10 00:37:19 +02:00
float: right;
font-family: $monospace-font;
2019-05-15 14:54:29 +02:00
color: $vcCommitShaColor;
2017-10-10 00:37:19 +02:00
display: inline-block;
font-size: 0.85em;
margin-left: 5px;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-subject {
2019-05-15 14:54:29 +02:00
color: $primary-text-color;
2017-10-10 00:37:19 +02:00
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-refs {
min-height: 22px;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-ref {
2019-05-15 14:54:29 +02:00
color: $tertiary-text-color;
font-size: 0.7em;
2019-05-15 14:54:29 +02:00
border: 1px solid $tertiary-border-color;
border-radius: 10px;
padding: 2px 5px;
margin-right: 5px;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-date {
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
2017-10-10 00:37:19 +02:00
font-size: 0.85em;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-user {
2017-10-10 00:37:19 +02:00
float: right;
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
2017-10-10 00:37:19 +02:00
font-size: 0.85em;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-commit-head {
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-change-header {
2019-05-15 14:54:29 +02:00
color: $primary-text-color;
background: $tertiary-background;
padding: 4px 10px;
height: 30px;
box-sizing: border-box;
border-top: 1px solid $secondary-border-color;
border-bottom: 1px solid $secondary-border-color;
i {
transition: all 0.2s ease-in-out;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-repo-toolbar {
2019-05-15 14:54:29 +02:00
color: $primary-text-color;
background: $tertiary-background;
padding: 10px;
box-sizing: border-box;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-repo-count {
margin-right: 8px;
display: none;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-repo-action {
text-align: left;
width: 100%;
}
2019-05-07 16:47:33 +02:00
.red-ui-sidebar-vc-repo-sub-action {
width: calc(50% - 5px);
margin-right: 5px;
&:not(:first-child) {
margin-right: 0;
margin-left: 5px;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-file-listing-container > .red-ui-editableList > .red-ui-editableList-border {
border-radius: 0;
border: none;
border-top: 1px solid $secondary-border-color;
}
2019-05-07 16:47:33 +02:00
.red-ui-editableList-container .red-ui-projects-dialog-file-list {
.red-ui-editableList-border {
border: none;
}
li {
padding: 0 !important;
border: none;
}
.red-ui-editableList-container {
padding: 0;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-file-list-entry {
padding: 3px 0;
2019-05-15 14:54:29 +02:00
border-left: 2px solid $list-item-background;
border-right: 2px solid $list-item-background;
background: $list-item-background;
&.projects-list-entry-current {
&:not(.selectable) {
2019-05-15 14:54:29 +02:00
background: $list-item-background-selected;
}
i {
2019-05-15 14:54:29 +02:00
color: $secondary-text-color-selected;
}
}
&.selectable {
cursor: pointer;
&:hover {
2019-05-15 14:54:29 +02:00
background: $list-item-background-hover;
border-left-color:$list-item-border-selected;
border-right-color:$list-item-border-selected;
}
}
&.unselectable {
2019-05-15 14:54:29 +02:00
color: $secondary-text-color-disabled;
}
i {
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
width: 16px;
text-align: center;
}
&.selected {
2019-05-15 14:54:29 +02:00
background: $list-item-background-selected;
border-left-color:$list-item-border-selected;
border-right-color:$list-item-border-selected;
}
span {
display: inline-block;
vertical-align:middle;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-file-list-entry-folder {
margin: 0 10px 0 0px;
.fa-angle-right {
2019-05-15 14:54:29 +02:00
color: $primary-text-color;
transition: all 0.2s ease-in-out;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-file-list-entry-file {
margin: 0 10px 0 20px;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-file-list-entry-name {
font-size: 1em;
}
&.expanded .fa-angle-right {
transform: rotate(90deg);
}
}
2019-05-15 14:54:29 +02:00
.red-ui-projects-dialog-file-list-entry-file-type-git { color: $tertiary-text-color }
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-remote-list {
.red-ui-editableList-container {
padding: 0;
li {
padding: 0;
border: none;
border-radius: 4px;
overflow: hidden;
}
}
}
2019-05-07 16:47:33 +02:00
div.red-ui-projects-dialog-ssh-public-key {
position: relative;
padding: 15px 20px 0;
pre {
position: relative;
word-break: break-all;
}
&:after {
content: "";
display: table;
clear: both;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-ssh-key-list {
li {
padding: 0 !important;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-ssh-key-header {
padding: 10px 5px;
cursor: pointer;
&:hover {
2019-05-15 14:54:29 +02:00
background: $list-item-background-hover;
}
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-list {
position: relative;
.red-ui-editableList-container {
padding: 1px;
2019-05-15 14:54:29 +02:00
background: $tertiary-background;
li:last-child {
border-bottom: none;
}
}
}
2017-12-08 17:31:42 +01:00
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-list-entry {
&.red-ui-search-empty {
padding: 0;
2017-12-08 17:31:42 +01:00
}
span {
display: inline-block;
}
.entry-icon {
2017-12-08 17:31:42 +01:00
text-align: center;
min-width: 30px;
vertical-align: top;
2019-05-15 14:54:29 +02:00
color: $secondary-text-color;
2017-12-08 17:31:42 +01:00
}
.entry-name {
min-width: 250px;
2017-12-08 17:31:42 +01:00
}
&.current .entry-name {
font-weight: bold;
2017-12-08 17:31:42 +01:00
}
.entry-detail {
2019-05-15 14:54:29 +02:00
color: $tertiary-text-color;
2017-12-08 17:31:42 +01:00
font-size: 0.9em;
}
.entry-remote-name {
min-width: 250px;
2017-12-08 17:31:42 +01:00
}
.entry-tools {
2017-12-08 17:31:42 +01:00
float: right;
margin-right: 10px;
}
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-list-dialog {
position: relative;
margin-top: 10px;
margin-bottom: 20px;
2019-05-15 14:54:29 +02:00
background: $secondary-background;
border-radius: 4px;
border: 1px solid $secondary-border-color;
2019-05-07 16:47:33 +02:00
.red-ui-projects-edit-form-sublabel {
margin-top: -8px !important;
display: block !important;
width: auto !important;
}
&:after {
content: "";
display: table;
clear: both;
}
2019-05-07 16:47:33 +02:00
.red-ui-projects-dialog-list-dialog-header {
font-weight: bold;
2019-05-15 14:54:29 +02:00
background: $primary-background;
margin-top: 0 !important;
padding: 5px 10px;
margin-bottom: 10px;
2017-12-08 17:31:42 +01:00
}
}
#red-ui-settings-tab-gitconfig {
padding: 8px 20px 20px;
}
.red-ui-settings-section-description {
color: $secondary-text-color;
}