|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
-
- #toast-container {
- width: 400px;
- }
-
- #toast-container .toast {
- float: right ;
- width: 400px ;
- opacity: 1 ;
- box-shadow: none !important;
- -moz-box-shadow: none !important;
- -o-box-shadow: none !important;
- -webkit-box-shadow: none !important;
-
- &.success {
- background-color: $success !important ;
- }
- &.danger, &.error {
- background-color: $danger !important ;
- }
- &.info {
- background-color: $info !important ;
- }
- &.warning {
- background-color: $warning !important ;
- }
- }
-
- #toast-container:before:hover {
- opacity: 1;
- cursor: pointer;
- }
-
- #toast-close-all {
- border: 0;
- position: absolute;
- bottom: 7px;
- left: -15px;
- pointer-events: auto;
- z-index: 1000;
- background: #BD362F;
- border-radius: 3px;
- color: #fff;
- opacity: 0.8;
- width: 50px;
- height: 50px;
- font-size: 20px;
- text-align: center;
-
- //@include text-shadow(0 1px 0 #999) ;
-
- border-radius: 50px ;
- }
-
|