diff options
| author | Mark Otto <[email protected]> | 2011-06-28 11:56:49 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-06-28 11:56:49 -0700 |
| commit | 9660f6f18d610ee4b03c0e3bf2823393fc66640b (patch) | |
| tree | 281e07e2dc2e4b397df48534e3ceb7e0b547d819 /lib/patterns.less | |
| parent | 80abe21189992f165ff8c7091743bda727adfedd (diff) | |
| download | bootstrap-9660f6f18d610ee4b03c0e3bf2823393fc66640b.tar.xz bootstrap-9660f6f18d610ee4b03c0e3bf2823393fc66640b.zip | |
new buttons, new modal updates around spacing and placeholder content
Diffstat (limited to 'lib/patterns.less')
| -rw-r--r-- | lib/patterns.less | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/lib/patterns.less b/lib/patterns.less index d1043adc0..d9e0c6ca6 100644 --- a/lib/patterns.less +++ b/lib/patterns.less @@ -487,20 +487,16 @@ div.modal { top: 50%; left: 50%; z-index: 2000; - width: 620px; - height: 500px; - margin: -310px 0 0 -250px; + width: 560px; + margin: -280px 0 0 -250px; background-color: @white; border: 1px solid rgba(0,0,0,.3); .border-radius(6px); - .box-shadow(0 2px 6px rgba(0, 0, 0, 0.35)) + .box-shadow(0 3px 7px rgba(0,0,0,0.3)); + .background-clip(padding); .modal-header { - border-bottom:1px solid #eee; + border-bottom: 1px solid #eee; padding: 5px 20px; - h2 { - font-size: 20px; - font-weight: 200; - } a.close { position: absolute; right: 10px; @@ -510,4 +506,19 @@ div.modal { font-size: 18px; } } + .modal-body { + padding: 20px; + } + .modal-footer { + background-color: #eee; + padding: 14px 20px 15px; + border-top: 1px solid #ddd; + .border-radius(0 0 6px 6px); + .box-shadow(inset 0 1px 0 #fff); + .clearfix(); + .btn { + float: right; + margin-left: 10px; + } + } } |
