-
Notifications
You must be signed in to change notification settings - Fork 4
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 #6 from lazercaveman/develop
Develop
- Loading branch information
Showing
18 changed files
with
383 additions
and
194 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
## [1.0.3] - 10.09.2021 | ||
### Added | ||
- Styling for inline-code-blocks | ||
- Customized styling of right sidebar and related content | ||
### Changed | ||
- Updated Colors of h1 and h2 to be more consistent according to colors of other headlines | ||
- Updated Colors of anker Tags to be moire visible | ||
- Adjusted positioning and dimendions of nav-header and contained items | ||
### Fixed | ||
- Nav-Header items where visualized as active, when they wherent. | ||
|
||
## [1.0.2] - 10.09.2021 | ||
### Fixed | ||
- Fixed Error with Code-Blocks background color, where code-lines overlap each other | ||
### Changed | ||
- Updated Colors | ||
- Updated Font-Sizes | ||
- Adjusted margin of some elements | ||
- Updated installation instructions within README.md | ||
|
||
## [1.0.1] - 10.09.2021 | ||
### Added | ||
- Added initial styling for obsidian settings | ||
|
||
## [1.0.0] - 10.09.2021 | ||
### Added | ||
- Screenshot for preview | ||
- Readme with description, credits, and so on | ||
- Basic Scss architecture for managing theme styling | ||
- initialized repo |
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
.cm-s-obsidian { | ||
|
||
pre.HyperMD-codeblock { | ||
font-family: font(family, secondary); | ||
font-size: font(size, small); | ||
font-weight: 500; | ||
line-height: font(lineheight, max); | ||
// DEBUG: setting a background-color is currently leading to text-selections is overlayed by the background https://forum.obsidian.md/t/inline-code-occludes-text-selection-and-vim-cursor/11552/8 | ||
// background-color: color(primary, 1100); | ||
} | ||
|
||
.cm-hmd-codeblock { | ||
color: color(text, code); | ||
} | ||
|
||
.CodeMirror-linenumber { | ||
color: color(primary, 100); | ||
font-size: font(size, regular); | ||
} | ||
|
||
span.cm-inline-code { | ||
color: color(text, code); | ||
} | ||
|
||
// Markup-Styling | ||
span { | ||
&.cm-tag { | ||
color: color(element, markup-tags); | ||
} | ||
&.cm-attribute { | ||
color: color(element, markup-attribute); | ||
} | ||
&.cm-string { | ||
color: color(element, markup-attribute-value); | ||
} | ||
} | ||
|
||
} |
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,12 @@ | ||
.cm-s-obsidian { | ||
|
||
.CodeMirror-gutter-elt { | ||
padding-right: 10px; | ||
} | ||
|
||
.cm-formatting, | ||
.CodeMirror-foldmarker { | ||
color: color(primary, 100); | ||
} | ||
|
||
} |
Oops, something went wrong.