Project

General

Profile

Patch #30433 » flash-notice-animation-success-only-ie11compatible.patch

Anonymous, 2019-01-29 10:48

View differences:

public/stylesheets/application.css (working copy)
914 917
  background-color: #dfffdf;
915 918
  border-color: #9fcf9f;
916 919
  color: #005f00;
920
  animation: collapseNotification 3s ease-in-out forwards;
917 921
}
918 922

  
919 923
div.flash.warning, .conflict {
......
1552 1556
  max-height: 100%;
1553 1557
  max-width: 100%;
1554 1558
}
1559

  
1560
/***** Animations section *****/
1561
@keyframes collapseNotification {
1562
  0%, 90% {
1563
    opacity: 1;
1564
    border-style: solid;
1565
    background-size: 16px;
1566
    font-size: 1em;
1567
    padding: 6px 4px 6px 30px;
1568
    margin: 8px 0px 12px 0px;
1569
  }
1570
  100% {
1571
    opacity: 0;
1572
    border-style: none;
1573
    background-size: 0;
1574
    font-size: 0;
1575
    padding: 0;
1576
    margin: 0;
1577
    display: none;
1578
  }
1579
}
(2-2/2)