Commit 8beed0b241ad3c874115a404e256c5ccc526039c
1 parent
1aa474fb
Provide some UI niceties for side-ways tables (headers on left) for
testing. git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3522 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
36 additions
and
0 deletions
presentation/lookAndFeel/knowledgeTree/stylesheet.php
| @@ -343,4 +343,40 @@ table.pretty > tbody > tr > td { | @@ -343,4 +343,40 @@ table.pretty > tbody > tr > td { | ||
| 343 | padding-right: 3px; | 343 | padding-right: 3px; |
| 344 | } | 344 | } |
| 345 | 345 | ||
| 346 | +table.prettysw { | ||
| 347 | + margin: 0; | ||
| 348 | + padding: 0; | ||
| 349 | + border: 0; | ||
| 350 | + border-top: 1px solid #cccccc; | ||
| 351 | + border-left: 1px solid #cccccc; | ||
| 352 | +} | ||
| 353 | + | ||
| 354 | +table.prettysw > tbody > tr > th { | ||
| 355 | + border: 0; | ||
| 356 | + border-right: 2px solid #000000; | ||
| 357 | + margin: 0; | ||
| 358 | + padding: 0; | ||
| 359 | + background-color: #feeeee; | ||
| 360 | +} | ||
| 361 | + | ||
| 362 | +table.prettysw > tbody > tr > td { | ||
| 363 | + border: 0; | ||
| 364 | + border-bottom: 1px solid #cccccc; | ||
| 365 | + margin: 0; | ||
| 366 | + padding: 0; | ||
| 367 | + background-color: #eeeefe; | ||
| 368 | + padding-right: 1em; | ||
| 369 | + text-align: right; | ||
| 370 | + padding-bottom: 3px; | ||
| 371 | + padding-top: 3px; | ||
| 372 | +} | ||
| 373 | + | ||
| 374 | +table.prettysw > tbody > tr > td.odd { | ||
| 375 | + background-color: #fafafe; | ||
| 376 | +} | ||
| 377 | + | ||
| 378 | +table.prettysw > tbody > tr > td.compare { | ||
| 379 | + color: red; | ||
| 380 | +} | ||
| 381 | + | ||
| 346 | 382 |