bootstrap-source/bootstrap-3.0.3/less Kopie/modals.less
author stetrabby <info@trabucchi.de>
Fri, 20 Dec 2013 22:49:16 +0100
changeset 54 0ded9d7748b7
permissions -rwxr-xr-x
initial less based on the pymove3d.css
info@54
     1
//
info@54
     2
// Modals
info@54
     3
// --------------------------------------------------
info@54
     4
info@54
     5
// .modal-open      - body class for killing the scroll
info@54
     6
// .modal           - container to scroll within
info@54
     7
// .modal-dialog    - positioning shell for the actual modal
info@54
     8
// .modal-content   - actual modal w/ bg and corners and shit
info@54
     9
info@54
    10
// Kill the scroll on the body
info@54
    11
.modal-open {
info@54
    12
  overflow: hidden;
info@54
    13
}
info@54
    14
info@54
    15
// Container that the modal scrolls within
info@54
    16
.modal {
info@54
    17
  display: none;
info@54
    18
  overflow: auto;
info@54
    19
  overflow-y: scroll;
info@54
    20
  position: fixed;
info@54
    21
  top: 0;
info@54
    22
  right: 0;
info@54
    23
  bottom: 0;
info@54
    24
  left: 0;
info@54
    25
  z-index: @zindex-modal-background;
info@54
    26
info@54
    27
  // When fading in the modal, animate it to slide down
info@54
    28
  &.fade .modal-dialog {
info@54
    29
    .translate(0, -25%);
info@54
    30
    .transition-transform(~"0.3s ease-out");
info@54
    31
  }
info@54
    32
  &.in .modal-dialog { .translate(0, 0)}
info@54
    33
}
info@54
    34
info@54
    35
// Shell div to position the modal with bottom padding
info@54
    36
.modal-dialog {
info@54
    37
  position: relative;
info@54
    38
  width: auto;
info@54
    39
  margin: 10px;
info@54
    40
  z-index: (@zindex-modal-background + 10);
info@54
    41
}
info@54
    42
info@54
    43
// Actual modal
info@54
    44
.modal-content {
info@54
    45
  position: relative;
info@54
    46
  background-color: @modal-content-bg;
info@54
    47
  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)
info@54
    48
  border: 1px solid @modal-content-border-color;
info@54
    49
  border-radius: @border-radius-large;
info@54
    50
  .box-shadow(0 3px 9px rgba(0,0,0,.5));
info@54
    51
  background-clip: padding-box;
info@54
    52
  // Remove focus outline from opened modal
info@54
    53
  outline: none;
info@54
    54
}
info@54
    55
info@54
    56
// Modal background
info@54
    57
.modal-backdrop {
info@54
    58
  position: fixed;
info@54
    59
  top: 0;
info@54
    60
  right: 0;
info@54
    61
  bottom: 0;
info@54
    62
  left: 0;
info@54
    63
  z-index: (@zindex-modal-background - 10);
info@54
    64
  background-color: @modal-backdrop-bg;
info@54
    65
  // Fade for backdrop
info@54
    66
  &.fade { .opacity(0); }
info@54
    67
  &.in { .opacity(.5); }
info@54
    68
}
info@54
    69
info@54
    70
// Modal header
info@54
    71
// Top section of the modal w/ title and dismiss
info@54
    72
.modal-header {
info@54
    73
  padding: @modal-title-padding;
info@54
    74
  border-bottom: 1px solid @modal-header-border-color;
info@54
    75
  min-height: (@modal-title-padding + @modal-title-line-height);
info@54
    76
}
info@54
    77
// Close icon
info@54
    78
.modal-header .close {
info@54
    79
  margin-top: -2px;
info@54
    80
}
info@54
    81
info@54
    82
// Title text within header
info@54
    83
.modal-title {
info@54
    84
  margin: 0;
info@54
    85
  line-height: @modal-title-line-height;
info@54
    86
}
info@54
    87
info@54
    88
// Modal body
info@54
    89
// Where all modal content resides (sibling of .modal-header and .modal-footer)
info@54
    90
.modal-body {
info@54
    91
  position: relative;
info@54
    92
  padding: @modal-inner-padding;
info@54
    93
}
info@54
    94
info@54
    95
// Footer (for actions)
info@54
    96
.modal-footer {
info@54
    97
  margin-top: 15px;
info@54
    98
  padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;
info@54
    99
  text-align: right; // right align buttons
info@54
   100
  border-top: 1px solid @modal-footer-border-color;
info@54
   101
  .clearfix(); // clear it in case folks use .pull-* classes on buttons
info@54
   102
info@54
   103
  // Properly space out buttons
info@54
   104
  .btn + .btn {
info@54
   105
    margin-left: 5px;
info@54
   106
    margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
info@54
   107
  }
info@54
   108
  // but override that for button groups
info@54
   109
  .btn-group .btn + .btn {
info@54
   110
    margin-left: -1px;
info@54
   111
  }
info@54
   112
  // and override it for block buttons as well
info@54
   113
  .btn-block + .btn-block {
info@54
   114
    margin-left: 0;
info@54
   115
  }
info@54
   116
}
info@54
   117
info@54
   118
// Scale up the modal
info@54
   119
@media screen and (min-width: @screen-sm-min) {
info@54
   120
info@54
   121
  .modal-dialog {
info@54
   122
    width: 600px;
info@54
   123
    margin: 30px auto;
info@54
   124
  }
info@54
   125
  .modal-content {
info@54
   126
    .box-shadow(0 5px 15px rgba(0,0,0,.5));
info@54
   127
  }
info@54
   128
info@54
   129
}
Impressum Datenschutzerklärung