2020-03-05 06:26:01 +08:00
|
|
|
// scss-lint:disable SelectorDepth QualifyingElement NestingDepth
|
|
|
|
|
2020-02-26 22:40:28 +08:00
|
|
|
#create-task-modal {
|
|
|
|
.modal-dialog {
|
|
|
|
width: 360px;
|
|
|
|
|
|
|
|
.description {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-block {
|
|
|
|
display: inline-block;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
label {
|
|
|
|
@include font-small;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2020-03-10 20:16:56 +08:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
display: block;
|
|
|
|
color: $brand-danger;
|
|
|
|
content: attr(data-error);
|
|
|
|
}
|
2020-02-26 22:40:28 +08:00
|
|
|
}
|
|
|
|
|
2020-03-05 06:26:01 +08:00
|
|
|
.dropdown-selector-container {
|
|
|
|
.create-new {
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
2023-08-12 00:47:02 +08:00
|
|
|
|
|
|
|
.dropdown-option {
|
2023-08-24 21:49:22 +08:00
|
|
|
&[data-value = '0'] {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: clip;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2023-08-12 00:47:02 +08:00
|
|
|
}
|
2020-03-05 06:26:01 +08:00
|
|
|
}
|
|
|
|
|
2020-03-10 20:16:56 +08:00
|
|
|
.new-projects-visibility {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-03-05 06:26:01 +08:00
|
|
|
.project-visibility-container {
|
|
|
|
display: inline-block;
|
2020-03-10 20:16:56 +08:00
|
|
|
width: 260px;
|
2020-03-05 06:26:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.project-visibility-title {
|
|
|
|
@include font-small;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sci-toggles-group {
|
|
|
|
.sci-toggle-item {
|
2020-03-10 20:16:56 +08:00
|
|
|
width: 130px;
|
2020-03-05 06:26:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.sci-toggle-item-label {
|
2020-03-10 20:16:56 +08:00
|
|
|
margin-left: -130px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
width: 130px;
|
2020-03-05 06:26:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-26 22:40:28 +08:00
|
|
|
.modal-footer {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|