You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
435 B
25 lines
435 B
10 years ago
|
/* sensible UI defaults for transaction views */
|
||
|
|
||
|
/* right-align labels */
|
||
|
td > label {
|
||
|
float: right;
|
||
|
padding-right: 5px;
|
||
|
}
|
||
|
|
||
|
/* make unimportant buttons into links */
|
||
|
input[value=Delete], input[name=date_fill] {
|
||
|
background:none!important;
|
||
|
border:none;
|
||
|
padding:0!important;
|
||
|
color: blue;
|
||
|
/*border is optional*/
|
||
|
/* border-bottom:1px solid blue; */
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
form[name=FormEdit] select:focus {
|
||
|
color: green;
|
||
|
}
|
||
|
|
||
|
|