1 table#buglist { 2 border-collapse: collapse; 3 border-style: solid; 4 border-color: rgba(0, 0, 0, 1.0); 5 border-width: 3px; 6 width: 80%; 7 margin-left: 10%; 8 margin-right: 10%; 9 } 10 11 tr { 12 border-color: rgba(0, 0, 0, 1.0); 13 border-style: dashed; 14 border-width: 1px 3px; 15 } 16 17 tr.priority_Critical { 18 background-color: rgba(255, 0, 0, 0.3); 19 } 20 21 tr.priority_High { 22 background-color: rgba(255, 165, 0, 0.3); 23 } 24 25 tr.priority_Medium { 26 background-color: rgba(255, 255, 0, 0.3); 27 } 28 29 tr.priority_Low { 30 background-color: rgba(0, 255, 0, 0.3); 31 } 32 33 tr.priority_Never { 34 background-color: rgba(190, 190, 190, 0.3); 35 } 36 37 tbody { 38 background-color: rgba(190, 190, 190, 0.1); 39 } 40 41 tr.priority_row { 42 background-color: rgba(190, 190, 190, 0.1); 43 border-style: solid; 44 } 45 46 tr.tr_head { 47 background-color: rgba(190, 190, 190, 0.5); 48 } 49 50 #table_header { 51 text-align: center; 52 } 53 54 td { 55 padding: 5px; 56 } 57 58 td.priority_td { 59 text-align: center; 60 } 61 62 a { 63 color: black; 64 } 65 66 a:visited { 67 color: black; 68 } 69 70 a:hover { 71 text-decoration: none; 72 }