autoload-optimizer
Last commit date
autoload-optimizer.php
1 year ago
autoload-script.js
1 year ago
autoload-style.css
1 year ago
readme.txt
1 year ago
autoload-style.css
94 lines
| 1 | /* Basic styling for the plugin */ |
| 2 | .welcome-screen { |
| 3 | margin-bottom: 20px; |
| 4 | } |
| 5 | |
| 6 | .database-info { |
| 7 | margin-bottom: 20px; |
| 8 | } |
| 9 | |
| 10 | .nav-tab-wrapper { |
| 11 | margin-bottom: 20px; |
| 12 | } |
| 13 | |
| 14 | .tab-content { |
| 15 | display: none; |
| 16 | } |
| 17 | |
| 18 | .tab-content.active { |
| 19 | display: block; |
| 20 | } |
| 21 | |
| 22 | /* Button styling */ |
| 23 | .button { |
| 24 | padding: 5px 10px; |
| 25 | border: none; |
| 26 | border-radius: 3px; |
| 27 | cursor: pointer; |
| 28 | font-size: 14px; |
| 29 | } |
| 30 | |
| 31 | .button-primary { |
| 32 | background-color: #0073aa; |
| 33 | color: #fff; |
| 34 | } |
| 35 | |
| 36 | .button-primary:hover { |
| 37 | background-color: #005177; |
| 38 | } |
| 39 | |
| 40 | .button-danger { |
| 41 | background-color: #dc3232; |
| 42 | color: #fff; |
| 43 | } |
| 44 | |
| 45 | .button-danger:hover { |
| 46 | background-color: #a00; |
| 47 | } |
| 48 | |
| 49 | /* Popup modal styling */ |
| 50 | .popup-modal { |
| 51 | position: fixed; |
| 52 | top: 0; |
| 53 | left: 0; |
| 54 | width: 100%; |
| 55 | height: 100%; |
| 56 | background: rgba(0, 0, 0, 0.8); |
| 57 | display: none; |
| 58 | justify-content: center; |
| 59 | align-items: center; |
| 60 | z-index: 9999; |
| 61 | } |
| 62 | |
| 63 | .popup-content { |
| 64 | background: #fff; |
| 65 | padding: 20px; |
| 66 | border-radius: 5px; |
| 67 | max-width: 80%; |
| 68 | max-height: 80%; |
| 69 | overflow: auto; |
| 70 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
| 71 | } |
| 72 | |
| 73 | .popup-content h3 { |
| 74 | margin-top: 0; |
| 75 | } |
| 76 | |
| 77 | .popup-content pre { |
| 78 | |
| 79 | padding: 10px; |
| 80 | border-radius: 3px; |
| 81 | overflow-x: auto; |
| 82 | } |
| 83 | |
| 84 | .popup-content #close-popup { |
| 85 | margin-top: 10px; |
| 86 | } |
| 87 | |
| 88 | .popup-content { |
| 89 | position: fixed; |
| 90 | top: 50%; |
| 91 | left: 50%; |
| 92 | transform: translate(-50%, -50%); |
| 93 | width: 50%; |
| 94 | } |