lostpaul_obsidian-folder-notes/styles.css

85 lines
1.7 KiB
CSS
Raw Normal View History

2023-03-27 10:56:32 +00:00
.nav-folder-title-content.has-folder-note {
2023-03-12 16:11:05 +00:00
flex-grow: 1;
padding-bottom: 4px;
padding-top: 4px;
}
2023-03-20 21:41:24 +00:00
.folder-note-underline .has-folder-note.nav-folder-title-content {
text-decoration-line: underline;
text-decoration-color: var(--text-faint);
text-decoration-thickness: 2px;
text-underline-offset: 1px;
}
2023-03-27 10:56:32 +00:00
.nav-folder-title:has(.has-folder-note) {
2023-03-12 16:11:05 +00:00
padding-bottom: 0;
padding-top: 0;
}
.hide-folder-note .is-folder-note {
display: none;
2023-03-19 20:05:16 +00:00
}
.nav-folder-collapse-indicator:hover {
cursor: pointer;
}
2023-03-17 21:58:27 +00:00
.fn-exclude-folder-list-item {
2023-03-18 21:56:11 +00:00
display: flex;
align-items: center;
padding: 0.75rem 0;
2023-03-19 20:05:16 +00:00
border-top: none;
padding-top: 0;
2023-03-18 21:56:11 +00:00
}
.fn-exclude-folder-path {
width: calc(100% - 20px);
2023-03-17 21:58:27 +00:00
}
2023-03-18 21:56:11 +00:00
.fn-exclude-folder-list-item .setting-item-control {
2023-03-19 20:05:16 +00:00
width: 100%;
2023-03-18 21:56:11 +00:00
justify-content: flex-end;
flex: 1 1 auto;
display: flex;
2023-03-17 21:58:27 +00:00
}
2023-03-20 21:41:24 +00:00
.fn-exclude-folder-list-item>*.last-child {
2023-03-18 21:56:11 +00:00
margin-right: 0;
2023-03-19 12:35:04 +00:00
}
.fn-confirmation-modal {
padding-bottom: 0;
}
:not(.is-phone) .fn-confirmation-modal-button {
2023-03-19 12:35:04 +00:00
margin-right: 0.7rem;
2023-03-20 21:41:24 +00:00
}
:not(.is-phone) .fn-delete-confirmation-modal-buttons {
2023-03-20 21:41:24 +00:00
display: flex;
align-items: center;
margin-top: 10px;
}
.fn-delete-confirmation-modal-buttons span:hover,
.fn-delete-confirmation-modal-buttons input:hover {
cursor: pointer;
}
:not(.is-phone) .fn-delete-confirmation-modal-buttons .fn-confirmation-modal-button {
2023-03-20 21:41:24 +00:00
margin-left: auto;
}
2023-03-20 21:41:24 +00:00
:not(.is-phone) .fn-delete-confirmation-modal-buttons input[type="checkbox"] {
2023-03-20 21:41:24 +00:00
margin-right: 5px;
2023-03-23 07:56:11 +00:00
}
.is-phone .fn-delete-confirmation-modal-buttons {
display: flex;
flex-direction: column;
align-items: center;
}
.is-phone .fn-delete-confirmation-modal-buttons .fn-confirmation-modal-button {
margin-top: 10px;
2023-03-12 16:11:05 +00:00
}