generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
68 lines (59 loc) · 1.28 KB
/
styles.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
.repeat-message {
text-align: center;
margin-top: 24px;
}
.repeat-buttons {
text-align: center;
margin-bottom: 24px;
}
.repeat-buttons > button {
margin-top: 16px;
margin-left: 16px;
}
.repeat-buttons > button:first-child {
margin-left: 0;
}
/* Make buttons legible on mobile. */
@media (max-width: 450px) {
.repeat-buttons > button {
width: 100%;
margin-left: 0;
}
}
.repeat-embedded_note {
padding: 15px 30px;
max-width: var(--file-line-width);
margin-left: auto;
margin-right: auto;
}
.repeat-markdown_embed_title {
text-overflow: inherit;
white-space: normal;
}
.repeat-setup_modal {
margin-top: 24px;
}
.repeat-markdown_blurred {
filter: blur(5px);
}
/* Transferred from Obsidian's input[] styles. */
.repeat-date_picker {
background: var(--background-modifier-form-field);
border: 1px solid var(--background-modifier-border);
color: var(--text-normal);
font-family: inherit;
padding: 5px 14px;
font-size: 16px;
border-radius: 4px;
outline: none;
height: 39px; /* Deduced experimentally. */
}
.repeat-date_picker:hover {
background-color: var(--background-modifier-form-field-highlighted);
}
.repeat-date_picker:focus {
border-color: var(--interactive-accent);
}
.repeat-date_picker:::placeholder {
color: var(--text-faint);
}