Fixes to avoid a warning when IBAN is null, in look and redirection

This commit is contained in:
Florian "flowdy" Heß
2017-02-06 08:12:56 +01:00
parent bb05b06cf3
commit 1a05fd4d54
13 changed files with 85 additions and 34 deletions

View File

@@ -15,10 +15,17 @@ h1 {
table {
border-collapse: collapse;
width:100%;
}
table td, table th {
border: 1px solid darkgrey;
vertical-align: top;
}
table.accounts tr.group-heading th {
border:none;
vertical-align:middle;
}
table tr:nth-child(even) {
@@ -44,12 +51,22 @@ table td.number {
text-align: right;
font-family: monospace, monospace; /* Hack to prevent browser default size reduction of monospace font */
font-size:1em;
vertical-align: bottom;
}
table td.mark {
background-color:rgba(255,0,0,0.1);
}
table td input {
width:100%;
box-sizing: border-box;
}
form {
margin: 1em 0;
}
a.transfer-btn {
background-color:rgba(224,32,0,0.4);
font-weight: bold;
@@ -73,6 +90,9 @@ input, textarea {
border: 1px solid #ddd;
padding: 2px;
}
input[type=checkbox], input[type=radio] {
border: none;
}
dl dt {
float: left;
@@ -117,3 +137,17 @@ img.icon {
color: darkgrey;
text-align: center;
}
a.add-item-btn:link,
a.add-item-btn:visited {
display: block;
float: right;
font-variant: small-caps;
background-color: #eee;
border: 2px outset grey;
padding: 3px;
border-radius: 3px;
text-decoration: none;
color: inherit;
font-weight:normal;
}