admin.css
6 months ago
bootstrap.min.css
6 months ago
crawler.css
6 months ago
select2.min.css
6 months ago
crawler.css
398 lines
| 1 | #crawler_dialog { |
| 2 | position: fixed; |
| 3 | margin-left: 50%; |
| 4 | top: 100px; |
| 5 | left: -30%; |
| 6 | width: 60%; |
| 7 | padding: 0; |
| 8 | font-size: 13px; |
| 9 | z-index: 9998; |
| 10 | border: 1px solid #c3c4c7; |
| 11 | max-width: unset; |
| 12 | min-width: unset; |
| 13 | border-radius: 5px; |
| 14 | } |
| 15 | |
| 16 | #crawler_dialog div.card-block { |
| 17 | height: 400px; |
| 18 | overflow: hidden; |
| 19 | padding: 10px; |
| 20 | } |
| 21 | |
| 22 | #crawler_dialog label.analysis-labels { |
| 23 | margin-bottom: .25rem; |
| 24 | min-width: 0; |
| 25 | display: table; |
| 26 | font-size: 14px; |
| 27 | } |
| 28 | |
| 29 | #crawler_dialog label.analysis-labels.label-results { |
| 30 | margin-top: 10px; |
| 31 | display: block; |
| 32 | cursor: auto; |
| 33 | } |
| 34 | |
| 35 | #crawler_dialog label.analysis-labels.label-results.bg-danger { |
| 36 | display: inline-block; |
| 37 | } |
| 38 | |
| 39 | #crawler_dialog input.analysis-input { |
| 40 | width: 60%; |
| 41 | height: 40px; |
| 42 | padding: 5px 5px 5px 40px; |
| 43 | margin: 0 10px 10px 0 !important; |
| 44 | font-size: 18px; |
| 45 | color: #666; |
| 46 | background: url(../images/key.png) 3px 6px no-repeat; |
| 47 | box-sizing: border-box; |
| 48 | } |
| 49 | |
| 50 | #crawler_dialog input.analysis-input:focus { |
| 51 | border-color: rgb(82, 168, 236); |
| 52 | } |
| 53 | |
| 54 | #crawler_dialog input.analysis-input.error, |
| 55 | #crawler_dialog input.analysis-input.error:focus { |
| 56 | border: 2px solid #d9534f !important; |
| 57 | box-shadow: none; |
| 58 | } |
| 59 | |
| 60 | #start_analysis, #stop_analysis, #start_wizard { |
| 61 | padding: 8px 10px; |
| 62 | margin-top: -6px; |
| 63 | line-height: normal; |
| 64 | } |
| 65 | |
| 66 | #start_analysis, #stop_analysis { |
| 67 | display: inline-flex; |
| 68 | align-items: center; |
| 69 | } |
| 70 | |
| 71 | #crawler_dialog #start_analysis span.crawler-cogicon, |
| 72 | #crawler_dialog #stop_analysis span.crawler-cogicon { |
| 73 | margin-right: 4px; |
| 74 | display: inline-block; |
| 75 | width: 16px; |
| 76 | height: 16px; |
| 77 | background: url(../images/cog.png) 0 0 no-repeat; |
| 78 | box-shadow: none; |
| 79 | border-radius: 3px; |
| 80 | } |
| 81 | |
| 82 | #crawler_dialog #start_analysis, |
| 83 | #crawler_dialog #stop_analysis { |
| 84 | margin-right: 8px; |
| 85 | } |
| 86 | |
| 87 | #crawler_dialog #start_wizard span.crawler-settingsicon { |
| 88 | margin-right: 4px; |
| 89 | display: inline-block; |
| 90 | width: 16px; |
| 91 | height: 16px; |
| 92 | background: url(../images/cog.png) 0 0 no-repeat; |
| 93 | box-shadow: none; |
| 94 | border-radius: 3px; |
| 95 | } |
| 96 | |
| 97 | #crawler_dialog #start_analysis span.crawler-cogicon.running, |
| 98 | #crawler_dialog #stop_analysis span.crawler-cogicon.running, |
| 99 | #crawler_dialog #start_wizard span.crawler-settingsicon.running, |
| 100 | #crawler_dialog span.crawler-url-spinner { |
| 101 | animation: spin 2s infinite linear; |
| 102 | } |
| 103 | |
| 104 | #crawler_dialog span.crawler-url-spinner { |
| 105 | font-family: sans-serif; |
| 106 | display: inline-block; |
| 107 | font-size: 14px; |
| 108 | line-height: 14px; |
| 109 | transform-origin: 45% 52%; |
| 110 | } |
| 111 | |
| 112 | #crawler_dialog #linkopener { |
| 113 | cursor: pointer; |
| 114 | border-radius: 2px; |
| 115 | } |
| 116 | |
| 117 | #crawler_status.running { |
| 118 | animation: textani .9s infinite linear; |
| 119 | } |
| 120 | |
| 121 | #crawler_dialog ul.analysis-results-cookies, |
| 122 | #crawler_dialog ul.analysis-results-cookies li, |
| 123 | #crawler_dialog ul.analysis-results-domains, |
| 124 | #crawler_dialog ul.analysis-results-domains li { |
| 125 | list-style-type: none; |
| 126 | margin: 0; |
| 127 | padding: 0; |
| 128 | } |
| 129 | |
| 130 | #crawler_dialog ul.analysis-results-cookies li, |
| 131 | #crawler_dialog ul.analysis-results-domains li { |
| 132 | padding: 5px; |
| 133 | display: flex; |
| 134 | } |
| 135 | |
| 136 | #crawler_dialog ul.analysis-results-cookies li > span, |
| 137 | #crawler_dialog ul.analysis-results-domains li > span { |
| 138 | flex: 1 1 0; |
| 139 | } |
| 140 | |
| 141 | #crawler_dialog ul.analysis-results-cookies li:first-child, |
| 142 | #crawler_dialog ul.analysis-results-domains li:first-child { |
| 143 | background-color: #e4e4e4; |
| 144 | } |
| 145 | |
| 146 | #crawler_dialog ul.analysis-results-cookies li:first-child span, |
| 147 | #crawler_dialog ul.analysis-results-domains li:first-child span { |
| 148 | font-weight: bold; |
| 149 | } |
| 150 | |
| 151 | #crawler_dialog ul.analysis-results-domains li > span a { |
| 152 | display: inline-block; |
| 153 | } |
| 154 | |
| 155 | #crawler_dialog div.text-success { |
| 156 | color: #457d54; |
| 157 | font-size: 14px; |
| 158 | } |
| 159 | |
| 160 | #crawler_dialog small.text-muted { |
| 161 | color: #1c1c1c !important; |
| 162 | opacity: .9; |
| 163 | font-size: 12px; |
| 164 | } |
| 165 | |
| 166 | #crawler_dialog form.export-xml-sitemap { |
| 167 | float: right; |
| 168 | } |
| 169 | |
| 170 | div.text-muted.text-center { |
| 171 | display:block; |
| 172 | font-size:13px; |
| 173 | font-weight:400; |
| 174 | line-height:19.5px; |
| 175 | opacity: 0.7; |
| 176 | padding: 16px; |
| 177 | text-align:center; |
| 178 | } |
| 179 | |
| 180 | a.hasAuditTooltip:hover { |
| 181 | text-decoration: none; |
| 182 | } |
| 183 | |
| 184 | @media ( max-width:800px ) { |
| 185 | #crawler_dialog input.analysis-input { |
| 186 | width: 100%; |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | label.closedialog { |
| 191 | position: absolute; |
| 192 | right: 5px; |
| 193 | top: 5px; |
| 194 | font-size: 22px; |
| 195 | cursor: pointer; |
| 196 | } |
| 197 | |
| 198 | span.label-with-badge { |
| 199 | line-height: unset; |
| 200 | font-size: 14px; |
| 201 | padding: 4px 10px; |
| 202 | } |
| 203 | |
| 204 | span.label-with-badge span.badge { |
| 205 | background-color: #FFF; |
| 206 | color: #c47300; |
| 207 | } |
| 208 | |
| 209 | span.label-with-badge.bg-success span.badge { |
| 210 | background-color: #FFF; |
| 211 | color: #2f7d32; |
| 212 | } |
| 213 | |
| 214 | #crawler_status { |
| 215 | margin: 2px 0 2px 5px; |
| 216 | font-size: 14px; |
| 217 | padding: 3px 6px; |
| 218 | line-height: 14px; |
| 219 | margin-inline-end: 0; |
| 220 | } |
| 221 | |
| 222 | #crawler_dialog div.card-header { |
| 223 | padding: 15px; |
| 224 | } |
| 225 | |
| 226 | #crawler_dialog div.card-header h3 { |
| 227 | margin: 0; |
| 228 | color: #FFF; |
| 229 | } |
| 230 | |
| 231 | #crawler_dialog div.card-header label.fas { |
| 232 | color: #FFF; |
| 233 | } |
| 234 | |
| 235 | div.trigger_dialog:not(.noduplicates), div.trigger_content_analysis { |
| 236 | cursor: pointer; |
| 237 | } |
| 238 | |
| 239 | div.trigger_content_analysis { |
| 240 | border: 2px solid #6d6d6d; |
| 241 | border-radius: 15px; |
| 242 | width: 24px; |
| 243 | height: 48px; |
| 244 | box-sizing: content-box; |
| 245 | padding: 4px 0 4px 0; |
| 246 | } |
| 247 | |
| 248 | div.trigger_content_analysis_red { |
| 249 | background-color: #d9534f; |
| 250 | width: 16px; |
| 251 | height: 16px; |
| 252 | border-radius: 50%; |
| 253 | margin: auto; |
| 254 | } |
| 255 | |
| 256 | div.trigger_content_analysis_yellow { |
| 257 | background-color: #f89406; |
| 258 | width: 16px; |
| 259 | height: 16px; |
| 260 | border-radius: 50%; |
| 261 | margin: auto; |
| 262 | } |
| 263 | |
| 264 | div.trigger_content_analysis_green { |
| 265 | background-color: #3c763d; |
| 266 | width: 16px; |
| 267 | height: 16px; |
| 268 | border-radius: 50%; |
| 269 | margin: auto; |
| 270 | } |
| 271 | |
| 272 | div.trigger_content_analysis + div.tooltip { |
| 273 | left: auto; |
| 274 | right: 56px; |
| 275 | left: -150px !important; |
| 276 | } |
| 277 | |
| 278 | a[data-role=link] { |
| 279 | display: block; |
| 280 | padding-right: 15px; |
| 281 | } |
| 282 | |
| 283 | /** |
| 284 | * Flexbox results |
| 285 | */ |
| 286 | div.flexbox-container-analysis { |
| 287 | display: flex; |
| 288 | } |
| 289 | |
| 290 | #crawler_container { |
| 291 | width: 100%; |
| 292 | } |
| 293 | |
| 294 | #crawler_iframe { |
| 295 | width: 100%; |
| 296 | height: 100%; |
| 297 | } |
| 298 | |
| 299 | #crawler_container div.text-primary { |
| 300 | color: #d43900 !important; |
| 301 | font-size: 14px; |
| 302 | } |
| 303 | |
| 304 | #cookie_results_container, #domains_results_container { |
| 305 | flex: 1 1 auto; |
| 306 | background-color: #f8f8f8; |
| 307 | border-radius: 4px; |
| 308 | } |
| 309 | |
| 310 | #cookie_results_container { |
| 311 | margin-right: 10px; |
| 312 | } |
| 313 | |
| 314 | #cookie_results_container span.badge { |
| 315 | font-size: 16px; |
| 316 | font-weight: normal; |
| 317 | padding: 15px 20px; |
| 318 | } |
| 319 | |
| 320 | #cookie_results_container a.hasAuditTooltip, |
| 321 | #cookie_results_container span.hasCookieValue > span { |
| 322 | display: inline-block; |
| 323 | max-width: 300px; |
| 324 | word-break: break-all; |
| 325 | } |
| 326 | |
| 327 | #domains_results_container a.hasAuditTooltip { |
| 328 | display: block; |
| 329 | max-width: 400px; |
| 330 | word-break: break-all; |
| 331 | } |
| 332 | |
| 333 | #crawler_dialog.card div.card-header { |
| 334 | color: #ffffff; |
| 335 | background-color: #2271b1; |
| 336 | border-color: #2271b1; |
| 337 | border-top-right-radius: 5px; |
| 338 | border-top-left-radius: 5px; |
| 339 | } |
| 340 | |
| 341 | #crawler_dialog.card div.card-block { |
| 342 | background-color: #FFF; |
| 343 | } |
| 344 | |
| 345 | #crawler_dialog.card div.card-footer { |
| 346 | padding: 10px 15px; |
| 347 | background-color: #f5f5f5; |
| 348 | border-top: 1px solid #dddddd; |
| 349 | border-bottom-right-radius: 5px; |
| 350 | border-bottom-left-radius: 5px; |
| 351 | } |
| 352 | |
| 353 | #content *.bg-success, #crawler_dialog *.bg-success { |
| 354 | color: #fff; |
| 355 | background-color: #2f7d32 !important; |
| 356 | } |
| 357 | |
| 358 | #content *.bg-warning, #crawler_dialog *.bg-warning { |
| 359 | color: #fff; |
| 360 | background-color: #d43900 !important; |
| 361 | } |
| 362 | |
| 363 | #content *.bg-info, #crawler_dialog *.bg-info { |
| 364 | color: #fff; |
| 365 | background-color: #108193 !important; |
| 366 | } |
| 367 | |
| 368 | #content *.bg-danger, #crawler_dialog *.bg-danger { |
| 369 | color: #fff; |
| 370 | background-color: #c52827 !important; |
| 371 | } |
| 372 | |
| 373 | @media (max-width: 1024px) { |
| 374 | #crawler_dialog { |
| 375 | width: 90%; |
| 376 | left: -45%; |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | @media ( max-width:1280px ) { |
| 381 | div.flexbox-container-analysis { |
| 382 | display: block; |
| 383 | } |
| 384 | #domains_results_container a.hasAuditTooltip { |
| 385 | max-width: 100%; |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | @keyframes spin { |
| 390 | 0% {transform: rotate(0deg);} |
| 391 | 100% {transform: rotate(360deg);} |
| 392 | } |
| 393 | |
| 394 | @keyframes textani { |
| 395 | 0% {opacity: 1} |
| 396 | 50% {opacity: .8} |
| 397 | 100% {opacity: 1} |
| 398 | } |