-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Various changes to fix up properties a bit more, making the vault nam…
…e visible, and suggestion dropdowns more visible.
- Loading branch information
Showing
7 changed files
with
114 additions
and
64 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// search suggestions dropdown | ||
// .suggestion-container.mod-search-suggestion { | ||
// border-color: red; | ||
// } | ||
.theme-light { | ||
// border between search options and history in dropdown | ||
.search-suggest-item.mod-group:not(:first-child) { | ||
border-top: 1px solid var(--color-base-90); | ||
} | ||
|
||
// this styles the search dropdown and other suggestion dropdowns (like while | ||
// filling in property details | ||
.suggestion-container, | ||
.suggestion-container.mod-search-suggestion { | ||
// ?????????????????????????? | ||
background-color: var(--background-secondary); | ||
border: 1px solid var(--color-base-90); | ||
color: var(--color-base-40); | ||
|
||
.suggestion { | ||
background-color: var(--background-secondary); | ||
|
||
// ?????????????????????????? | ||
.suggestion-item.is-selected { | ||
background-color: var(--color-accent); | ||
color: var(--color-base-20); | ||
} | ||
|
||
// ----------------------------------------------------------------- | ||
// highlighted (mouseover) styles | ||
// ----------------------------------------------------------------- | ||
// text styles | ||
.suggestion-item.mod-complex.search-suggest-item.is-selected { | ||
// section title - keep same color as non hovered | ||
.suggestion-title.list-item-part.mod-extended { | ||
color: var(--color-base-20); | ||
} | ||
|
||
// normal line of text | ||
.suggestion-title { | ||
// text before colon | ||
color: var(--color-base-00); | ||
// text after colon | ||
.search-suggest-info-text { | ||
color: var(--color-base-20); | ||
} | ||
} | ||
} | ||
|
||
// ----------------------------------------------------------------- | ||
// normal, non-highlighted (non-mouseover) item styles | ||
// ----------------------------------------------------------------- | ||
.suggestion-item { | ||
.suggestion-content { | ||
// section title | ||
.suggestion-title.list-item-part.mod-extended { | ||
color: white; | ||
} | ||
|
||
// normal line of text | ||
.suggestion-title { | ||
// text before colon | ||
color: var(--color-base-40); | ||
|
||
// text after colon | ||
.search-suggest-info-text { | ||
color: var(--color-base-60); | ||
} | ||
} | ||
} | ||
// icons on right of suggestion title | ||
// .suggestion-aux {} | ||
} | ||
} | ||
} | ||
} |
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