Skip to content

Commit

Permalink
Minor tweak for dark dividers in community plugins window
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Ango authored and Stephan Ango committed Feb 11, 2022
1 parent 76625e7 commit 5bd3c40
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Minimal.css
Original file line number Diff line number Diff line change
Expand Up @@ -2575,14 +2575,14 @@ input.document-replace-input:focus {
flex: 0 0 270px; }

.community-plugin-search-summary {
border-bottom: 1px solid var(--background-modifier-border);
border-bottom: 1px solid var(--background-divider);
padding-bottom: 10px; }

.community-plugin-item {
margin: 0;
cursor: var(--cursor);
padding-top: 15px;
border-bottom: 1px solid var(--background-modifier-border); }
border-bottom: 1px solid var(--background-divider); }

.community-plugin-item:hover {
background-color: var(--background-tertiary); }
Expand Down
2 changes: 1 addition & 1 deletion obsidian.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2535,14 +2535,14 @@ input.document-replace-input:focus {
flex: 0 0 270px; }

.community-plugin-search-summary {
border-bottom: 1px solid var(--background-modifier-border);
border-bottom: 1px solid var(--background-divider);
padding-bottom: 10px; }

.community-plugin-item {
margin: 0;
cursor: var(--cursor);
padding-top: 15px;
border-bottom: 1px solid var(--background-modifier-border); }
border-bottom: 1px solid var(--background-divider); }

.community-plugin-item:hover {
background-color: var(--background-tertiary); }
Expand Down
2 changes: 1 addition & 1 deletion src/css/main.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/scss/obsidian/settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@
flex:0 0 270px;
}
.community-plugin-search-summary {
border-bottom:1px solid var(--background-modifier-border);
border-bottom:1px solid var(--background-divider);
padding-bottom:10px;
}
.community-plugin-item {
margin:0;
cursor:var(--cursor);
padding-top:15px;
border-bottom:1px solid var(--background-modifier-border);
border-bottom:1px solid var(--background-divider);
}
.community-plugin-item:hover {
background-color:var(--background-tertiary);
Expand Down

0 comments on commit 5bd3c40

Please sign in to comment.