Dashboards widgets

This commit is contained in:
Almira Krdzic
2018-11-29 11:13:15 +01:00
parent 3dbdb657c9
commit 71d615907d
25 changed files with 1139 additions and 426 deletions

View File

@@ -0,0 +1,41 @@
#wiaas_delivery_process_order_notes .note_content {
background: #a7cedc;
padding: 10px;
position: relative;
}
#wiaas_delivery_process_order_notes .note_content:after {
content: '';
display: block;
position: absolute;
bottom: -10px;
left: 20px;
width: 0;
height: 0;
border-width: 10px 10px 0 0;
border-style: solid;
border-color: #a7cedc transparent;
}
#wiaas_delivery_process_order_notes .note_content p {
margin: 0;
padding: 0;
word-wrap: break-word;
}
#wiaas_delivery_process_order_notes p.meta {
padding: 10px;
color: #999;
margin: 0;
font-size: 11px;
}
#wiaas_delivery_process_order_notes .add-note {
border-top: 1px solid #ddd;
padding: 10px 10px 0;
}
#wiaas_delivery_process_order_notes .add-note textarea {
width: 100%;
height: 50px;
}