00967: UploadQuickReference page cannot be modified by css

Summary: UploadQuickReference page cannot be modified by css
Created: 2007-08-23 00:24
Status: Open
Category: Bug
From: Peter Kay
Assigned:
Priority: 2
Version: 2.2.0-beta63
OS: Linux/Apache/??

Description: The UploadQuickReference page contains the following code:

>>class='quickref' color=#000000 bgcolor=#f9f9f9 font-family='Arial,sans-serif' font-size=12px padding=2px border='1px solid #cccccc'<<

The "color" and "bgcolor" elements here are hard-coded and cannot be overruled by css.

Solution should be easy enough:

Default Site.UploadQuickReference should not contain "color=#000000 bgcolor=#f9f9f9...", and default pmwiki.css can contain

  .quickref
  {
    color: black;
    background: #f9f9f9;
    font-family: Arial,sans-serif;
    padding=2px;
    border=1px solid #cccccc;
  }

This will make it possible for skins to specify color of upload quickref (and ensure it matches edit quickref). (Note: I did leave out the fixed size font-size: 12px line)

--Peter