base_ui/assets/common/scss/components/_answer-modal.scss
2025-02-01 13:04:55 +03:30

78 lines
1.8 KiB
SCSS

.answer-modal {
padding: 20px 30px;
label {
color: #0d0d0e !important;
}
textarea {
flex: 1;
background: white;
border: 1px solid #f1f1f1;
border-radius: 10px;
min-height: max-content;
// height: 155px;
display: flex;
align-items: center;
padding-right: 25px;
padding-left: 25px;
resize: none;
padding-top: 10px;
/* color: rgba(78, 78, 78, 0.3); */
height: 10em;
// &::-moz-placeholder {
// color: rgba(78, 78, 78, 0.3);
// font-size: 14px;
// opacity: 1;
// }
// &:-ms-input-placeholder {
// color: rgba(78, 78, 78, 0.3);
// font-size: 14px;
// opacity: 1;
// }
// &::placeholder {
// color: rgba(78, 78, 78, 0.3);
// font-size: 14px;
// opacity: 1;
// }
&:focus {
border-radius: 10px;
outline: unset;
border-color: #00b6e3;
}
}
select {
flex: 1;
background: white;
border: 1px solid #f1f1f1;
border-radius: 10px;
height: 40px;
display: flex;
align-items: center;
padding-right: 25px;
padding-left: 25px;
resize: none;
/* color: rgba(78, 78, 78, 0.3); */
font-size: 14px;
&:focus {
border-radius: 10px;
outline: unset;
border-color: #00b6e3;
}
}
input {
// &::-moz-placeholder {
// color: rgba(78, 78, 78, 0.3) !important;
// font-size: 14px;
// opacity: 1;
// }
// &:-ms-input-placeholder {
// color: rgba(78, 78, 78, 0.3) !important;
// font-size: 14px;
// opacity: 1;
// }
// &::placeholder {
// color: rgba(78, 78, 78, 0.3) !important;
// font-size: 14px;
// opacity: 1;
// }
}
}