View | Details | Raw Unified | Return to bug 60340
Collapse All | Expand All

(-)java/org/apache/catalina/util/TomcatCSS.java (-9 / +9 lines)
Lines 22-36 Link Here
22
public class TomcatCSS {
22
public class TomcatCSS {
23
23
24
    public static final String TOMCAT_CSS =
24
    public static final String TOMCAT_CSS =
25
        "H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} " +
25
        "h1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} " +
26
        "H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} " +
26
        "h2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} " +
27
        "H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} " +
27
        "h3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} " +
28
        "BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} " +
28
        "body {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} " +
29
        "B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} " +
29
        "b {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} " +
30
        "P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}" +
30
        "p {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;} " +
31
        "A {color : black;}" +
31
        "a {color:black;} " +
32
        "A.name {color : black;}" +
32
        "a.name {color:black;} " +
33
        ".line {height: 1px; background-color: #525D76; border: none;}";
33
        ".line {height:1px;background-color:#525D76;border:none;}";
34
34
35
35
36
}
36
}

Return to bug 60340