/*
 * Custom rules for global.css.
 * The rules overwrites default rules for better netbeans.org integration.
 *
 * Author: Petr Chytil <petr.chytil@sun.com>
 */

/* add bold column titles - MIGRATION_TOOLS-153 */
tr.bz_buglist_header th a, tr.bz_buglist_header th a:hover {
    font-weight:bold;
}

/* use color from nb branding for zebra striping - MIGRATION_TOOLS-155 */
table.bz_buglist tr.bz_row_odd {
    background-color:#F4F7FF;
}

table.bz_buglist tr.bz_row_even {
    background-color:#FFFFFF;
}

/* use same fontface & fontsize as nb.org - MIGRATION_TOOLS-151 */
body, td, th, input {
    color:#333333;
    font-family:Verdana,"Verdana CE",Arial,"Arial CE","Lucida Grande CE",lucida,"Helvetica CE",sans-serif;
    font-size:1em;
}

/* use same fontface & fontsize as nb.org - MIGRATION_TOOLS-151 */
table.bz_buglist {
    color:#333333;
    font-family:Verdana,"Verdana CE",Arial,"Arial CE","Lucida Grande CE",lucida,"Helvetica CE",sans-serif;
    font-size:1em;
}

/* make issue comment box wider and text larger - default is too small */
.bz_comment_text {
    width:98%;
    _width:100%;
    font-size:12px;
}

table#nb_issue_comment {
    width:100%;
}

/* error message is too large by default */
#error_msg {
    line-height:normal;
    font-size:large;
}

/* remove grey background and border - MIGRATION_TOOLS-158 */
#bugzilla-body {
   -moz-background-clip:border;
   -moz-background-inline-policy:continuous;
   -moz-background-origin:padding;
   -moz-border-radius-bottomleft:5px;
   -moz-border-radius-bottomright:5px;
   -moz-border-radius-topleft:5px;
   -moz-border-radius-topright:5px;
   background:#FFFFFF none repeat scroll 0 0;
   border:none;
   font-family:Verdana,"Verdana CE",Arial,"Arial CE","Lucida Grande CE",lucida,"Helvetica CE",sans-serif;
   font-size:1em;
}

table.bz_buglist tr.bz_DEFECT td {
    color: #771111;
}

table.bz_buglist tr.bz_ENHANCEMENT td {
    color: #333333;
}

table.bz_buglist tr.bz_TASK td {
    color: #117711;
}

