secure-scuttlebot classic

fix lightbox alignment

Changed files
+12 -4
patchbay
+12 -4
patchbay/style.css
··· 339 339 /* lightbox - used in message-confirm */ 340 340 341 341 .lightbox { 342 + position: fixed; 343 + top: 0; 344 + bottom: 0; 345 + left: 0 !important; 346 + right: 0; 342 347 overflow: auto; 343 348 padding: 1.5em; 349 + z-index: 2; 350 + } 351 + 352 + .lightbox__content > * { 344 353 margin-top: 3em; 345 354 margin-bottom: 3em; 355 + margin-left: auto; 356 + margin-right: auto; 346 357 width: 100%; 347 358 max-width: 600px; 348 359 max-height: calc(100vh - 6em); 349 360 background: #f5f5f5; 350 - margin-left: auto; 351 - margin-right: auto; 352 361 border: 1px solid #eee; 353 362 border-radius: .2em; 354 - z-index: 2; 355 363 } 356 364 357 365 /* searchprompt */ ··· 505 513 } 506 514 507 515 .menu, 508 - .lightbox { 516 + .lightbox__content > * { 509 517 background: #20232a; 510 518 border-color: #30343c; 511 519 }