-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
37 lines (30 loc) · 716 Bytes
/
Copy pathstyles.css
File metadata and controls
37 lines (30 loc) · 716 Bytes
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
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
/* Hide the default file input */
.file-input-hidden {
display: none;
}
/* Style the label to look like a button */
.file-input-label {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
border: none;
border-radius: var(--radius-s);
padding: 5px 10px;
cursor: pointer;
font-size: 14px;
}
/* Style for the text displaying the selected file name */
.file-name-display {
margin-left: 10px;
font-size: 14px;
color: var(--text-muted);
}
.setting-item-info-div {
flex: auto;
flex-direction: column;
display: flex;
}