diff options
| author | ivan <ivan> | 2004-11-15 10:35:56 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2004-11-15 10:35:56 +0000 | 
| commit | 32306b5f8ffe4ce594409aa6e89626740b225a39 (patch) | |
| tree | 8dba82e8424ebe8d089b4e0ef579d87db06742a3 /sql-ledger/css | |
| parent | 52072fcd26f2faf57923f598c358e7f47c4e2643 (diff) | |
import sql-ledger 2.4.4SQL_LEDGER
Diffstat (limited to 'sql-ledger/css')
| -rw-r--r-- | sql-ledger/css/sql-ledger.css | 96 | 
1 files changed, 88 insertions, 8 deletions
diff --git a/sql-ledger/css/sql-ledger.css b/sql-ledger/css/sql-ledger.css index 20a59cfa1..936f40185 100644 --- a/sql-ledger/css/sql-ledger.css +++ b/sql-ledger/css/sql-ledger.css @@ -5,8 +5,8 @@ A:link { color: #a0522d; text-decoration: none; }  A:visited { color: #a0522d; text-decoration: none; }  A:active { color: #a0522d; text-decoration: underline; }  A:hover { color: white; -          background-color: rgb(187,187,187); -	  text-decoration: none; +  background-color: #bbbbbb; +  text-decoration: none;  }  body { @@ -21,6 +21,11 @@ td {    font-size: 10pt;  } +th { +  font-family: Verdana, Arial, Helvetica; +  font-size: 10pt; +} +  /* login and admin */  .login {    font-family: Verdana, Arial, Helvetica; @@ -55,25 +60,102 @@ body.menu {    color: black;  } +.menuOut { +  cursor: pointer; +  background-color: #FBFFE7; +  font-size: 10px; +  color: #000084; +  border: 1px solid #FBFFE7; +  padding: 2px; +  text-align: left; +  font-weight: bold; +} + +.menuOver { +  cursor: pointer; +  background-color: #5a7d9b; +  font-size: 10px; +  color: #ffffff; +  border: 1px solid #FBFFE7; +  padding: 2px; +  text-align: left; +  font-weight: bold; +} + +.submenu { +  font-family: Verdana, Arial, Helvetica; +  font-size: 10px; +  padding-left: 5px; +} + +.menuOut a { +  cursor: pointer; +  margin: 0px; +  background-color: #FBFFE7; +  font-size: 10px; +  color: #000084; +  border: 0px solid #000000; +  padding: 0px; +  text-align: left; +  font-weight: bold; +} + +.menuOver a { +  cursor: pointer; +  margin: 0px; +  background-color: #5a7d9b; +  font-size: 10px; +  color: #ffffff; +  border: 0px solid #000000; +  padding: 0px; +  text-align: left; +  font-weight: bold; +} + +.submenu a { +  color: #a0522d; +  text-decoration: none; +} + +.submenu a:hover { +  color: #a0522d; +  text-decoration: none; +}  .listtop { font-size: 10pt; background-color: black; color: white; }  .listheading { font-size: 10pt; background-color: #336666; color: white; }  A.listheading:link, A.listheading:active, A.listheading:visited {    color: white;    text-decoration: none; } -.listrow1 { background-color: #e6e6fa; color: black; vertical-align: top; } -.listrow0 { background-color: #ffe4e1; color: black; vertical-align: top; } +.listrow1 { font-size: 10pt; background-color: #e6e6fa; color: black; vertical-align: top; } +.listrow0 { font-size: 10pt; background-color: #ffe4e1; color: black; vertical-align: top; }  .listsubtotal { font-size: 10pt; background-color: #5a7d9b; color: white; }  .listtotal { font-size: 10pt; background-color: black; color: white; } +textarea { +  font-family: Verdana, Arial, Helvetica; +  font-size: 10pt; +} + +input { +  font-family: Verdana, Arial, Helvetica; +  font-size: 10pt; +} + +select { +  font-family: Verdana, Arial, Helvetica; +  font-size: 10pt; +} +  .submit { -  font-size: 12pt    font-family: Verdana, Arial, Helvetica; +  font-size: 10pt;    color: #000080;  } +  .checkbox, .radio {    font-family: Verdana, Arial, Helvetica; -  color: #778899; +  font-size: 10pt;  }  .plus0 {    /* font color for negative numbers */ @@ -109,5 +191,3 @@ h2.error {    }  } - -  | 
