1234567891011121314151617181920212223 |
- /* Internet Explorer 9 has some special quirks that are fixed here */
- /* The icons are not animated. */
- /* This file is automatically merged into sweet-alert.min.js through Gulp */
- /* Error icon */
- .sweet-alert .sa-icon.sa-error .sa-line.sa-left {
- -ms-transform: rotate(45deg)\9;
- }
- .sweet-alert .sa-icon.sa-error .sa-line.sa-right {
- -ms-transform: rotate(-45deg)\9;
- }
- /* Success icon */
- .sweet-alert .sa-icon.sa-success {
- border-color: transparent\9;
- }
- .sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
- -ms-transform: rotate(45deg)\9;
- }
- .sweet-alert .sa-icon.sa-success .sa-line.sa-long {
- -ms-transform: rotate(-45deg)\9;
- }
|