Files
Backend-Api/ServiceHost/wwwroot/AssetsClient/css/ticket-create.css
2024-07-21 21:05:30 +03:30

205 lines
3.2 KiB
CSS

.ticketModal .modal-xl-ticketModal{
max-width: 900px;
}
#Ticket_step1 {
position: absolute;
top: 0;
right: 0;
height: 100%;
backdrop-filter: blur(7px);
z-index: 5;
}
.btn-ticket-container {
display: flex;
}
.btn1-ticket,
.btn2-ticket {
font-size: 13px;
font-weight: 500;
color: #ffffff;
background-color: #23A8A8;
text-align: center;
padding: 8px 16px;
border-radius: 4px;
margin: auto 6px;
transition: all .3s ease-in-out;
}
.btn1-ticket:hover,
.btn2-ticket:hover {
background-color: #1c7474;
}
.textTitle1 {
color: #313131;
font-size: 14px;
font-weight: 600;
}
.textTitle2 {
color: #313131;
font-size: 13px;
font-weight: 500;
}
.btn-ticket {
position: absolute;
bottom: 0;
left: 0;
width: 38px;
height: 38px;
border-radius: 7px;
background-color: #ffffff;
box-shadow: 0px 4px 16px #494949;
}
.screenshot-border {
border: 2px dashed #C4C4C4;
border-radius: 5px;
height: 97%;
}
.form-control,
.form-select {
color: #797979;
border: 1px solid #DADADA;
border-radius: 7px;
background-color: #F6F6F6;
font-size: 13px;
font-weight: 500;
}
.ticket-descr {
color: #797979;
width: 100%;
border: 1px solid #DADADA;
border-radius: 7px;
background-color: #F6F6F6;
font-size: 13px;
font-weight: 500;
}
.upload-file {
width: 100%;
border-radius: 8px;
background: linear-gradient(94deg, #2EBEBE 1.59%, #1E9D9D 47.86%, #0B7878 101.16%);
color: #ffffff;
font-size: 12px;
font-weight: 500;
padding: 7px 10px;
}
.upload-file.empty-file
{
background: white;
outline: 1px solid #C4C4C4;
color: #7A7474;
}
.upload-box-container {
justify-content: start;
}
.upload-box {
position: relative;
width: 40px;
height: 40px;
border: 2px dashed #C4C4C4;
border-radius: 7px;
}
.upload-box svg {
position: absolute;
top: -5px;
right: -5px;
}
.upload-box-voice {
position: relative;
width: 100%;
height: 40px;
border: 2px dashed #C4C4C4;
border-radius: 7px;
}
.upload-voice {
width: 100%;
margin: 1%;
border: 2px dashed #BFBFBF !important;
border-radius: 10px;
min-height: auto !important;
padding: 18px 10px !important;
}
.btn-voice {
width: 100%;
background-color: transparent;
border-radius: 10px;
}
.btn-cancel2 {
background-color: #1F2937;
color: #ffffff;
padding: 7px 15px;
border-radius: 5px;
width: 100%;
}
.btn-cancel2:hover {
background-color: #121820;
}
.btn-ticket-save {
background-color: #84CC16;
color: #ffffff;
padding: 7px 15px;
border-radius: 5px;
width: 100%;
}
.btn-ticket-save:hover {
background-color: #629b0c;
}
@media (max-width:992px) {
.screenshot-border {
height: 200px;
order: 3;
}
.upload-box-container {
justify-content: center;
margin: 5px 0;
}
}
@media (max-width:768px) {
.btn1-ticket,
.btn2-ticket {
width: 100%;
margin: 5px auto;
}
.btn-ticket-container {
display: flex;
flex-direction: column;
}
}
@media (max-width:534px) {
.btn-ticket-container {
width: 100%;
}
}