Matthias Andreas Benkard | b382b10 | 2021-01-02 15:32:21 +0100 | [diff] [blame] | 1 | .pagination a {
|
| 2 | text-decoration: none !important;
|
| 3 | }
|
| 4 |
|
| 5 | .panel.panel-default {
|
| 6 | overflow: visible !important;
|
| 7 | }
|
| 8 |
|
| 9 | .table-responsive {
|
| 10 | overflow: visible !important;
|
| 11 | }
|
| 12 |
|
| 13 | .table-responsive {
|
| 14 | overflow-x: scroll !important;
|
| 15 | }
|
| 16 |
|
| 17 | .footer-add-item {
|
| 18 | display: block;
|
| 19 | text-align: center;
|
| 20 | font-style: italic;
|
| 21 | padding: 10px;
|
| 22 | background: #F5F5F5;
|
| 23 | }
|
| 24 |
|
| 25 | @media (min-width: 992px) {
|
| 26 | .container {
|
Matthias Andreas Benkard | 7b2a3a1 | 2021-08-16 10:57:25 +0200 | [diff] [blame] | 27 | width: 100%;
|
| 28 | }
|
| 29 | }
|
| 30 | @media (min-width: 1920px) {
|
| 31 | .container {
|
| 32 | width: 80%;
|
Matthias Andreas Benkard | b382b10 | 2021-01-02 15:32:21 +0100 | [diff] [blame] | 33 | }
|
| 34 | }
|
| 35 |
|
| 36 | .mass-actions-quarantine {
|
| 37 | user-select: none;
|
Matthias Andreas Benkard | 7b2a3a1 | 2021-08-16 10:57:25 +0200 | [diff] [blame] | 38 | padding: 10px;
|
Matthias Andreas Benkard | b382b10 | 2021-01-02 15:32:21 +0100 | [diff] [blame] | 39 | }
|
| 40 |
|
| 41 | .inputMissingAttr {
|
| 42 | border-color: #FF4136;
|
| 43 | }
|
| 44 |
|
| 45 | .modal#qidDetailModal p {
|
| 46 | word-break: break-all;
|
| 47 | }
|
| 48 |
|
| 49 | span#qid_detail_score {
|
| 50 | font-weight: 700;
|
| 51 | margin-left: 5px;
|
| 52 | }
|
| 53 |
|
| 54 | span.rspamd-symbol {
|
| 55 | display: inline-block;
|
| 56 | margin: 2px 6px 2px 0;
|
| 57 | border-radius: 4px;
|
| 58 | padding: 0 7px;
|
| 59 | }
|
| 60 |
|
| 61 | span.rspamd-symbol.positive {
|
| 62 | background: #4CAF50;
|
| 63 | border: 1px solid #4CAF50;
|
| 64 | color: white;
|
| 65 | }
|
| 66 |
|
| 67 | span.rspamd-symbol.negative {
|
| 68 | background: #ff4136;
|
| 69 | border: 1px solid #ff4136;
|
| 70 | color: white;
|
| 71 | }
|
| 72 |
|
| 73 | span.rspamd-symbol.neutral {
|
| 74 | background: #f5f5f5;
|
| 75 | color: #333;
|
| 76 | border: 1px solid #ccc;
|
| 77 | }
|
| 78 |
|
| 79 | span.rspamd-symbol span.score {
|
| 80 | font-weight: 700;
|
| 81 | }
|
| 82 |
|
| 83 | span.mail-address-item {
|
| 84 | background-color: #f5f5f5;
|
| 85 | border-radius: 4px;
|
| 86 | border: 1px solid #ccc;
|
| 87 | padding: 2px 7px;
|
| 88 | display: inline-block;
|
| 89 | margin: 2px 6px 2px 0;
|
| 90 | }
|
| 91 |
|
| 92 | table tbody tr {
|
| 93 | cursor: pointer;
|
| 94 | }
|
| 95 |
|
| 96 | table tbody tr td input[type="checkbox"] {
|
| 97 | cursor: pointer;
|
| 98 | }
|
| 99 | .label-rspamd-action {
|
| 100 | font-size:110%;
|
| 101 | margin:20px;
|
| 102 | }
|
Matthias Andreas Benkard | 7b2a3a1 | 2021-08-16 10:57:25 +0200 | [diff] [blame] | 103 |
|