File: font-weight-declaration.patch

package info (click to toggle)
jquery-at.js 1.5.4%2Bdfsg.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 312 kB
  • sloc: makefile: 72
file content (32 lines) | stat: -rw-r--r-- 803 bytes parent folder | download | duplicates (2)
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 :