- Timestamp:
- 02/04/15 13:27:48 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ipdb.css
r674 r688 105 105 } 106 106 107 /* Funny how not caring about IE suddenly makes all kinds of neat things possible... */ 108 /* class group for tables with alternating row colours */ 109 /* note extra tbody selector for implicit tbody tag in between <table> and <tr> */ 110 /* fallback for Stoopid Browsers */ 111 .altrows > tbody > tr { 112 background-color: #D0E0E0; 113 } 114 .altrows > tbody > tr:nth-child(odd) { 115 background-color: #A8C4D0; 116 } 117 .altrows > tbody > tr:nth-child(even) { 118 background-color: #D0E0E0; 119 } 120 /* because ordering. *sigh* could just set to something, 121 but this lets the primary background colour through */ 122 .altrows > tbody > tr:first-child { 123 background: inherit; 124 } 125 126 /* and because we can't do things the simple way... a no-headings version */ 127 .altrowsnh tr { 128 background-color: #D0E0E0; 129 } 130 .altrowsnh tr:nth-child(odd) { 131 background-color: #A8C4D0; 132 } 133 .altrowsnh tr:nth-child(even) { 134 background-color: #D0E0E0; 135 } 136 137 /* Need to normalize down to onw of these someday */ 138 .warning { 139 background-color: #000000; 140 font-family: Verdana, Arial, Helvetica, sans-serif; 141 font-weight: bold; 142 color: red; 143 padding: 2px; 144 } 107 145 .warnmsg { 108 146 border: solid 2px #FFFF00;
Note:
See TracChangeset
for help on using the changeset viewer.