1
|
.popup-form {
|
2
|
&.confirm {
|
3
|
.p-dialog .p-dialog-footer .p-button {
|
4
|
@extend .p-button-primary;
|
5
|
@extend .dark;
|
6
|
@include media-breakpoint-down(sm) {
|
7
|
margin: 5px 10px;
|
8
|
}
|
9
|
}
|
10
|
}
|
11
|
|
12
|
h3 {
|
13
|
margin-top: $grid-gutter-width / 2;
|
14
|
text-align: center;
|
15
|
font-size: 24px;
|
16
|
}
|
17
|
|
18
|
hr {
|
19
|
background: #F2F2F2;
|
20
|
}
|
21
|
|
22
|
.p-dialog {
|
23
|
width: 100vw;
|
24
|
|
25
|
@include media-breakpoint-up(md) {
|
26
|
width: 50vw;
|
27
|
}
|
28
|
|
29
|
.p-dialog-header, .p-dialog-content, .p-dialog-footer {
|
30
|
background: $primary;
|
31
|
}
|
32
|
|
33
|
.p-dialog-header {
|
34
|
justify-content: center;
|
35
|
border-color: #F2F2F2;
|
36
|
}
|
37
|
|
38
|
.p-dialog-title {
|
39
|
color: #F2F2F2;
|
40
|
font-size: 28px;
|
41
|
|
42
|
@include media-breakpoint-down(xs) {
|
43
|
font-size: 24px;
|
44
|
}
|
45
|
}
|
46
|
|
47
|
.p-dialog-footer {
|
48
|
border-color: #F2F2F2;
|
49
|
text-align: center;
|
50
|
|
51
|
@include media-breakpoint-down(xs) {
|
52
|
.p-button {
|
53
|
margin: 5px 0;
|
54
|
}
|
55
|
}
|
56
|
}
|
57
|
}
|
58
|
|
59
|
.form-control, select {
|
60
|
border-color: #F2F2F2;
|
61
|
background-color: #F2F2F2;
|
62
|
}
|
63
|
|
64
|
.input-group-prepend span {
|
65
|
padding-right: 18px;
|
66
|
padding-left: 18px;
|
67
|
border-color: $terciary;
|
68
|
color: #F2F2F2;
|
69
|
background: $terciary;
|
70
|
|
71
|
@include media-breakpoint-down(xs) {
|
72
|
padding-left: 10px;
|
73
|
padding-right: 10px;
|
74
|
}
|
75
|
}
|
76
|
}
|
77
|
|
78
|
.popup-sensors-wrapper {
|
79
|
justify-content: center;
|
80
|
}
|
81
|
|
82
|
.popup-sensor {
|
83
|
margin: 0 10px;
|
84
|
}
|
85
|
|
86
|
.popup-buttons-wrapper {
|
87
|
display: flex;
|
88
|
justify-content: space-between;
|
89
|
|
90
|
@include media-breakpoint-down(sm) {
|
91
|
flex-direction: column;
|
92
|
}
|
93
|
|
94
|
}
|
95
|
|
96
|
.popup-buttons-group {
|
97
|
@include media-breakpoint-down(md) {
|
98
|
display: flex;
|
99
|
justify-content: space-between;
|
100
|
width: 100%;
|
101
|
|
102
|
&:first-child {
|
103
|
margin-bottom: 10px;
|
104
|
}
|
105
|
}
|
106
|
}
|
107
|
|
108
|
.popup-buttons {
|
109
|
display: flex;
|
110
|
justify-content: flex-end;
|
111
|
flex-wrap: wrap;
|
112
|
width: 100%;
|
113
|
|
114
|
@include media-breakpoint-down(xs) {
|
115
|
justify-content: space-between;
|
116
|
}
|
117
|
}
|