Skip to content

Commit

Permalink
Merge pull request #177 from danaholdt/patch-1
Browse files Browse the repository at this point in the history
dm-horizontal-scroll-height-update
  • Loading branch information
TheWebTech authored Dec 13, 2018
2 parents f4cf41a + 1a7d3b8 commit 398f7f9
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions hsDarkIde.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,44 @@ body.design-manager.ext-dark-theme .HorizontalScrollContainer__ScrollBar-cSRRR{
bottom: 0.3rem;
background-color: #3E8CBC;
}


/* *******
* Horizontal Tab Scrollbar -- Height Modification
* Kind of a convoluted height modification to the base elements surrounding the scroll.
* Also looks like some injected styles might be impacting this.
* Possibly will need to address this post-hoc.
**********/
html.ext-ui-tweaks .HorizontalScrollContainer__ScrollBar-cSRRR {
height: 10px; /* increased from something like 3px */
bottom: 10px;
border-radius: 7px;
cursor: move; /* cursor state for easier idendification of active state */
transition: 150ms all;
}

html.ext-ui-tweaks .HorizontalScrollContainer__ScrollBar-cSRRR:hover,
html.ext-ui-tweaks .HorizontalScrollContainer__ScrollBar-cSRRR:active {
background-color: #7e9ab5; /* hover for easier idendification of active state */
}

html.ext-ui-tweaks .tabs-container, html.ext-ui-tweaks .file-tabs > div {
height: 40px;
}


html.ext-ui-tweaks .file-tabs.private-tabs .file-tab {
height: auto; /* removed defined height of 40px to allow for the scrollbar to live within the padding area of the tab*/
padding-bottom: 12px;
}

html.ext-ui-tweaks .private-button--transparent.private-button--default {
padding: 11px !important;
}

/* End of Horizontal Tab Scrollbar -- Height Modification */


body.design-manager.ext-dark-theme .welcome-container{
background-color: #202d3a;
}
Expand Down

0 comments on commit 398f7f9

Please sign in to comment.