Commit 94ef26fcc09ee9f1a9f64fbd4e9320a66a7b0e17

Authored by Neil Blakey-Milner
1 parent be544b03

Bring some testing CSS stuff into the stylesheet.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3495 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/stylesheet.php
... ... @@ -291,3 +291,56 @@ td.colour_logout {
291 291 width: 100%;
292 292 background-color: #CE0505;
293 293 }
  294 +
  295 +table.pretty {
  296 + margin: 0;
  297 + padding: 0;
  298 + border: 0;
  299 + border-top: 1px solid #cccccc;
  300 + border-left: 1px solid #cccccc;
  301 +}
  302 +
  303 +table.pretty > thead > tr {
  304 + border: 0;
  305 + margin: 0;
  306 + padding: 0;
  307 + background-color: #feeeee;
  308 +}
  309 +
  310 +table.pretty > thead > tr > th {
  311 + border-right: 1px solid #cccccc;
  312 + border-bottom: 2px solid #000000;
  313 + border-left: 0;
  314 + border-right: 0;
  315 + padding-left: 5px;
  316 + padding-right: 5px;
  317 + padding-top: 2px;
  318 + padding-bottom: 2px;
  319 +}
  320 +
  321 +table.pretty > tbody > tr {
  322 + border: 0;
  323 + margin: 0;
  324 + padding: 0;
  325 + background-color: #eeeefe;
  326 +}
  327 +
  328 +table.pretty > tbody > tr.odd {
  329 + background-color: #eeeefe;
  330 +}
  331 +table.pretty > tbody > tr.odd {
  332 + background-color: #fafafe;
  333 +}
  334 +
  335 +table.pretty > tbody > tr > td {
  336 + border: 0;
  337 + border-right: 1px solid #cccccc;
  338 + border-bottom: 1px solid #cccccc;
  339 + margin: 0;
  340 + padding-top: 2px;
  341 + padding-bottom: 2px;
  342 + padding-left: 3px;
  343 + padding-right: 3px;
  344 +}
  345 +
  346 +
... ...