41 lines
843 B
CSS
41 lines
843 B
CSS
#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;
|
|
} |