admin.css in Auto Alt Text 2.4.1, at resources/css/admin.css
| 1 | .aat-options { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | background: #fff; |
| 5 | border: 1px solid #ddd; |
| 6 | padding: 20px; |
| 7 | margin-top: 20px; |
| 8 | |
| 9 | &.plugin-description { |
| 10 | padding: 20px 40px; |
| 11 | ul { |
| 12 | margin-top: 0; |
| 13 | } |
| 14 | p, li { |
| 15 | font-size: 16px; |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | & > div { |
| 20 | border-bottom: 1px solid #ededed; |
| 21 | padding: 20px; |
| 22 | |
| 23 | input[type="text"], |
| 24 | input[type="password"], |
| 25 | select, |
| 26 | textarea { |
| 27 | width: 100%; |
| 28 | min-width: 100%; |
| 29 | font-size: 16px; |
| 30 | padding: 3px 10px; |
| 31 | border: 1px solid #ccc; |
| 32 | } |
| 33 | } |
| 34 | label { |
| 35 | display: block; |
| 36 | font-weight: 600; |
| 37 | font-size: 16px; |
| 38 | margin-bottom: 5px; |
| 39 | } |
| 40 | p.description { |
| 41 | margin-top: 0; |
| 42 | margin-bottom: 10px; |
| 43 | } |
| 44 | |
| 45 | .plugin-option { |
| 46 | display: none; |
| 47 | } |
| 48 | |
| 49 | ul { |
| 50 | list-style: disc; |
| 51 | padding-left: 13px; |
| 52 | } |
| 53 | |
| 54 | #error-log { |
| 55 | width:98%; |
| 56 | height: 600px; |
| 57 | margin-bottom: 30px; |
| 58 | border: 1px solid #ccc; |
| 59 | border-radius: 5px; |
| 60 | color: #000; |
| 61 | padding: 10px; |
| 62 | background-color: #f0f0f1; |
| 63 | } |
| 64 | } |
| 65 |