Check in a basic invoice view for organizations

This commit is contained in:
Joseph Schorr 2013-11-13 17:47:45 -05:00
parent b8dc051705
commit e649e669e1
4 changed files with 154 additions and 0 deletions

View file

@ -1638,6 +1638,54 @@ p.editable:hover i {
display: inline-block;
}
.org-admin .invoice-title {
padding: 6px;
cursor: pointer;
}
.org-admin .invoice-status .success {
color: green;
}
.org-admin .invoice-status .pending {
color: steelblue;
}
.org-admin .invoice-status .danger {
color: red;
}
.org-admin .invoice-amount:before {
content: '$';
}
.org-admin .invoice-details {
margin-left: 10px;
margin-bottom: 10px;
padding: 4px;
padding-left: 6px;
border-left: 2px solid #eee !important;
}
.org-admin .invoice-details td {
border: 0px solid transparent !important;
}
.org-admin .invoice-details dl {
margin: 0px;
}
.org-admin .invoice-details dd {
margin-left: 10px;
padding: 6px;
margin-bottom: 10px;
}
.org-admin .invoice-title:hover {
color: steelblue;
}
.org-list h2 {
margin-bottom: 20px;
}