Further projects audit work

This commit is contained in:
Ken Hoes
2016-05-05 15:09:02 -04:00
committed by John Mitchell
parent 1c1dcf3c01
commit 9212568c6e
3 changed files with 17 additions and 5 deletions

View File

@@ -414,6 +414,7 @@ textarea.allowresize {
color: @default-bg; color: @default-bg;
font-weight: 600; font-weight: 600;
border-bottom: none; border-bottom: none;
text-transform: uppercase;
} }
.popover { .popover {
z-index: 2000; z-index: 2000;
@@ -422,9 +423,12 @@ textarea.allowresize {
background-color: @default-interface-txt; background-color: @default-interface-txt;
color: @default-bg; //white color: @default-bg; //white
} }
.popover.right>.arrow:after { .popover.right>.arrow:after {
border-right-color: @default-interface-txt; border-right-color: @default-interface-txt;
} }
.popover.left>.arrow:after {
border-left-color: @default-interface-txt;
}
.popover pre { .popover pre {
white-space: pre-wrap; white-space: pre-wrap;
} }

View File

@@ -161,13 +161,21 @@
.Form-subForm { .Form-subForm {
width: 100%; width: 100%;
border-left: 5px solid @default-border;
padding-left: 15px;
margin-bottom: 15px; margin-bottom: 15px;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
flex-direction: row; flex-direction: row;
justify-content: space-between; justify-content: flex-start;
position: relative;
}
.Form-subForm:before {
content: '';
left: -20px;
position: absolute;
width: 5px;
background-color: @default-border;
height: 100%;
} }
.Form-subForm--title { .Form-subForm--title {

View File

@@ -78,7 +78,7 @@ angular.module('ProjectFormDefinition', ['SchedulesListDefinition'])
}, },
base_dir: { base_dir: {
label: 'Project Base Path', label: 'Project Base Path',
type: 'textarea', type: 'text',
//"class": 'col-lg-6', //"class": 'col-lg-6',
showonly: true, showonly: true,
ngShow: "scm_type.value == 'manual' " , ngShow: "scm_type.value == 'manual' " ,