diff options
author | Pedro Pinto Silva <pedro.silva@collabora.com> | 2020-09-10 13:03:17 +0200 |
---|---|---|
committer | Pedro Silva <pedro.silva@collabora.com> | 2020-09-10 16:52:19 +0200 |
commit | 3d6c81476e1b66a42c74a7144018c1226c443cc4 (patch) | |
tree | 2f8be42a22cec7b6d5dab4d7a59c51ef8718a544 /loleaflet | |
parent | d42e41ce04a80a798053260c229ec159e20307ef (diff) |
Fix jquery-ui-tooltips' border and shadow color (notation for IE)
- border color was too bright and was causing some undesired results
around tooltips (in between fill and shadow)
- Change box-shadow color notation from rgba to rgb
Change-Id: Ibca0910675f0836a3f4fa02e00d599c59683e0cc
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/102375
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Pedro Silva <pedro.silva@collabora.com>
Diffstat (limited to 'loleaflet')
-rw-r--r-- | loleaflet/css/jquery-ui-lightness.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/loleaflet/css/jquery-ui-lightness.css b/loleaflet/css/jquery-ui-lightness.css index 71099ca41..7cd43e869 100644 --- a/loleaflet/css/jquery-ui-lightness.css +++ b/loleaflet/css/jquery-ui-lightness.css @@ -890,7 +890,7 @@ button.ui-button::-moz-focus-inner { font-size: 1em; } .ui-widget.ui-widget-content { - border: 1px solid #cccccc; + border: 1px solid #232323; } .ui-widget-content { border: 1px solid #dddddd; @@ -1317,6 +1317,6 @@ a.ui-button:active, filter: Alpha(Opacity=50); /* support: IE8 */ } .ui-widget-shadow { - -webkit-box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.15); - box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.15); + -webkit-box-shadow: 0px 0px 4px 2px rgb(217, 217, 217); + box-shadow: 0px 0px 4px 2px rgb(217, 217, 217); } |