Your message dated Sat, 8 Mar 2008 23:50:31 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#468361: please use relative font sizes in css
has caused the Debian Bug report #468361,
regarding please use relative font sizes in css
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
468361: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=468361
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: mod-musicindex-common
Version: 1.2.1-1
Severity: minor
File: /usr/share/mod_musicindex/musicindex.css
Tags: patch
The CSS file uses absolute font sizes. This disabled browsers from
scaling the font size. Please consider the following patch, which
uses relative sizes instead.
--- musicindex.css.orig 2008-02-28 15:53:24.000000000 +0100
+++ musicindex.css 2008-02-28 15:54:22.000000000 +0100
@@ -1,5 +1,5 @@
body {
- font: 10pt "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
+ font: 70% "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
color: black;
background-color: white;
}
@@ -8,7 +8,7 @@
/* for many scripts or fonts. */
h1 {
- font-size: 16pt;
+ font-size: 160%;
/* font-style: italic; */
color: red;
background-color: transparent;
@@ -251,7 +251,7 @@
}
table#directories div > a {
- font-size: 12pt;
+ font-size: 120%;
}
table#directories td > a > img {
--
.''`. martin f. krafft <[EMAIL PROTECTED]>
: :' : proud Debian developer, author, administrator, and user
`. `'` http://people.debian.org/~madduck - http://debiansystem.info
`- Debian - when you have better things to do than fixing systems
digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)
--- End Message ---
--- Begin Message ---
On Sat, Mar 8, 2008 at 9:15 PM, martin f krafft <[EMAIL PROTECTED]> wrote:
> also sprach Thibaut VARENE <[EMAIL PROTECTED]> [2008.03.08.1735 +0100]:
>
> >
> > It might be "better practice" to not use absolute font size, but the
> > argument you used seems quite moot to me.
>
> I use lenny's iceweasel and the default font size only takes effect
> when you use relative sizes in the CSS. Scaling works fine, but not
> the default.
Of course your default won't work. I set mod_musicindex's default in
the CSS. You're definitely free to modify the CSS to your liking, but
that certainly not qualifies as a bug, it's a design choice.
HTH
--
Thibaut VARENE
http://www.parisc-linux.org/~varenet/
--- End Message ---