- Complete mail-in payment gateway for Event Tickets Commerce - Support for check payments with collapsible checkout interface - Admin interface for managing check payments and order status - Professional asset organization with proper WordPress enqueuing - Order management with status tracking (pending, received, bounced) - Template system with responsive design and accessibility features - Integration with Event Tickets Commerce order system - Settings page for configuring payment instructions and addresses
122 lines
No EOL
2 KiB
CSS
122 lines
No EOL
2 KiB
CSS
/**
|
|
* Mail-In Payment Gateway Admin Styles
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
.et-mail-in-admin-page {
|
|
max-width: 1200px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.et-mail-in-orders-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.et-mail-in-orders-table th,
|
|
.et-mail-in-orders-table td {
|
|
padding: 12px;
|
|
text-align: left;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.et-mail-in-orders-table th {
|
|
background-color: #f1f1f1;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.et-mail-in-status {
|
|
padding: 4px 8px;
|
|
border-radius: 3px;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.et-mail-in-status--pending {
|
|
background-color: #fff3cd;
|
|
color: #856404;
|
|
border: 1px solid #ffeaa7;
|
|
}
|
|
|
|
.et-mail-in-status--received {
|
|
background-color: #d4edda;
|
|
color: #155724;
|
|
border: 1px solid #c3e6cb;
|
|
}
|
|
|
|
.et-mail-in-status--bounced {
|
|
background-color: #f8d7da;
|
|
color: #721c24;
|
|
border: 1px solid #f5c6cb;
|
|
}
|
|
|
|
.et-mail-in-action-buttons {
|
|
display: flex;
|
|
gap: 8px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.et-mail-in-action-button {
|
|
padding: 6px 12px;
|
|
border: none;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.et-mail-in-action-button--primary {
|
|
background-color: #0073aa;
|
|
color: white;
|
|
}
|
|
|
|
.et-mail-in-action-button--primary:hover {
|
|
background-color: #005a87;
|
|
}
|
|
|
|
.et-mail-in-action-button--danger {
|
|
background-color: #dc3545;
|
|
color: white;
|
|
}
|
|
|
|
.et-mail-in-action-button--danger:hover {
|
|
background-color: #c82333;
|
|
}
|
|
|
|
.et-mail-in-meta-box {
|
|
background: #fff;
|
|
border: 1px solid #ccd0d4;
|
|
border-radius: 4px;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.et-mail-in-meta-row {
|
|
display: flex;
|
|
margin-bottom: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.et-mail-in-meta-label {
|
|
font-weight: bold;
|
|
min-width: 150px;
|
|
color: #23282d;
|
|
}
|
|
|
|
.et-mail-in-meta-value {
|
|
flex: 1;
|
|
color: #32373c;
|
|
}
|
|
|
|
.et-mail-in-address-block {
|
|
background: #f9f9f9;
|
|
padding: 10px;
|
|
border-left: 3px solid #0073aa;
|
|
font-family: monospace;
|
|
white-space: pre-line;
|
|
border-radius: 0 3px 3px 0;
|
|
} |