You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- #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 ;
- }
|