annotate .svn/pristine/59/59f1592eb9adeaf7322fa542d6f3eff3f9b8093e.svn-base @ 1327:287f201c2802 redmine-2.2-integration

Add italic
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jun 2013 20:56:22 +0100
parents 038ba2d95de8
children
rev   line source
Chris@1296 1 @import url(../../../stylesheets/application.css);
Chris@1296 2
Chris@1296 3 body, #wrapper { background-color:#EEEEEE; }
Chris@1296 4 #header, #top-menu { margin: 0px 10px 0px 11px; }
Chris@1296 5 #main { background: #EEEEEE; margin: 8px 10px 0px 10px; }
Chris@1296 6 #content, #main.nosidebar #content { background: #fff; border-right: 1px solid #bbb; border-bottom: 1px solid #bbb; border-left: 1px solid #d7d7d7; border-top: 1px solid #d7d7d7; }
Chris@1296 7 #footer { background-color:#EEEEEE; border: 0px; }
Chris@1296 8
Chris@1296 9 /* Headers */
Chris@1296 10 h2, h3, h4, .wiki h1, .wiki h2, .wiki h3 {border-bottom: 0px;}
Chris@1296 11
Chris@1296 12 /* Menu */
Chris@1296 13 #main-menu li a { background-color: #507AAA; font-weight: bold;}
Chris@1296 14 #main-menu li a:hover { background: #507AAA; text-decoration: underline; }
Chris@1296 15 #main-menu li a.selected, #main-menu li a.selected:hover { background-color:#EEEEEE; }
Chris@1296 16
Chris@1296 17 /* Tables */
Chris@1296 18 table.list tbody td, table.list tbody tr:hover td { border: solid 1px #d7d7d7; }
Chris@1296 19 table.list thead th {
Chris@1296 20 border-width: 1px;
Chris@1296 21 border-style: solid;
Chris@1296 22 border-top-color: #d7d7d7;
Chris@1296 23 border-right-color: #d7d7d7;
Chris@1296 24 border-left-color: #d7d7d7;
Chris@1296 25 border-bottom-color: #999999;
Chris@1296 26 }
Chris@1296 27
Chris@1296 28 /* Issues grid styles by priorities (provided by Wynn Netherland) */
Chris@1296 29 table.list tr.issue a { color: #666; }
Chris@1296 30
Chris@1296 31 tr.odd.priority-highest, table.list tbody tr.odd.priority-highest:hover { color: #900; font-weight: bold; }
Chris@1296 32 tr.odd.priority-highest { background: #ffc4c4; }
Chris@1296 33 tr.even.priority-highest, table.list tbody tr.even.priority-highest:hover { color: #900; font-weight: bold; }
Chris@1296 34 tr.even.priority-highest { background: #ffd4d4; }
Chris@1296 35 tr.priority-highest a, tr.priority-5:hover a { color: #900; }
Chris@1296 36 tr.odd.priority-highest td, tr.even.priority-highest td { border-color: #ffb4b4; }
Chris@1296 37
Chris@1296 38 tr.odd.priority-high2, table.list tbody tr.odd.priority-high4:hover { color: #900; }
Chris@1296 39 tr.odd.priority-high2 { background: #ffc4c4; }
Chris@1296 40 tr.even.priority-high2, table.list tbody tr.even.priority-high4:hover { color: #900; }
Chris@1296 41 tr.even.priority-high2 { background: #ffd4d4; }
Chris@1296 42 tr.priority-high2 a { color: #900; }
Chris@1296 43 tr.odd.priority-high2 td, tr.even.priority-high4 td { border-color: #ffb4b4; }
Chris@1296 44
Chris@1296 45 tr.odd.priority-high3, table.list tbody tr.odd.priority-high3:hover { color: #900; }
Chris@1296 46 tr.odd.priority-high3 { background: #fee; }
Chris@1296 47 tr.even.priority-high3, table.list tbody tr.even.priority-high3:hover { color: #900; }
Chris@1296 48 tr.even.priority-high3 { background: #fff2f2; }
Chris@1296 49 tr.priority-high3 a { color: #900; }
Chris@1296 50 tr.odd.priority-high3 td, tr.even.priority-high3 td { border-color: #fcc; }
Chris@1296 51
Chris@1296 52 tr.odd.priority-lowest, table.list tbody tr.odd.priority-lowest:hover { color: #559; }
Chris@1296 53 tr.odd.priority-lowest { background: #eaf7ff; }
Chris@1296 54 tr.even.priority-lowest, table.list tbody tr.even.priority-lowest:hover { color: #559; }
Chris@1296 55 tr.even.priority-lowest { background: #f2faff; }
Chris@1296 56 tr.priority-lowest a { color: #559; }
Chris@1296 57 tr.odd.priority-lowest td, tr.even.priority-lowest td { border-color: #add7f3; }
Chris@1296 58
Chris@1296 59 /* Buttons */
Chris@1296 60 input[type="button"], input[type="submit"], input[type="reset"] { background-color: #f2f2f2; color: #222222; border: 1px outset #cccccc; }
Chris@1296 61 input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover { background-color: #ccccbb; }
Chris@1296 62
Chris@1296 63 /* Fields */
Chris@1296 64 input[type="text"], input[type="password"], textarea, select { padding: 2px; border: 1px solid #d7d7d7; }
Chris@1296 65 input[type="text"], input[type="password"] { padding: 3px; }
Chris@1296 66 input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus { border: 1px solid #888866; }
Chris@1296 67 option { border-bottom: 1px dotted #d7d7d7; }
Chris@1296 68
Chris@1296 69 /* Misc */
Chris@1296 70 .box { background-color: #fcfcfc; }