Skip to content

Instantly share code, notes, and snippets.

@vladikoff
Last active August 29, 2015 13:57

Revisions

  1. vladikoff revised this gist Jul 15, 2014. 1 changed file with 8 additions and 1 deletion.
    9 changes: 8 additions & 1 deletion bugzilla.css
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,14 @@
    * {
    font-family: Consolas, monospace!important;
    }

    body {
    background: white;
    font-size: 11px;
    font-family: monospace!important;
    }

    .bz_group_visibility_section {
    display: none;
    }

    .field_label, .field_value {
  2. vladikoff revised this gist Jul 15, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion bugzilla.css
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    body {
    background: white;
    font-size: 11px;
    font-family: Helvetica, arial, freesans, clean, sans-serif;
    font-family: monospace!important;
    }

    .field_label, .field_value {
  3. vladikoff revised this gist Mar 19, 2014. 1 changed file with 8 additions and 2 deletions.
    10 changes: 8 additions & 2 deletions bugzilla.css
    Original file line number Diff line number Diff line change
    @@ -8,12 +8,17 @@ body {
    font-size: 11px;
    }

    .bz_comment {
    fieldset {
    border: 0;
    }

    .bz_comment, .bz_comment_text {
    font-size: 11px;
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    line-height: 1.7em!important;
    }

    .bz_comment_table .bz_comment {
    @@ -75,6 +80,7 @@ table.edit_form {
    #header .quicksearch_form a,
    .links a[href='./'],
    .bz_section_spacer,
    #bz_big_form_parts br,
    .bz_collapse_expand_comments {
    display: none!important;
    }
    @@ -95,4 +101,4 @@ ul.links {
    color: #333333;
    transition: all 0.1s ease-in;
    -webkit-transition: all 0.1s ease-in 0;
    }
    }
  4. vladikoff created this gist Mar 19, 2014.
    98 changes: 98 additions & 0 deletions bugzilla.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,98 @@
    body {
    background: white;
    font-size: 11px;
    font-family: Helvetica, arial, freesans, clean, sans-serif;
    }

    .field_label, .field_value {
    font-size: 11px;
    }

    .bz_comment {
    font-size: 11px;
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    }

    .bz_comment_table .bz_comment {
    width: 100%!important;
    }

    .bz_comment_head {
    background: #f7f7f7;
    }

    .bz_alias_short_desc_container {
    font-size: 30px;
    line-height: 1.5em;
    }

    .bz_alias_short_desc_container a {
    color: #aaa;
    }

    table.edit_form {
    margin: 0;
    padding: 0;
    background: rgba(231, 231, 231, 0.4);
    }

    .cc_list_display {
    max-height: 50px;
    }

    #attachment_table, #attachment_table th, .bz_attach_footer, .bz_time_tracking_table th {
    background: #fff;
    box-shadow: 0;
    border: 0;
    }

    #quicksearch_top {
    padding: 2px;
    padding-left: 25px;
    font-size: 11px;
    width: 150px;
    }

    #add_comment {
    border: 0;
    margin: 0;
    padding: 0;
    }

    #attachment_table {
    margin: 0px;
    padding: 0;
    }

    .last_comment_link,
    #moz_tab,
    #wave_wand,
    #privacy-policy,
    #find_top,
    #header .quicksearch_form a,
    .links a[href='./'],
    .bz_section_spacer,
    .bz_collapse_expand_comments {
    display: none!important;
    }

    ul.links {
    padding: 0.2em 0 0 0.3em;
    }

    #header {
    background-image: linear-gradient(#f9f9f9, #f3f3f3);
    }

    #header a {
    display: inline-block;
    padding: 0px 0px;
    font-size: 13px;
    font-weight: bold;
    color: #333333;
    transition: all 0.1s ease-in;
    -webkit-transition: all 0.1s ease-in 0;
    }