Sha256: 164921b8d54a10d330835fd963c2b1c1948edd7f922034a80806e44e54596700

Contents?: true

Size: 1.6 KB

Versions: 67

Compression:

Stored size: 1.6 KB

Contents

// MODALS
// ------

.modal-open {
  .dropdown-menu {  z-index: $zindexDropdown + $zindexModal; }
  .dropdown.open { *z-index: $zindexDropdown + $zindexModal; }
  .popover       {  z-index: $zindexPopover  + $zindexModal; }
  .tooltip       {  z-index: $zindexTooltip  + $zindexModal; }
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: $zindexModalBackdrop;
  background-color: $black;
  // Fade for backdrop
  &.fade { opacity: 0; }
}

.modal-backdrop,
.modal-backdrop.fade.in {
  @include opacity(80);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: $zindexModal;
  max-height: 500px;
  overflow: auto;
  width: 560px;
  margin: -250px 0 0 -280px;
  background-color: $white;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.3);
  *border: 1px solid #999; /* IE6-7 */
  @include border-radius(6px);
  @include box-shadow(0 3px 7px rgba(0,0,0,0.3));
  @include background-clip(padding-box);
  &.fade {
    @include transition(#{'opacity .3s linear, top .3s ease-out'});
    top: -25%;
  }
  &.fade.in { top: 50%; }
}
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
  // Close icon
  .close { margin-top: 2px; }
}
.modal-body {
  padding: 15px;
}
.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  @include border-radius(0 0 6px 6px);
  @include box-shadow(inset 0 1px 0 $white);
  @include clearfix();
  .btn {
    float: right;
    margin-left: 5px;
    margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
  }
}

Version data entries

67 entries across 41 versions & 2 rubygems

Version Path
bootstrapped-rails-1.1.3 vendor/assets/twitter/scss/modals.scss
bootstrapped-rails-1.1.3 vendor/assets/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.2 vendor/assets/twitter/scss/modals.scss
bootstrapped-rails-1.1.2 vendor/assets/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.1.9 vendor/assets/twitter/scss/modals.scss
bootstrapped-rails-1.1.1.9 vendor/assets/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.1.8 vendor/assets/twitter/scss/modals.scss
bootstrapped-rails-1.1.1.8 vendor/assets/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.1.7 vendor/assets/twitter/scss/modals.scss
bootstrapped-rails-1.1.1.7 vendor/assets/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.1.6 vendor/assets/twitter/scss/modals.scss
bootstrapped-rails-1.1.1.6 vendor/assets/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.1.5 vendor/assets/twitter/scss/modals.scss
bootstrapped-rails-1.1.1.5 vendor/assets/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.1.4 vendor/assets/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.1.4 vendor/assets/twitter/scss/modals.scss
bootstrapped-rails-1.1.1.3 vendor/twitter/scss/modals.scss
bootstrapped-rails-1.1.1.3 vendor/stylesheets/bootstrapped/modals.scss
bootstrapped-rails-1.1.1.2 vendor/twitter/scss/modals.scss
bootstrapped-rails-1.1.1.2 vendor/stylesheets/bootstrapped/modals.scss