1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Description: Correct an invalid declaration in the CSS.
.
The value bold is not valid for the font property. Many browsers will
(correctly) ignore this invalid declaration.
Bug: https://github.com/ichord/At.js/issues/540
Author: Ben Finney <bignose@debian.org>
Last-Update: 2018-02-25
diff --git old/src/jquery.atwho.css new/src/jquery.atwho.css
index dad94ed9..ab5a727b 100644
--- old/src/jquery.atwho.css
+++ new/src/jquery.atwho.css
@@ -48,7 +48,7 @@
}
.atwho-view .cur strong {
color: white;
- font:bold;
+ font-weight: bold;
}
.atwho-view ul {
/* width: 100px; */
Local variables:
coding: utf-8
mode: diff
time-stamp-format: "%:y-%02m-%02d"
time-stamp-start: "^Last-Update:[ ]+"
time-stamp-end: "$"
time-stamp-line-limit: 20
End:
vim: fileencoding=utf-8 filetype=diff :
|