-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathSupportForm.module.css
More file actions
98 lines (92 loc) · 1.94 KB
/
SupportForm.module.css
File metadata and controls
98 lines (92 loc) · 1.94 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
.TextArea {
width: 100%;
height: 6rem;
resize: none;
border-radius: 0.25rem;
padding: 0.25rem 0.5rem;
border: none;
line-height: 1.25rem;
font-family: var(--font-family-default);
font-size: var(--font-size-regular);
background-color: var(--support-form-text-area-background-color);
border: 1px solid transparent;
color: var(--support-form-color);
caret-color: var(--support-form-color);
}
.TextArea:disabled {
opacity: 0.5;
}
.TextArea:focus {
box-shadow: none;
outline-offset: 0;
outline: 1px solid var(--focus-ring-input);
border: 1px solid var(--focus-ring-input);
}
.TextArea::placeholder {
color: var(--color-dimmer);
}
.FormActions {
display: flex;
flex-direction: row;
align-items: center;
gap: 1ch;
height: 2rem;
}
.CancelCloseButton,
.CloseButton,
.SubmitButton {
padding: 0.5rem 0.75rem;
border-radius: 0.5rem;
cursor: pointer;
font-weight: bold;
}
.CancelCloseButton {
background-color: var(--support-form-modal-background-color);
color: var(--primary-accent);
border: 2px solid var(--primary-accent);
}
.CancelCloseButton:hover {
color: var(--primary-accent-hover);
border: 2px solid var(--primary-accent-hover);
}
.CloseButton {
background-color: var(--secondary-accent);
color: var(--primary-accent-foreground-text);
}
.CloseButton:hover {
background-color: var(--secondary-accent-hover);
}
.SubmitButton {
background-color: var(--primary-accent);
color: var(--primary-accent-foreground-text);
}
.SubmitButton:hover {
background-color: var(--primary-accent-hover);
}
.CancelCloseButton:disabled,
.SubmitButton:disabled {
opacity: 0.5;
}
.ConfirmationMessage {
text-align: center;
}
.Form {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.25rem;
}
.ShareOption {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
gap: 0.25ch;
}
.ShareOption[data-disabled] {
opacity: 0.5;
}
.Checkbox:disabled {
opacity: 0.5;
}