blob: 8b7288be83b8b0fa9eb5b67bcfe67b0236d5efa6 (
plain)
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
|
.vc-st-modal-content input {
background-color: var(--input-background);
color: var(--text-normal);
width: 95%;
padding: 8px 8px 8px 12px;
margin: 1em 0;
outline: none;
border: 1px solid var(--input-background);
border-radius: 4px;
font-weight: 500;
font-style: inherit;
font-size: 100%;
}
.vc-st-format-label,
.vc-st-format-label span {
background-color: transparent;
}
.vc-st-modal-content [class|="select"] {
margin-bottom: 1em;
}
.vc-st-modal-content [class|="select"] span {
background-color: var(--input-background);
}
.vc-st-modal-header {
justify-content: space-between;
align-content: center;
}
.vc-st-modal-header h1 {
margin: 0;
}
.vc-st-modal-header button {
padding: 0;
}
.vc-st-preview-text {
margin-bottom: 1em;
}
.vc-st-button {
padding: 0 8px;
}
.vc-st-button svg {
transform: scale(1.1) translateY(1px);
}
|