-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (57 loc) · 1.23 KB
/
Copy pathstyles.css
File metadata and controls
65 lines (57 loc) · 1.23 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
/* PARA Manager plugin styles */
/**
* Inline message styling for warnings and preview text below settings
*/
.aparatus-inline-message {
margin-top: -8px;
margin-bottom: 16px;
font-size: var(--font-ui-smaller);
color: var(--color-yellow);
}
/**
* Warning state for input fields (folder doesn't exist)
* Yellow border and light yellow background
*/
.aparatus-warning-input {
border-color: var(--color-yellow) !important;
background-color: rgba(var(--color-yellow-rgb), 0.1) !important;
}
/**
* Invalid state for input fields (validation error)
* Red border and light red background
*/
.aparatus-invalid-input {
border-color: var(--text-error) !important;
background-color: rgba(var(--color-red-rgb), 0.1) !important;
}
/**
* Hidden state for inline messages
*/
.aparatus-hidden {
display: none;
}
/**
* Muted text color for inline messages
*/
.aparatus-text-muted {
color: var(--text-muted);
}
/**
* Error text color for inline messages
*/
.aparatus-text-error {
color: var(--text-error);
}
/**
* Warning text color for inline messages
*/
.aparatus-text-warning {
color: var(--color-yellow);
}
/**
* Modal input styling for name input modals
*/
.aparatus-modal-input {
width: 100%;
margin-bottom: 1em;
}