Skip to content

Commit

Permalink
scroll bar of JavaFX preview now dark in Darcula theme (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahus1 committed Dec 25, 2019
1 parent a3e61c6 commit d7386d2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ This document provides a high-level view of the changes introduced by release.
[[releasenotes]]
== Release notes

=== 0.30.24 (work in progress)

- scroll bar of JavaFX preview now dark in Darcula theme (#372)

=== 0.30.23 (preview, available from Github releases)

- re-added option in settings to disable showing errors in the editor (#375)
Expand Down
17 changes: 17 additions & 0 deletions src/main/resources/org/asciidoc/intellij/editor/javafx/darcula.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,20 @@ tbody tr th{background:#626262}
#toc {background-color:#626262 !important; border-color:#626262 !important;}

h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{color:#cccccc}

/* scroll bar color change to match the dark scheme */
::-webkit-scrollbar {
width: 12px;
height: 12px;
background-color: inherit;
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border: 2px solid #2c2c2c;
background-color: #404040;
}
::-webkit-scrollbar-track {
width: 12px;
height: 12px;
background-color: #2c2c2c;
}

0 comments on commit d7386d2

Please sign in to comment.