mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-12 02:35:42 +00:00
62 lines
1.2 KiB
SCSS
62 lines
1.2 KiB
SCSS
/* bootstrap4-dark-blue/theme.css */
|
|
|
|
/* Основной класс для Input */
|
|
.p-inputtext {
|
|
display: inline-block;
|
|
width: 100%;
|
|
padding: .375rem .75rem;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
//color: #495057;
|
|
//background-color: #2a2a2a;
|
|
background-clip: padding-box;
|
|
//border: 1px solid #ced4da;
|
|
border-radius: .25rem;
|
|
transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
|
|
}
|
|
|
|
.p-inputtext:focus {
|
|
//color: #495057;
|
|
//background-color: #2a2a2a;
|
|
//border-color: #80bdff;
|
|
outline: 0;
|
|
//box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
|
|
}
|
|
|
|
.p-inputtext::placeholder {
|
|
//color: #6c757d;
|
|
opacity: 1;
|
|
}
|
|
|
|
.p-inputtext:disabled, .p-inputtext[readonly] {
|
|
//background-color: #e9ecef;
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Дополнительные стили для различных состояний */
|
|
.p-inputtext:-moz-placeholder {
|
|
//color: #6c757d;
|
|
opacity: 1;
|
|
}
|
|
|
|
.p-inputtext::-moz-placeholder {
|
|
//color: #6c757d;
|
|
opacity: 1;
|
|
}
|
|
|
|
.p-inputtext:-ms-input-placeholder {
|
|
//color: #6c757d;
|
|
opacity: 1;
|
|
}
|
|
|
|
.p-inputtext::-webkit-input-placeholder {
|
|
//color: #6c757d;
|
|
opacity: 1;
|
|
}
|
|
|
|
.p-inputtext[readonly] {
|
|
//background-color: #e9ecef;
|
|
opacity: 1;
|
|
}
|