gitea源码

12345678910111213141516171819202122232425262728
  1. /* These are the remnants of the fomantic dimmer module */
  2. .ui.dimmer {
  3. position: fixed;
  4. display: none;
  5. inset: 0;
  6. background: var(--color-overlay-backdrop);
  7. opacity: 0;
  8. z-index: 1000;
  9. overflow-y: auto;
  10. justify-content: center;
  11. padding: 8px 0;
  12. animation-name: fadein;
  13. animation-duration: .2s;
  14. user-select: none;
  15. }
  16. .ui.active.dimmer {
  17. display: flex;
  18. opacity: 1;
  19. }
  20. .ui.dimmer > .ui.modal {
  21. position: static;
  22. margin-top: auto !important;
  23. margin-bottom: auto !important;
  24. }