Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/*!
2
 * Bootstrap Modal
3
 *
4
 * Copyright Jordan Schroter
5
 * Licensed under the Apache License v2.0
6
 * http://www.apache.org/licenses/LICENSE-2.0
7
 *
8
 * Boostrap 3 patch for for bootstrap-modal. Include BEFORE bootstrap-modal.css!
9
 */
10
 
11
body.modal-open,
12
.modal-open .navbar-fixed-top,
13
.modal-open .navbar-fixed-bottom {
14
  margin-right: 0;
15
}
16
 
17
.modal {
18
  left: 50%;
19
  bottom: auto;
20
  right: auto;
21
  padding: 0;
22
  width: 500px;
23
  margin-left: -250px;
24
  background-color: #ffffff;
25
  border: 1px solid #999999;
26
  border: 1px solid rgba(0, 0, 0, 0.2);
27
  border-radius: 6px;
28
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
29
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
30
  background-clip: padding-box;
31
}
32
 
33
.modal.container {
34
  max-width: none;
35
}