mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-26 09:27:54 +00:00
92 lines
1.6 KiB
SCSS
92 lines
1.6 KiB
SCSS
/** Style **/
|
|
|
|
|
|
select#Duration_unit {
|
|
padding: 0 52px 0 5px;
|
|
}
|
|
|
|
select#Lag_unit {
|
|
padding: 0 52px 0 5px;
|
|
}
|
|
|
|
.projects-gantt-chart-popup fieldset > table tr > td {
|
|
display: block;
|
|
float: left;
|
|
width: 50%;
|
|
}
|
|
|
|
/** make align with task name **/
|
|
.projects-gantt-chart-popup table > tbody > tr > td:nth-of-type(2) {
|
|
padding-top: $input-line-height + 4px;
|
|
}
|
|
|
|
|
|
#dialog .projects-gantt-chart-popup input.text {
|
|
width: auto;
|
|
}
|
|
|
|
#dialog .projects-gantt-chart-popup input#Lag[type=text] {
|
|
width: 72px;
|
|
}
|
|
|
|
#dialog .projects-gantt-chart-popup input#Duration[type=text] {
|
|
width: 72px;
|
|
}
|
|
|
|
input#Resources {
|
|
width: auto;
|
|
}
|
|
|
|
input[type=radio]#Milestone {
|
|
line-height: $input-line-height;
|
|
}
|
|
|
|
label#Milestone_label {
|
|
line-height: $input-line-height;
|
|
}
|
|
|
|
input[type=radio]#Subtask {
|
|
line-height: $input-line-height;
|
|
}
|
|
|
|
label#Subtask_label {
|
|
line-height: $input-line-height;
|
|
}
|
|
|
|
.projects-gantt-chart-popup label {
|
|
display: inline-block;
|
|
}
|
|
|
|
.projects-gantt-chart-popup input[type=radio]#Milestone {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
/** fix popup message **/
|
|
.blockMsg h1 {
|
|
font-size: $page-font-size;
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
a#create_link.utilsLink {
|
|
font-size: $page-font-size;
|
|
font-weight: 500;
|
|
background: $danger-btn-bg;
|
|
color: $default-btn-color;
|
|
cursor: pointer;
|
|
padding: 5px 20px 5px 20px;
|
|
margin: 0 0 0 0;
|
|
border: none;
|
|
border-radius: 3px;
|
|
letter-spacing: 1px;
|
|
line-height: $button-line-height;
|
|
height: $button-line-height;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
a#create_link.utilsLink:hover {
|
|
background-color: $danger-btn-bg-hover;
|
|
|
|
}
|