Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/monitor/data/scss/bootstrap/_toasts.scss is written in an unsupported language. File is not indexed.

0001 .toast {
0002   width: $toast-max-width;
0003   max-width: 100%;
0004   @include font-size($toast-font-size);
0005   color: $toast-color;
0006   pointer-events: auto;
0007   background-color: $toast-background-color;
0008   background-clip: padding-box;
0009   border: $toast-border-width solid $toast-border-color;
0010   box-shadow: $toast-box-shadow;
0011   @include border-radius($toast-border-radius);
0012 
0013   &:not(.showing):not(.show) {
0014     opacity: 0;
0015   }
0016 
0017   &.hide {
0018     display: none;
0019   }
0020 }
0021 
0022 .toast-container {
0023   width: max-content;
0024   max-width: 100%;
0025   pointer-events: none;
0026 
0027   > :not(:last-child) {
0028     margin-bottom: $toast-spacing;
0029   }
0030 }
0031 
0032 .toast-header {
0033   display: flex;
0034   align-items: center;
0035   padding: $toast-padding-y $toast-padding-x;
0036   color: $toast-header-color;
0037   background-color: $toast-header-background-color;
0038   background-clip: padding-box;
0039   border-bottom: $toast-border-width solid $toast-header-border-color;
0040   @include border-top-radius(subtract($toast-border-radius, $toast-border-width));
0041 
0042   .btn-close {
0043     margin-right: $toast-padding-x / -2;
0044     margin-left: $toast-padding-x;
0045   }
0046 }
0047 
0048 .toast-body {
0049   padding: $toast-padding-x; // apply to both vertical and horizontal
0050 }