mirror of
https://github.com/prncc/obsidian-repeat-plugin.git
synced 2026-07-22 06:50:25 +00:00
64 lines
1.2 KiB
CSS
64 lines
1.2 KiB
CSS
.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;
|
|
}
|
|
|
|
/* 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);
|
|
}
|