luci-theme-openwrt: work around cssmin bug breaking the minified CSS.
The cssmin utility incorrectly breaks up calc() expressions when
minifying rules. Avoid the problem by trimming uneeded spaces.
Fixes: #3801
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 63057a08dc
)
This commit is contained in:
parent
d16600ff01
commit
7c29f560d5
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ div.hostinfo {
|
|||
border: 1px solid #90c0e0;
|
||||
background: #000 !important;
|
||||
color: #90c0e0 !important;
|
||||
padding: calc(.125em - 1px) calc(.5em - 1px);
|
||||
padding: calc(.125em-1px) calc(.5em-1px);
|
||||
}
|
||||
|
||||
html #menubar a:link,
|
||||
|
|
Loading…
Reference in a new issue