Skip to content
This repository was archived by the owner on Apr 1, 2023. It is now read-only.

Fix file-tree scrollbars styles #538

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/config/default/window_theme/zed_dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ body .ace_line-hover {
body .ace_editor.ace_autocomplete .ace_active-line {
background-color: #555 !important;
}
body .tree,
body .dynatree-container {
background-color: #222;
}
Expand Down
4 changes: 3 additions & 1 deletion app/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ body .ace_autocomplete .ace_line {
bottom: 0;
width: 300px;
border-right: solid 1px black;
background: #fff;
padding: 0;
z-index: 999;
font-family:'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
Expand Down Expand Up @@ -422,6 +421,9 @@ body.custom-scroll ::-webkit-scrollbar-thumb:horizontal {
body.custom-scroll ::-webkit-scrollbar-thumb:hover {
-webkit-box-shadow: inset 0 0 0 1px rgba(128, 128, 128, 0.9), inset 0 0 0 4px rgba(128, 128, 128, 0.9);
}
body.custom-scroll ::-webkit-scrollbar-corner {
background: none;
}
/* Markers */
.marker-highlight-warning {
position: absolute;
Expand Down
1 change: 1 addition & 0 deletions app/css/ui.dynatree.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ul.dynatree-container
border: 1px dotted gray;
overflow: auto;
height: 100%; /* issue 263 */
box-sizing: border-box;
}

ul.dynatree-container ul
Expand Down