-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.css
85 lines (71 loc) · 1.35 KB
/
options.css
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
74
75
76
77
78
79
80
81
82
83
84
85
:root {
--gutter-size: 10px;
--input-height: 2rem;
--label-width: 7rem;
}
.options-form,
.options-form * {
box-sizing: border-box;
}
.options-form {
margin-bottom: 15px;
}
.form-row {
display: flex;
align-items: center;
}
.form-row + .form-row {
margin-top: var(--gutter-size);
}
.form-row > .input-label {
margin-right: var(--gutter-size);
display: inline-block;
font-size: 1rem;
width: var(--label-width);
text-align: right;
}
.form-row > input {
margin: 0 var(--gutter-size);
height: var(--input-height);
}
.form-row > button {
margin: var(--gutter-size) var(--gutter-size) 0 calc(var(--label-width) + 2 * var(--gutter-size));
height: var(--input-height);
}
input[type=radio],
.xdebug-session-icon {
vertical-align: middle;
}
.xdebug-session-icon {
height: var(--input-height);
}
.message-container {
position: relative;
height: 3.1rem;
}
.message {
border-radius: 3px;
color: #fff;
padding: 15px;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
z-index: -1;
transition: opacity 0.3s;
}
.saved-successfully {
background-color: #16a085;
}
.saved-error {
background-color: #c0392b;
}
.is-visible {
opacity: 1;
z-index: 2;
}