funky-framadate-front/src/app/features/administration/form/date-select/date-select.component.scss

56 lines
999 B
SCSS
Raw Normal View History

:host {
2021-02-09 12:31:33 +01:00
.time-choice {
2021-05-03 15:34:26 +02:00
background: rgba(255, 255, 255, 1);
//border: solid 1px #dedede;
2021-02-09 12:31:33 +01:00
padding: 0.5em;
//padding: 20px 10px;
border-bottom: solid 1px #ccc;
color: rgba(0, 0, 0, 0.87);
box-sizing: border-box;
cursor: move;
background: white;
font-size: 14px;
2021-05-03 15:34:26 +02:00
padding-top: 1em;
padding-bottom: 1em;
input {
display: inline-block;
width: 70% !important;
margin-right: 1ch;
margin-left: 1ch;
}
.button {
margin: 0;
}
2021-02-09 12:31:33 +01:00
}
.btn i + span {
margin-left: 1ch;
}
.btn + .btn {
margin-left: 1em;
}
2021-02-09 12:10:10 +01:00
.cdk-drag-preview {
box-sizing: border-box;
border-radius: 4px;
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14),
0 3px 14px 2px rgba(0, 0, 0, 0.12);
border: 2px solid #ccc;
2021-05-03 15:34:26 +02:00
background: blue;
display: block;
2021-02-09 12:10:10 +01:00
}
.cdk-drag-placeholder {
* {
opacity: 0;
}
2021-02-09 12:31:33 +01:00
background: #dedede;
2021-02-09 12:10:10 +01:00
}
.cdk-drag-animating {
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.movable {
cursor: move;
}
}