diff --git a/website/o3dv/css/controls.css b/website/o3dv/css/controls.css index 1efef78..86e3e0b 100644 --- a/website/o3dv/css/controls.css +++ b/website/o3dv/css/controls.css @@ -65,9 +65,8 @@ div.ov_button.outline div.ov_tooltip { - color: var(--ov_foreground_color); - background: var(--ov_background_color); - border: 1px solid var(--ov_border_color); + color: var(--ov_dialog_foreground_color); + background: var(--ov_dialog_background_color); padding: 5px 10px; border-radius: 5px; position: absolute; diff --git a/website/o3dv/js/themehandler.js b/website/o3dv/js/themehandler.js index 0d0eebd..17253d9 100644 --- a/website/o3dv/js/themehandler.js +++ b/website/o3dv/js/themehandler.js @@ -43,8 +43,8 @@ OV.ThemeHandler = class { '--ov_dialog_foreground_color': '#fafafa', '--ov_dialog_background_color': '#333333', '--ov_border_color': '#444444', - '--ov_shadow': 'none', - '--ov_small_shadow': 'none' + '--ov_shadow': '0px 0px 10px #000000', + '--ov_small_shadow': '0px 0px 5px #000000' } } };