science-ation/tableeditor.css
dave 29e14c2514 - Fix the tableeditor to do a string compare for determining if something
should be SELECTED in the select type.  If the keys are 0, and there is no
  data, PHP does a numeric compare and matches them, when they shouldn't
  actually be matched.
- Add Load/Save for the judge category preferences
- Enable saving to mysql.  It works.
- Update the tableeditor css to use the same colours as sfiab
2006-10-17 06:44:27 +00:00

80 lines
1.0 KiB
CSS

select {
font-size: 1.0em;
}
input {
font-size: 1.0em;
}
.happy {
color: green;
font-weight: bold;
font-size: 1.1em;
}
.error {
color: red;
font-weight: bold;
font-size: 1.1em;
}
.tableview {
border-collapse: collapse;
border-spacing: 1px;
color: black;
margin-left: 20px;
margin-right: 20px;
border: 0px;
font-size: 12px;
}
.tableview td {
border: 1px solid #000000;
padding: 1px;
}
.tableview th {
border: 1px solid #000000;
font-weight: bold;
text-align: center;
color: #FFFFFF;
background-color: #5C6F90;
padding: 3px;
}
.tableview th a {
font-weight: bold;
color: #FFFFFF;
}
.tableview th a:hover {
font-weight: bold;
background-color: #00346A;
color: #3D90E9;
}
.tableedit {
border-spacing: 1px;
color: black;
margin-left: 20px;
margin-right: 20px;
font-size: 12px;
border: 0px;
}
.tableedit td {
border: 0px solid #5C6F90;
padding: 2px;
}
.tableedit th {
border: 1px solid #5C6F90;
font-weight: bold;
text-align: left;
color: #FFFFFF;
background-color: #5C6F90;
padding: 2px;
}