mirror of
https://github.com/logseq/logseq.git
synced 2026-05-05 11:26:26 +00:00
enhance(editor): make it easier to edit page's properties (tags, alias)
This commit is contained in:
@@ -31,6 +31,7 @@ html[data-theme=dark] {
|
||||
--ls-secondary-background-color: #023643;
|
||||
--ls-tertiary-background-color: #08404f;
|
||||
--ls-quaternary-background-color: #094b5a;
|
||||
--ls-table-tr-even-background-color: #03333f;
|
||||
--ls-active-primary-color: #8ec2c2;
|
||||
--ls-active-secondary-color: #d0e8e8;
|
||||
--ls-block-properties-background-color: #02222a;
|
||||
@@ -81,6 +82,7 @@ html[data-theme=light] {
|
||||
--ls-secondary-background-color: #dee9f2;
|
||||
--ls-tertiary-background-color: #f0f8ff;
|
||||
--ls-quaternary-background-color: #e1f0fe;
|
||||
--ls-table-tr-even-background-color: #f4f5f7;
|
||||
--ls-active-primary-color: #045591;
|
||||
--ls-active-secondary-color: #003761;
|
||||
--ls-block-properties-background-color: var(--ls-tertiary-background-color);
|
||||
@@ -250,11 +252,6 @@ input {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 2rem 0;
|
||||
border-color: var(--ls-border-color, #ccc);
|
||||
}
|
||||
|
||||
summary {
|
||||
outline: none;
|
||||
}
|
||||
@@ -713,3 +710,9 @@ svg.tip {
|
||||
}
|
||||
|
||||
/* endregion */
|
||||
|
||||
|
||||
hr {
|
||||
margin: 2rem 0;
|
||||
border-color: var(--ls-border-color, #ccc);
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@ td {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {background: var(--ls-quaternary-background-color);}
|
||||
tr:nth-child(even) {background: var(--ls-table-tr-even-background-color);}
|
||||
tr:nth-child(odd) {background: var(--ls-primary-background-color);}
|
||||
|
||||
caption.t-above {caption-side:top}
|
||||
@@ -42,7 +42,7 @@ figcaption{margin-top:.3em}
|
||||
color: var(--ls-primary-text-color);
|
||||
}
|
||||
|
||||
.dark-theme tr:nth-child(even) {background: var(--ls-quaternary-background-color);}
|
||||
.dark-theme tr:nth-child(even) {background: var(--ls-table-tr-even-background-color);}
|
||||
.dark-theme tr:nth-child(odd) {background: var(--ls-primary-background-color);}
|
||||
.dark-theme td, .dark-theme tr {
|
||||
border-bottom: none;
|
||||
|
||||
Reference in New Issue
Block a user