modals.less 1.53 KB
Newer Older
1
2
3
// MODALS
// ------

4
5
6
7
8
9
10
.modal-open {
  .dropdown-menu {  z-index: @zindexDropdown + @zindexModal }
  .dropdown.open { *z-index: @zindexDropdown + @zindexModal }
  .popover       {  z-index: @zindexPopover  + @zindexModal }
  .tooltip       {  z-index: @zindexTooltip  + @zindexModal }
}

11
12
13
14
15
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
16
  left: 0;
17
  z-index: @zindexModalBackdrop;
18
  background-color: @black;
19
20
21
22
  // Fade for backdrop
  &.fade { opacity: 0; }
}

23
24
.modal-backdrop,
.modal-backdrop.fade.in {
25
26
27
28
29
30
31
  .opacity(80);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
32
  z-index: @zindexModal;
33
34
  max-height: 500px;
  overflow: auto;
35
  width: 560px;
Mark Otto's avatar
Mark Otto committed
36
  margin: -250px 0 0 -280px;
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  background-color: @white;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.3);
  *border: 1px solid #999; /* IE6-7 */
  .border-radius(6px);
  .box-shadow(0 3px 7px rgba(0,0,0,0.3));
  .background-clip(padding-box);
  &.fade {
    .transition(e('opacity .3s linear, top .3s ease-out'));
    top: -25%;
  }
  &.fade.in { top: 50%; }
}
.modal-header {
  padding: 5px 15px;
52
  border-bottom: 1px solid #eee;
53
  // Close icon
54
  .close { margin-top: 2px; }
55
56
57
58
59
60
}
.modal-body {
  padding: 15px;
}
.modal-footer {
  padding: 14px 15px 15px;
61
62
  margin-bottom: 0;
  background-color: #f5f5f5;
63
64
65
66
67
68
69
  border-top: 1px solid #ddd;
  .border-radius(0 0 6px 6px);
  .box-shadow(inset 0 1px 0 @white);
  .clearfix();
  .btn {
    float: right;
    margin-left: 5px;
70
    margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
71
72
  }
}