general.css
1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* Диалог модал */
.modal-dialog{
border-radius: 10px;
}
.modal-dialog .modal-dialog-footer{
display: flex;
justify-content: space-between;
}
.modal-dialog .modal-dialog-footer.center{
display: flex;
justify-content: center;
}
.modal-dialog .modal-dialog-title h2{
font-weight: bold;
font-size: 24px;
text-align: center;
}
.modal-dialog .modal-dialog-body{
padding-top: 20px;
padding-bottom: 20px;
}
.modal-dialog .modal-dialog-footer .button-admin{
padding: 5px 10px;
border: 1px #000 solid;
border-radius: 8px;
}
/* Конец Диалог модал */
.button-loader {
display: inline-block;
border: 2px solid #f3f3f3;
-webkit-animation: spin 1s linear infinite;
animation: spin 1s linear infinite;
border-top: 2px solid #555;
border-radius: 50%;
width: 20px;
height: 20px;
margin-right: 10px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.error-block{
color:red;
padding: 0;
width: 100%;
}
.review-image-modal{
cursor: pointer;
}
.cabinet__export-options-wrap {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scroll-behavior: smooth;
gap: 10px;
}
.cabinet__export-options-wrap::-webkit-scrollbar {
display: none;
}
@media (min-width: 768px) {
.cabinet__export-options-wrap {
flex-wrap: wrap;
overflow-x: visible;
gap: 20px;
}
}