nakarte

Source code of https://map.sikmir.ru (fork)
git clone git://git.sikmir.ru/nakarte
Log | Files | Refs | LICENSE

style.css (478B)


      1 .alertify {
      2     z-index: 100000 !important;
      3     overflow: hidden;
      4 }
      5 
      6 .alertify .alert>*, .alertify .dialog>* {
      7     overflow-wrap: break-word;
      8 }
      9 
     10 .alertify .alert .msg, .alertify .dialog .msg {
     11     white-space: pre-line;
     12 }
     13 
     14 .alertify .alert, .alertify .dialog {
     15     overflow: auto;
     16     animation: alertifyMaxHeight 0.5s;
     17     animation-fill-mode: forwards;
     18 }
     19 
     20 @keyframes alertifyMaxHeight {
     21     from {
     22         max-height: inherit;
     23     }
     24     to {
     25         max-height: 100%;
     26     }
     27 }