global.css 5.95 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* The contents of this file are subject to the Mozilla Public
  * License Version 1.1 (the "License"); you may not use this file
  * except in compliance with the License. You may obtain a copy of
  * the License at http://www.mozilla.org/MPL/
  *
  * Software distributed under the License is distributed on an "AS
  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  * implied. See the License for the specific language governing
  * rights and limitations under the License.
  *
  * The Original Code is the Bugzilla Bug Tracking System.
  *
  * The Initial Developer of the Original Code is Netscape Communications
  * Corporation. Portions created by Netscape are
  * Copyright (C) 1998 Netscape Communications Corporation. All
  * Rights Reserved.
  *
  * Contributor(s): Byron Jones <bugzilla@glob.com.au>
  *                 Christian Reis <kiko@async.com.br>
20 21
  *                 Vitaly Harisov <vitaly@rathedg.com>
  *                 Svetlana Harisova <light@rathedg.com>
22 23
  */

24 25 26 27 28 29
body
{
    color: #000;
    background-color: #fff;
}

30 31 32 33 34 35
/* banner (begin) */
    #banner
    {
        text-align: center;        

        width: 100%;
36
        background: #fff;
37 38 39 40 41
    }

    #banner p
    {
        margin: 0;
42
        margin-bottom: 1px;
43 44 45 46 47
        padding: 0;
    }

    #banner-name
    {
48 49 50
        font-size: 0px;
        height: 48px;
        background: transparent no-repeat url(global/header.png);
51 52 53 54
    }

    #banner-version
    {
55
        font-family: sans-serif;
56 57 58 59 60 61 62 63 64 65 66
        font-size: 75%;
        background: #fff;
    }

    /* hide from NN4 */
    p#banner-version
    {
        font-size: 85%;
    }
/* banner (end) */

67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
/* header (begin) */
    #header
    {
        width: 100%;
    }

    #header *
    {
        margin: 0;
        padding: 0;
    }

    /* hide from MSIE and NN4 */
    [id]#header
    {
        display: table;
    }

    /* IE hack for float content*/
    * html #header
    {
        height: 1%;
    }

    /* hide from NN4 */
    div#header h1
    {
        float: left;
    }

    #header h1
    {
        font-family: serif;
        font-weight: bold;
        font-size: 110%;
        padding: 0.2em 1em 0.1em 0.2em;
    }

    /* hide from MSIE and NN4 */
    [id]#header h1
    {
        float: none;
        display: table-cell;

        vertical-align: top;
    }

    /* hide from NN4 */
    div#header h2
    {
        float: left;
        width: 70%;

        text-align: center;
        padding: 0.2em 1em 0.1em 0.1em;
    }

    #header h2
    {
        font-family: serif;
        font-weight: normal;
        font-size: 100%;
    }

    /* hide from MSIE and NN4 */
    [id]#header h2
    {
        float: none;
        width: auto;

        text-align: left;
        vertical-align: top;
    }

    #header h3
    {
        font-family: serif;
        font-weight: normal;
        font-size: 100%;

        padding: 0.2em 0.2em 0.1em 0.1em;
        float: right;
    }

    /* hide from MSIE and NN4 */
    [id]#header h3
    {
        display: table-cell;
        float: none;

        text-align: right;
        vertical-align: top;
    }

    #message
    {
    	border: 1px solid red;

    	padding: 0.3em;
    	color: green;
    }
/* header (end)   */

170 171 172 173
/* footer (begin) */
    #footer
    {
        float: left;
174 175 176
        margin-top: 5px;
        width: 100%;
        font-family: sans-serif;
177 178 179
        background: #edf2f2;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
180 181 182 183
    }

    #footer form
    {
184
        display: inline;
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
    }

    #footer span
    {
        display: block;
    }

    #footer .btn, #footer .txt
    {
        font-size: 0.8em;
    }

    #footer #useful-links
    {
        padding: 0.3em;
    }

    /* hide from MSIE and NN4 */
    [id]#footer #useful-links
    {
        margin: 0.3em;
        display: table;
    }

209 210
    #footer #links-actions,
    #footer #links-edit,
211 212
    #footer #links-saved,
    #footer #links-special
213 214 215 216
    {
        display: table-row;
    }

217
    #footer .label
218
    {
219
        width: 8.2em;
220 221 222 223 224 225 226 227
        display: block;
        float: left;

        vertical-align: baseline;

        padding: 0.1em 0.2em;
    }

228
    #footer #links-actions .label
229 230 231 232 233
    {
        padding-top: 0.45em;
    }

    /* hide from MSIE and NN4 */
234
    [id]#footer .label
235 236 237 238 239 240 241 242 243 244
    {
        display: table-cell;
        float: none;
        width: auto;

        padding-top: 0;
    }

    #footer .links
    {
245
        display: table-cell;
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264

        padding: 0.1em 0.2em;
    }

    /* hide from MSIE and NN4 */
    [id]#footer .links
    {
        padding-top: 0;
        
        vertical-align: baseline;
    }

    /* hide from MSIE and NN4 */
    #footer+*
    {
        clear: both;
    }
/* footer (end) */

265 266 267
/* generic (begin) */
    body
    {
268
        background: #fff url("global/body-back.gif") repeat-x;
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
    }

    :link {
        color: #039;
    }

    :visited {
        color: #636;
    }

    :link:hover, :visited:hover {
        color: #333;
    }

    :link:active, :link:active {
        color: #000;
    }
/* generic (end) */

288 289 290 291 292 293 294 295 296 297 298
div#docslinks {
    float: right;
    border: 1px solid black;
    padding: 1ex;
    font-size: 80%;
}

#docslinks h2 {
    margin: 0;
}

299 300
.bz_obsolete { text-decoration: line-through; }
.bz_inactive { text-decoration: line-through; }
301 302 303 304
.bz_closed,
.bz_CLOSED td {
    text-decoration: line-through;
}
305 306
.bz_private { color: darkred ; background : #f3eeee ; }
.bz_disabled { color: #a0a0a0 ; }
307

308 309
.bz_row_odd
{
310
    background-color: #F7F7F7;
311 312 313 314 315 316 317 318 319
    color: #000000;
}

.bz_row_even
{
    background-color: #FFFFFF;
    color: #000000;
}

320
.bz_comment { background-color: #e0e0e0; }
321 322 323 324 325 326
.bz_comment_hilite pre
{
    background-color: lightgreen;
    margin: 0;
    padding: 1em 0;
}
327

328
td.tab
329
{
330 331 332 333 334
    background: #eee;
    text-align: center;
    border-style: solid;
    border-color: black;
    border-width: 0px 0px 2px 0px;
335
}
336 337
    
td.tab.selected
338
{
339 340
    background: white;
    border-width: 2px 2px 0px 2px;
341 342
}

343
td.tab.spacer
344
{
345
    background: white;
346 347
}

348 349 350 351
span.quote {
    color: #65379c;
}

352
table#flags th, table#flags td { vertical-align: baseline; text-align: left; }