argos/dmp-frontend/src/app/ui/admin/dmp-blueprint/editor/dmp-blueprint-editor.compon...

164 lines
2.9 KiB
SCSS
Raw Normal View History

2024-03-13 08:46:16 +01:00
::ng-deep label {
// display:block !important;
margin-bottom: 0 !important;
}
.dmp-blueprint-editor {
2024-03-13 08:46:16 +01:00
// margin-top: 1.3rem;
// margin-left: 1em;
// margin-right: 3em;
// padding-top: 1.3rem;
// padding-left: 1em;
// padding-right: 3em;
// box-sizing: border-box !important;
2019-06-05 16:07:36 +02:00
.remove {
background-color: white;
color: black;
}
.add {
background-color: white;
color: #009700;
}
}
2024-01-25 17:08:47 +01:00
.drag-handle {
cursor: move;
color: var(--primary-color);
}
.drag-handle-disabled {
cursor: auto;
color: rgba(0, 0, 0, 0.38);;
}
2019-06-05 16:07:36 +02:00
::ng-deep .mat-checkbox-checked.mat-accent .mat-checkbox-background, .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background {
2023-02-10 14:08:23 +01:00
background-color: var(--primary-color-3);
2019-09-19 12:00:00 +02:00
// background-color: #0070c0;
2019-06-05 16:07:36 +02:00
}
::ng-deep .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
background-color: #b0b0b0;
2019-01-18 18:03:45 +01:00
}
2021-06-22 15:48:46 +02:00
.finalize-btn {
border-radius: 30px;
2023-02-10 14:08:23 +01:00
border: 1px solid var(--primary-color);
2021-06-22 15:48:46 +02:00
background: transparent;
padding-left: 2em;
padding-right: 2em;
box-shadow: 0px 3px 6px #1E202029;
2023-02-10 14:08:23 +01:00
color: var(--primary-color);
2021-06-22 15:48:46 +02:00
&:disabled{
background-color: #CBCBCB;
color: #FFF;
border: 0px;
}
}
.action-btn {
border-radius: 30px;
2023-02-10 14:08:23 +01:00
background-color: var(--secondary-color);
2021-06-22 15:48:46 +02:00
border: 1px solid transparent;
padding-left: 2em;
padding-right: 2em;
box-shadow: 0px 3px 6px #1E202029;
transition-property: background-color, color;
transition-duration: 200ms;
transition-delay: 50ms;
transition-timing-function: ease-in-out;
&:disabled{
background-color: #CBCBCB;
color: #FFF;
border: 0px;
}
}
.dlt-section-btn {
margin: 0;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.section-input {
position: relative;
}
.section-input .arrows {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
}
.action-list-item{
display: flex;
align-items: center;
cursor: pointer;
.action-list-icon{
font-size: 1.2em;
// padding-right: 1em;
2023-10-25 16:47:48 +02:00
// width: 14px;
// margin-right: 0.5em;
// margin-left: -.09em;
// height: auto;
color: var(--primary-color);
}
.action-list-text{
font-size: 1em;
color: var(--primary-color);
}
}
2023-08-03 12:10:36 +02:00
.field-delete{
align-items: center;
display: flex;
cursor: pointer;
.field-delete-icon{
font-size: 1.2em;
width: 14px;
color: var(--primary-color);
}
.field-delete-text{
font-size: 1em;
margin-left: 0.5em;
color: var(--primary-color);
}
}
2024-03-22 10:48:54 +01:00
.description-fields-wrapper,
.section-fields-wrapper {
width: 100%;
.section-options-vertical {
display: none;
}
.section-options-horizontal {
display: initial;
}
2024-03-21 11:48:36 +01:00
@media (max-width: 1200px) {
flex-direction: column;
align-items: flex-start;
.section-options-horizontal {
display: none;
}
.section-options-vertical {
display: initial;
}
2024-03-19 09:47:50 +01:00
}
}