Layout changes

This commit is contained in:
Scott E. Graves
2019-07-15 22:20:43 -05:00
parent 83c00f82ea
commit edb1e664df
2 changed files with 8 additions and 8 deletions

View File

@@ -2,7 +2,7 @@ input.MountItemInput {
margin: 0;
padding: 4px;
border-radius: var(--border_radius);
background: rgba(160, 160, 160, 0.1);
background: var(--control_background);
border: none;
box-shadow: none;
outline: none;

View File

@@ -1,17 +1,17 @@
:root {
--border_radius: 4px;
--control_background: rgba(150, 150, 190, .15);
--control_background_hover: rgba(150, 150, 190, .35);
--control_background: rgba(125, 145, 200, .15);
--control_background_hover: rgba(125, 145, 200, .30);
--control_border: 1px solid rgba(70, 70, 70, 0.9);
--control_box_shadow: 1px 1px 1px black;
--control_transparent_background: rgba(30, 30, 50, 0.45);
--control_dark_transparent_background: rgba(15, 15, 15, 0.8);
--control_transparent_background: rgba(30, 30, 50, 0.3);
--control_dark_transparent_background: rgba(10, 10, 20, 0.8);
--text_color: rgba(200, 205, 220, 0.7);
--text_color_hover: rgba(200, 205, 220, 0.7);
--text_color: rgba(200, 205, 225, 0.8);
--text_color_hover: rgba(200, 205, 225, 0.9);
--text_color_error: rgba(203, 120, 120, 0.8);
--heading_text_color: rgba(161, 190, 235, 0.7);
--heading_text_color: rgba(146, 175, 220, 0.7);
--heading_other_text_color: var(--heading_text_color);
--text_color_transition: color 0.3s;