[Layout changes] [Prepare for release]

This commit is contained in:
Scott E. Graves
2018-10-04 00:49:49 -05:00
parent 712ad932be
commit 4aac967081
4 changed files with 31 additions and 13 deletions

View File

@@ -5,14 +5,14 @@
--control_background_hover: rgba(150, 150, 190, .3);
--control_border: 1px solid rgba(70, 70, 70, 0.9);
--control_box_shadow: 1px 1px 1px black;
--control_transparent_background: rgba(60, 60, 70, 0.4);
--control_transparent_background: rgba(40, 40, 55, 0.45);
--control_dark_transparent_background: rgba(15, 15, 15, 0.8);
--text_color: rgba(200, 205, 220, 0.8);
--text_color_hover: rgba(200, 205, 220, 0.8);
--text_color: rgba(200, 205, 220, 0.7);
--text_color_hover: rgba(200, 205, 220, 0.7);
--text_color_error: rgba(203, 120, 120, 0.8);
--heading_text_color: rgba(140, 169, 203, 0.8);
--heading_other_text_color: rgba(200, 205, 220, 0.8);
--heading_text_color: rgba(166, 177, 219, 0.7);
--heading_other_text_color: var(--heading_text_color);
--text_color_transition: color 0.3s;
}
@@ -69,3 +69,20 @@ p {
font-weight: normal;
color: var(--text_color);
}
.scrollable-content {
overflow-x: hidden;
overflow-y: scroll;
}
.scrollable-content, ::-webkit-scrollbar {
width: 10px;
}
.scrollable-content, ::-webkit-scrollbar * {
background: transparent;
}
.scrollable-content, ::-webkit-scrollbar-thumb {
background: rgba(90, 90, 90, 0.6) !important;
}