| 1 |
/** |
| 2 |
* Email Templates List Styles |
| 3 |
*/ |
| 4 |
|
| 5 |
.doi-email-templates-header { |
| 6 |
display: flex; |
| 7 |
justify-content: space-between; |
| 8 |
align-items: center; |
| 9 |
margin-bottom: 20px; |
| 10 |
} |
| 11 |
|
| 12 |
.doi-email-templates-header h1 { |
| 13 |
margin: 0; |
| 14 |
} |
| 15 |
|
| 16 |
.doi-no-templates { |
| 17 |
background: #fff; |
| 18 |
border: 1px solid #c3c4c7; |
| 19 |
border-left-width: 4px; |
| 20 |
border-left-color: #0073aa; |
| 21 |
padding: 20px; |
| 22 |
margin: 20px 0; |
| 23 |
} |
| 24 |
|
| 25 |
.doi-no-templates p { |
| 26 |
margin: 0; |
| 27 |
} |
| 28 |
|
| 29 |
.doi-status { |
| 30 |
display: inline-block; |
| 31 |
padding: 3px 8px; |
| 32 |
border-radius: 3px; |
| 33 |
font-size: 12px; |
| 34 |
font-weight: 500; |
| 35 |
} |
| 36 |
|
| 37 |
.doi-status-published { |
| 38 |
background-color: #d4edda; |
| 39 |
color: #155724; |
| 40 |
} |
| 41 |
|
| 42 |
.doi-status-draft { |
| 43 |
background-color: #fff3cd; |
| 44 |
color: #856404; |
| 45 |
} |
| 46 |
|
| 47 |
.column-title { |
| 48 |
width: 40%; |
| 49 |
} |
| 50 |
|
| 51 |
.column-status { |
| 52 |
width: 15%; |
| 53 |
} |
| 54 |
|
| 55 |
.column-date { |
| 56 |
width: 20%; |
| 57 |
} |
| 58 |
|
| 59 |
.column-actions { |
| 60 |
width: 25%; |
| 61 |
} |
| 62 |
|
| 63 |
.column-actions .button { |
| 64 |
margin-right: 5px; |
| 65 |
} |
| 66 |
|
| 67 |
.button-link-delete { |
| 68 |
color: #a00 !important; |
| 69 |
} |
| 70 |
|
| 71 |
.button-link-delete:hover { |
| 72 |
color: #dc3232 !important; |
| 73 |
} |
| 74 |
|