Chore: Renamed the Ledger Model to Account Chore: Renamed LedgerType to AccountType Chore: Renamed all properties of Account table to lowercase with underscores Feature: Starred Accounts and their entries do not delete during a rebase. Info: Starred Vouchers still delete. They can be starred, but have no effect.
45 lines
499 B
CSS
45 lines
499 B
CSS
.right {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.selected {
|
|
background: #fff3cd
|
|
}
|
|
|
|
.unposted {
|
|
background: #f8d7da
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.img-container {
|
|
position: relative;
|
|
}
|
|
|
|
.img-container .overlay {
|
|
display: none;
|
|
}
|
|
|
|
.img-container:hover > .overlay {
|
|
display: inline-block;
|
|
position: absolute;
|
|
left: 60px;
|
|
top: 0;
|
|
}
|
|
|
|
mat-form-field.mat-form-field {
|
|
font-size: 1.25em;
|
|
}
|
|
|
|
.gold {
|
|
color: gold;
|
|
}
|
|
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|