-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2817 from the-deep/feature/untagged-entries
Add error messages for incompatible sources and add a tag for untagged entries
- Loading branch information
Showing
6 changed files
with
246 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,90 @@ | ||
.entry-input { | ||
display: flex; | ||
flex-shrink: 0; | ||
background-color: var(--dui-color-foreground); | ||
height: var(--height-entry-item); | ||
overflow-y: auto; | ||
flex-direction: column; | ||
--height-entry-item: 360px; | ||
--inner-width: 25%; | ||
|
||
&.compact { | ||
--height-entry-item: initial; | ||
--inner-width: unset; | ||
flex-direction: column; | ||
.tag { | ||
flex-shrink: 0; | ||
} | ||
|
||
.heading-section { | ||
overflow: visible; | ||
.content { | ||
display: flex; | ||
flex-shrink: 0; | ||
background-color: var(--dui-color-foreground); | ||
height: var(--height-entry-item); | ||
overflow-y: auto; | ||
|
||
.heading { | ||
display: flex; | ||
align-items: baseline; | ||
gap: var(--dui-spacing-medium); | ||
&.compact { | ||
--height-entry-item: initial; | ||
--inner-width: unset; | ||
flex-direction: column; | ||
} | ||
|
||
.entry-id { | ||
color: var(--dui-color-accent); | ||
font-weight: var(--dui-font-weight-bold); | ||
} | ||
.heading-section { | ||
overflow: visible; | ||
|
||
.unsaved-entry { | ||
color: var(--dui-color-text-description); | ||
font-weight: var(--dui-font-weight-light); | ||
font-style: italic; | ||
} | ||
} | ||
} | ||
.heading { | ||
display: flex; | ||
align-items: baseline; | ||
gap: var(--dui-spacing-medium); | ||
|
||
.excerpt { | ||
background-color: var(--dui-color-foreground); | ||
width: var(--inner-width); | ||
.entry-id { | ||
color: var(--dui-color-accent); | ||
font-weight: var(--dui-font-weight-bold); | ||
} | ||
|
||
.header-actions { | ||
flex-wrap: wrap; | ||
.unsaved-entry { | ||
color: var(--dui-color-text-description); | ||
font-weight: var(--dui-font-weight-light); | ||
font-style: italic; | ||
} | ||
} | ||
} | ||
|
||
.excerpt-content { | ||
display: flex; | ||
flex-direction: column; | ||
flex-grow: 1; | ||
overflow-y: auto; | ||
.excerpt { | ||
background-color: var(--dui-color-foreground); | ||
width: var(--inner-width); | ||
|
||
.excerpt-input { | ||
.header-actions { | ||
flex-wrap: wrap; | ||
} | ||
|
||
.excerpt-content { | ||
display: flex; | ||
flex-direction: column; | ||
flex-grow: 1; | ||
overflow-y: auto; | ||
|
||
.excerpt-input { | ||
flex-grow: 1; | ||
} | ||
} | ||
} | ||
} | ||
|
||
&.horizontal { | ||
flex-direction: row; | ||
.excerpt { | ||
width: 100%; | ||
max-width: 30rem; | ||
&.horizontal { | ||
flex-direction: row; | ||
.excerpt { | ||
width: 100%; | ||
max-width: 30rem; | ||
} | ||
} | ||
} | ||
|
||
.section { | ||
background-color: var(--dui-color-foreground); | ||
width: var(--inner-width); | ||
.section { | ||
background-color: var(--dui-color-foreground); | ||
width: var(--inner-width); | ||
|
||
&.compact { | ||
border-bottom: var(--dui-width-separator-thin) solid var(--dui-color-separator); | ||
} | ||
&.horizontal { | ||
border-bottom: unset; | ||
&.compact { | ||
border-bottom: var(--dui-width-separator-thin) solid var(--dui-color-separator); | ||
} | ||
&.horizontal { | ||
border-bottom: unset; | ||
} | ||
} | ||
} | ||
|
||
.secondary-tagging { | ||
background-color: var(--dui-color-foreground); | ||
width: var(--inner-width); | ||
.secondary-tagging { | ||
background-color: var(--dui-color-foreground); | ||
width: var(--inner-width); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.