Sha256: 21a5b78af159878ee974eb55d1893d604412dc49c163f4f8ac36b288ddec3880

Contents?: true

Size: 1.13 KB

Versions: 9

Compression:

Stored size: 1.13 KB

Contents

.toast {
  width: $toast-max-width;
  max-width: 100%;
  @include font-size($toast-font-size);
  color: $toast-color;
  pointer-events: auto;
  background-color: $toast-background-color;
  background-clip: padding-box;
  border: $toast-border-width solid $toast-border-color;
  box-shadow: $toast-box-shadow;
  @include border-radius($toast-border-radius);

  &:not(.showing):not(.show) {
    opacity: 0;
  }

  &.hide {
    display: none;
  }
}

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none;

  > :not(:last-child) {
    margin-bottom: $toast-spacing;
  }
}

.toast-header {
  display: flex;
  align-items: center;
  padding: $toast-padding-y $toast-padding-x;
  color: $toast-header-color;
  background-color: $toast-header-background-color;
  background-clip: padding-box;
  border-bottom: $toast-border-width solid $toast-header-border-color;
  @include border-top-radius(subtract($toast-border-radius, $toast-border-width));

  .btn-close {
    margin-right: $toast-padding-x / -2;
    margin-left: $toast-padding-x;
  }
}

.toast-body {
  padding: $toast-padding-x; // apply to both vertical and horizontal
}

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
infotorg-api-jekyll-theme-0.1.8 _sass/bootstrap/_toasts.scss
infotorg-api-jekyll-theme-0.1.7 _sass/bootstrap/_toasts.scss
infotorg-api-jekyll-theme-0.1.5 _sass/bootstrap/_toasts.scss
bootstrap-5.0.0.beta1 assets/stylesheets/bootstrap/_toasts.scss
infotorg-api-jekyll-theme-0.1.4 _sass/bootstrap/_toasts.scss
infotorg-api-jekyll-theme-0.1.3 _sass/bootstrap/_toasts.scss
infotorg-api-jekyll-theme-0.1.2 _sass/bootstrap/_toasts.scss
infotorg-api-jekyll-theme-0.1.1 _sass/bootstrap/_toasts.scss
infotorg-api-jekyll-theme-0.1.0 _sass/bootstrap/_toasts.scss