admin-menu.css
3 months ago
documentation.css
3 months ago
faq.css
3 months ago
import.css
3 months ago
settings.css
3 months ago
support.css
3 months ago
import.css
222 lines
| 1 | /* Header */ |
| 2 | |
| 3 | .helpdocs-header-controls { |
| 4 | display: flex; |
| 5 | align-items: center; |
| 6 | gap: 40px; |
| 7 | } |
| 8 | |
| 9 | .helpdocs-active-toggle { |
| 10 | display: flex; |
| 11 | align-items: center; |
| 12 | gap: 10px; |
| 13 | } |
| 14 | |
| 15 | .helpdocs-toggle-label { |
| 16 | font-weight: 600; |
| 17 | } |
| 18 | |
| 19 | .helpdocs-switch { |
| 20 | position: relative; |
| 21 | display: inline-block; |
| 22 | width: 40px; |
| 23 | height: 22px; |
| 24 | } |
| 25 | |
| 26 | .helpdocs-switch input { |
| 27 | opacity: 0; |
| 28 | width: 0; |
| 29 | height: 0; |
| 30 | } |
| 31 | |
| 32 | .helpdocs-slider { |
| 33 | position: absolute; |
| 34 | cursor: pointer; |
| 35 | top: 0; |
| 36 | left: 0; |
| 37 | right: 0; |
| 38 | bottom: 0; |
| 39 | background-color: #ccc; |
| 40 | transition: .4s; |
| 41 | border-radius: 34px; |
| 42 | } |
| 43 | |
| 44 | .helpdocs-slider:before { |
| 45 | position: absolute; |
| 46 | content: ""; |
| 47 | height: 16px; |
| 48 | width: 16px; |
| 49 | left: 3px; |
| 50 | bottom: 3px; |
| 51 | background-color: white; |
| 52 | transition: .4s; |
| 53 | border-radius: 50%; |
| 54 | } |
| 55 | |
| 56 | input:checked + .helpdocs-slider { |
| 57 | background-color: var(--helpdocs-color-header-bg); |
| 58 | } |
| 59 | |
| 60 | input:focus + .helpdocs-slider { |
| 61 | box-shadow: 0 0 1px var(--helpdocs-color-header-bg); |
| 62 | } |
| 63 | |
| 64 | input:checked + .helpdocs-slider:before { |
| 65 | transform: translateX(18px); |
| 66 | } |
| 67 | |
| 68 | #helpdocs-saved-success { |
| 69 | margin-left: 10px; |
| 70 | color: green; |
| 71 | font-weight: bold; |
| 72 | } |
| 73 | |
| 74 | #helpdocs-inactive-notice { |
| 75 | display: none; |
| 76 | background: linear-gradient(90deg, #dc3545 0%, #b02a37 100%); |
| 77 | color: #ffffff; |
| 78 | padding: 5px 20px; |
| 79 | border-radius: 8px; |
| 80 | font-size: 15px; |
| 81 | font-weight: 500; |
| 82 | box-shadow: 0 4px 14px rgba(220, 53, 69, 0.25); |
| 83 | } |
| 84 | |
| 85 | /* Container */ |
| 86 | |
| 87 | .helpdocs-full-width-box { |
| 88 | padding: 30px 20px; |
| 89 | } |
| 90 | |
| 91 | /* Instructions */ |
| 92 | |
| 93 | .helpdocs-instructions { |
| 94 | margin-top: 0; |
| 95 | } |
| 96 | |
| 97 | /* Fields */ |
| 98 | |
| 99 | #helpdocs_title_container { |
| 100 | margin-bottom: 1rem; |
| 101 | } |
| 102 | |
| 103 | #helpdocs_title_container, |
| 104 | #helpdocs_website_url_container { |
| 105 | display: flex; |
| 106 | flex-direction: column; |
| 107 | gap: 0.5rem; |
| 108 | } |
| 109 | |
| 110 | #helpdocs_title_container label, |
| 111 | #helpdocs_website_url_container label { |
| 112 | font-weight: 600; |
| 113 | } |
| 114 | |
| 115 | #helpdocs_title_container input, |
| 116 | #helpdocs_website_url_container input { |
| 117 | width: 400px; |
| 118 | max-width: 400px; |
| 119 | } |
| 120 | |
| 121 | #helpdocs_url_field { |
| 122 | display: flex; |
| 123 | gap: 10px; |
| 124 | } |
| 125 | |
| 126 | #helpdocs_fetch_remote_docs.helpdocs-button { |
| 127 | padding: 8px 12px !important; |
| 128 | } |
| 129 | |
| 130 | #helpdocs_tablenav_top .alignleft.actions { |
| 131 | display: flex; |
| 132 | gap: 10px; |
| 133 | align-items: center; |
| 134 | } |
| 135 | |
| 136 | #helpdocs_tablenav_top .helpdocs-all-checkbox { |
| 137 | margin-left: 20px; |
| 138 | } |
| 139 | |
| 140 | .helpdocs-all-checkbox { |
| 141 | margin-left: 15px; |
| 142 | display: inline-flex; |
| 143 | align-items: center; |
| 144 | font-size: 13px; |
| 145 | cursor: pointer; |
| 146 | } |
| 147 | |
| 148 | .helpdocs-all-checkbox input { |
| 149 | margin: 0 8px 0 0 !important; |
| 150 | } |
| 151 | |
| 152 | #helpdocs_imports_table input:disabled { |
| 153 | opacity: 0.6; |
| 154 | cursor: not-allowed; |
| 155 | } |
| 156 | |
| 157 | #helpdocs_imports_table input:disabled + strong { |
| 158 | color: #646970; |
| 159 | } |
| 160 | |
| 161 | .helpdocs-api-key-container { position: relative; display: inline-block; } |
| 162 | .helpdocs-toggle-visibility { |
| 163 | position: absolute; |
| 164 | right: 8px; |
| 165 | top: 50%; |
| 166 | transform: translateY(-50%); |
| 167 | cursor: pointer; |
| 168 | color: #72777c; |
| 169 | } |
| 170 | .helpdocs-toggle-visibility:hover { color: #2271b1; } |
| 171 | |
| 172 | /* Version Notice */ |
| 173 | |
| 174 | .helpdocs_warning_notice, |
| 175 | .helpdocs_error_notice { |
| 176 | display: block; |
| 177 | padding: 8px 12px; |
| 178 | font-size: 12px; |
| 179 | } |
| 180 | |
| 181 | .helpdocs_warning_notice { |
| 182 | border-left: 4px solid #ffc107; |
| 183 | background: #fff3cd; |
| 184 | } |
| 185 | |
| 186 | .helpdocs_error_notice { |
| 187 | border-left: 4px solid #dc3545; |
| 188 | background: #fbeaea; |
| 189 | } |
| 190 | |
| 191 | /* Table */ |
| 192 | |
| 193 | #helpdocs_remote_docs_wrapper, |
| 194 | #helpdocs_no_docs_found, |
| 195 | .helpdocs_warning_notice, |
| 196 | .helpdocs_error_notice { |
| 197 | margin-top: 2rem; |
| 198 | } |
| 199 | |
| 200 | #helpdocs_import_form { |
| 201 | margin-top: 2rem; |
| 202 | } |
| 203 | |
| 204 | #helpdocs_import_form .tablenav { |
| 205 | margin: 10px 0; |
| 206 | } |
| 207 | |
| 208 | #helpdocs_imports_table td .feed-checkbox { |
| 209 | margin: 0 0 0 8px; |
| 210 | } |
| 211 | |
| 212 | #helpdocs_imports_table th.column-feed { width: 50px; } |
| 213 | #helpdocs_imports_table th.column-toc { width: 70px; } |
| 214 | #helpdocs_imports_table th.column-action { width: 200px; } |
| 215 | |
| 216 | #helpdocs_imports_table .column-toc { |
| 217 | text-align: center; |
| 218 | } |
| 219 | |
| 220 | .helpdocs-clone-individual.button.updating-message:before { |
| 221 | margin: 5px 2px 0 -2px !important; |
| 222 | } |