light-blue.css: Fix LSsmoothbox / LSconfirmBox closeBtn CSS

The cross UTF8 character used was not supported by all browsers. Use "x" 
character.
This commit is contained in:
Benjamin Renard 2020-05-29 12:29:13 +02:00
parent c989126f9a
commit 2adbd4cb38

View file

@ -99,21 +99,22 @@ td.LSobject-list, tr.LSobject-list {
#closeBtn-LSsmoothbox, #closeBtn-LSconfirmBox { #closeBtn-LSsmoothbox, #closeBtn-LSconfirmBox {
background: transparent; background: transparent;
top: 0.3em; top: 0.5rem;
right: 0.3em; right: 0.5rem;
} }
#closeBtn-LSsmoothbox:after, #closeBtn-LSconfirmBox:after { #closeBtn-LSsmoothbox:after, #closeBtn-LSconfirmBox:after {
background: rgba(255, 255, 255, 0.8);; background: rgba(255, 255, 255, 0.8);
position: relative; position: relative;
top: 0; top: 0;
left: -0.2em; left: -0.3rem;
font-size: 1.2em; font-size: 1.2rem;
content: '🗙'; content: 'x';
height: 1em; height: 1rem;
width: 1em; width: 1rem;
color: var(--medium-grey); color: var(--medium-grey);
padding: 0 0.2em; padding: 0 0.2rem;
border: none;
} }
#closeBtn-LSsmoothbox:hover:before, #closeBtn-LSsmoothbox:hover:after, #closeBtn-LSconfirmBox:hover:before, #closeBtn-LSconfirmBox:hover:after { #closeBtn-LSsmoothbox:hover:before, #closeBtn-LSsmoothbox:hover:after, #closeBtn-LSconfirmBox:hover:before, #closeBtn-LSconfirmBox:hover:after {
color: var(--dark-grey); color: var(--dark-grey);