css-bootstrap-rails 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,8 @@
1
1
  module Css
2
2
  module Bootstrap
3
3
  module Rails
4
- VERSION = "0.0.1"
5
- TWITTER_BOOTSTRAP = "1.2.0"
4
+ VERSION = "0.0.2"
5
+ TWITTER_BOOTSTRAP = "1.3.0"
6
6
  end
7
7
  end
8
8
  end
@@ -6,7 +6,7 @@
6
6
  * http://www.apache.org/licenses/LICENSE-2.0
7
7
  *
8
8
  * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
- * Date: Fri Sep 2 15:07:03 PDT 2011
9
+ * Date: Fri Sep 16 14:07:03 PDT 2011
10
10
  */
11
11
  /* Reset.less
12
12
  * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
@@ -94,6 +94,9 @@ html {
94
94
  a:focus {
95
95
  outline: thin dotted;
96
96
  }
97
+ a:hover, a:active {
98
+ outline: 0;
99
+ }
97
100
  article,
98
101
  aside,
99
102
  details,
@@ -167,265 +170,225 @@ textarea {
167
170
  overflow: auto;
168
171
  vertical-align: top;
169
172
  }
170
- /* Preboot.less
171
- * Variables and mixins to pre-ignite any new web development project
172
- * ------------------------------------------------------------------ */
173
- .clearfix {
173
+ /* Variables.less
174
+ * Variables to customize the look and feel of Bootstrap
175
+ * ----------------------------------------------------- */
176
+ /* Variables.less
177
+ * Snippets of reusable CSS to develop faster and keep code readable
178
+ * ----------------------------------------------------------------- */
179
+ /*
180
+ * Scaffolding
181
+ * Basic and global styles for generating a grid system, structural layout, and page templates
182
+ * ------------------------------------------------------------------------------------------- */
183
+ html, body {
184
+ background-color: #ffffff;
185
+ }
186
+ body {
187
+ margin: 0;
188
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
189
+ font-size: 13px;
190
+ font-weight: normal;
191
+ line-height: 18px;
192
+ color: #404040;
193
+ }
194
+ .container {
195
+ width: 940px;
196
+ margin-left: auto;
197
+ margin-right: auto;
174
198
  zoom: 1;
175
199
  }
176
- .clearfix:before, .clearfix:after {
200
+ .container:before, .container:after {
177
201
  display: table;
178
202
  content: "";
203
+ zoom: 1;
204
+ *display: inline;
179
205
  }
180
- .clearfix:after {
206
+ .container:after {
181
207
  clear: both;
182
208
  }
183
- .center-block {
184
- display: block;
185
- margin: 0 auto;
186
- }
187
- .container {
188
- width: 940px;
189
- margin: 0 auto;
209
+ .container-fluid {
210
+ position: relative;
211
+ min-width: 940px;
212
+ padding-left: 20px;
213
+ padding-right: 20px;
190
214
  zoom: 1;
191
- margin-bottom: 18px;
192
215
  }
193
- .container:before, .container:after {
216
+ .container-fluid:before, .container-fluid:after {
194
217
  display: table;
195
218
  content: "";
219
+ zoom: 1;
220
+ *display: inline;
196
221
  }
197
- .container:after {
222
+ .container-fluid:after {
198
223
  clear: both;
199
224
  }
200
- .btn.danger,
201
- .alert-message.danger,
202
- .btn.danger:hover,
203
- .alert-message.danger:hover,
204
- .btn.error,
205
- .alert-message.error,
206
- .btn.error:hover,
207
- .alert-message.error:hover,
208
- .btn.success,
209
- .alert-message.success,
210
- .btn.success:hover,
211
- .alert-message.success:hover,
212
- .btn.info,
213
- .alert-message.info,
214
- .btn.info:hover,
215
- .alert-message.info:hover {
216
- color: #ffffff;
225
+ .container-fluid > .sidebar {
226
+ float: left;
227
+ width: 220px;
217
228
  }
218
- .btn.danger,
219
- .alert-message.danger,
220
- .btn.error,
221
- .alert-message.error {
222
- background-color: #c43c35;
223
- background-repeat: repeat-x;
224
- background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
225
- background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
226
- background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
227
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
228
- background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
229
- background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
230
- background-image: linear-gradient(top, #ee5f5b, #c43c35);
231
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
232
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
233
- border-color: #c43c35 #c43c35 #882a25;
234
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
229
+ .container-fluid > .content {
230
+ margin-left: 240px;
235
231
  }
236
- .btn.success, .alert-message.success {
237
- background-color: #57a957;
238
- background-repeat: repeat-x;
239
- background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
240
- background-image: -moz-linear-gradient(top, #62c462, #57a957);
241
- background-image: -ms-linear-gradient(top, #62c462, #57a957);
242
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
243
- background-image: -webkit-linear-gradient(top, #62c462, #57a957);
244
- background-image: -o-linear-gradient(top, #62c462, #57a957);
245
- background-image: linear-gradient(top, #62c462, #57a957);
246
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
247
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
248
- border-color: #57a957 #57a957 #3d773d;
249
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
232
+ a {
233
+ color: #0069d6;
234
+ text-decoration: none;
235
+ line-height: inherit;
236
+ font-weight: inherit;
250
237
  }
251
- .btn.info, .alert-message.info {
252
- background-color: #339bb9;
253
- background-repeat: repeat-x;
254
- background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
255
- background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
256
- background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
257
- background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
258
- background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
259
- background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
260
- background-image: linear-gradient(top, #5bc0de, #339bb9);
261
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
262
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
263
- border-color: #339bb9 #339bb9 #22697d;
264
- border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
238
+ a:hover {
239
+ color: #00438a;
240
+ text-decoration: underline;
241
+ }
242
+ .pull-right {
243
+ float: right;
244
+ }
245
+ .pull-left {
246
+ float: left;
247
+ }
248
+ .hide {
249
+ display: none;
250
+ }
251
+ .show {
252
+ display: block;
265
253
  }
266
- /*
267
- * Scaffolding
268
- * Basic and global styles for generating a grid system, structural layout, and page templates
269
- * ------------------------------------------------------------------------------------------- */
270
254
  .row {
271
255
  zoom: 1;
272
- margin-bottom: 18px;
273
256
  margin-left: -20px;
274
257
  }
275
258
  .row:before, .row:after {
276
259
  display: table;
277
260
  content: "";
261
+ zoom: 1;
262
+ *display: inline;
278
263
  }
279
264
  .row:after {
280
265
  clear: both;
281
266
  }
282
- .row [class^="span"] {
267
+ [class*="span"] {
283
268
  display: inline;
284
269
  float: left;
285
270
  margin-left: 20px;
286
271
  }
287
- .row .span1 {
272
+ .span1 {
288
273
  width: 40px;
289
274
  }
290
- .row .span2 {
275
+ .span2 {
291
276
  width: 100px;
292
277
  }
293
- .row .span3 {
278
+ .span3 {
294
279
  width: 160px;
295
280
  }
296
- .row .span4 {
281
+ .span4 {
297
282
  width: 220px;
298
283
  }
299
- .row .span5 {
284
+ .span5 {
300
285
  width: 280px;
301
286
  }
302
- .row .span6 {
287
+ .span6 {
303
288
  width: 340px;
304
289
  }
305
- .row .span7 {
290
+ .span7 {
306
291
  width: 400px;
307
292
  }
308
- .row .span8 {
293
+ .span8 {
309
294
  width: 460px;
310
295
  }
311
- .row .span9 {
296
+ .span9 {
312
297
  width: 520px;
313
298
  }
314
- .row .span10 {
299
+ .span10 {
315
300
  width: 580px;
316
301
  }
317
- .row .span11 {
302
+ .span11 {
318
303
  width: 640px;
319
304
  }
320
- .row .span12 {
305
+ .span12 {
321
306
  width: 700px;
322
307
  }
323
- .row .span13 {
308
+ .span13 {
324
309
  width: 760px;
325
310
  }
326
- .row .span14 {
311
+ .span14 {
327
312
  width: 820px;
328
313
  }
329
- .row .span15 {
314
+ .span15 {
330
315
  width: 880px;
331
316
  }
332
- .row .span16 {
317
+ .span16 {
333
318
  width: 940px;
334
319
  }
335
- .row .offset1 {
320
+ .span17 {
321
+ width: 1000px;
322
+ }
323
+ .span18 {
324
+ width: 1060px;
325
+ }
326
+ .span19 {
327
+ width: 1120px;
328
+ }
329
+ .span20 {
330
+ width: 1180px;
331
+ }
332
+ .span21 {
333
+ width: 1240px;
334
+ }
335
+ .span22 {
336
+ width: 1300px;
337
+ }
338
+ .span23 {
339
+ width: 1360px;
340
+ }
341
+ .span24 {
342
+ width: 1420px;
343
+ }
344
+ .offset1 {
336
345
  margin-left: 80px;
337
346
  }
338
- .row .offset2 {
347
+ .offset2 {
339
348
  margin-left: 140px;
340
349
  }
341
- .row .offset3 {
350
+ .offset3 {
342
351
  margin-left: 200px;
343
352
  }
344
- .row .offset4 {
353
+ .offset4 {
345
354
  margin-left: 260px;
346
355
  }
347
- .row .offset5 {
356
+ .offset5 {
348
357
  margin-left: 320px;
349
358
  }
350
- .row .offset6 {
359
+ .offset6 {
351
360
  margin-left: 380px;
352
361
  }
353
- .row .offset7 {
362
+ .offset7 {
354
363
  margin-left: 440px;
355
364
  }
356
- .row .offset8 {
365
+ .offset8 {
357
366
  margin-left: 500px;
358
367
  }
359
- .row .offset9 {
368
+ .offset9 {
360
369
  margin-left: 560px;
361
370
  }
362
- .row .offset10 {
371
+ .offset10 {
363
372
  margin-left: 620px;
364
373
  }
365
- .row .offset11 {
374
+ .offset11 {
366
375
  margin-left: 680px;
367
376
  }
368
- .row .offset12 {
377
+ .offset12 {
369
378
  margin-left: 740px;
370
379
  }
371
- .row .span-one-third {
380
+ .span-one-third {
372
381
  width: 300px;
373
382
  }
374
- .row .span-two-thirds {
383
+ .span-two-thirds {
375
384
  width: 620px;
376
385
  }
377
- .row .offset-one-third {
386
+ .offset-one-third {
378
387
  margin-left: 340px;
379
388
  }
380
- .row .offset-two-thirds {
389
+ .offset-two-thirds {
381
390
  margin-left: 660px;
382
391
  }
383
- html, body {
384
- background-color: #fff;
385
- }
386
- body {
387
- margin: 0;
388
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
389
- font-size: 13px;
390
- font-weight: normal;
391
- line-height: 18px;
392
- color: #808080;
393
- }
394
- .container {
395
- width: 940px;
396
- margin: 0 auto;
397
- }
398
- .container-fluid {
399
- padding: 0 20px;
400
- zoom: 1;
401
- margin-bottom: 18px;
402
- }
403
- .container-fluid:before, .container-fluid:after {
404
- display: table;
405
- content: "";
406
- }
407
- .container-fluid:after {
408
- clear: both;
409
- }
410
- .container-fluid > .sidebar {
411
- float: left;
412
- width: 220px;
413
- }
414
- .container-fluid > .content {
415
- min-width: 700px;
416
- max-width: 1180px;
417
- margin-left: 240px;
418
- }
419
- a {
420
- color: #0069d6;
421
- text-decoration: none;
422
- line-height: inherit;
423
- font-weight: inherit;
424
- }
425
- a:hover {
426
- color: #0050a3;
427
- text-decoration: underline;
428
- }
429
392
  /* Typography.less
430
393
  * Headings, body text, lists, code, and more for a versatile and durable typography system
431
394
  * ---------------------------------------------------------------------------------------- */
@@ -533,14 +496,13 @@ dl dd {
533
496
  margin-left: 9px;
534
497
  }
535
498
  hr {
536
- margin: 0 0 19px;
499
+ margin: 20px 0 19px;
537
500
  border: 0;
538
501
  border-bottom: 1px solid #eee;
539
502
  }
540
503
  strong {
541
504
  font-style: inherit;
542
505
  font-weight: bold;
543
- line-height: inherit;
544
506
  }
545
507
  em {
546
508
  font-style: italic;
@@ -592,7 +554,7 @@ code {
592
554
  pre {
593
555
  background-color: #f5f5f5;
594
556
  display: block;
595
- padding: 17px;
557
+ padding: 8.5px;
596
558
  margin: 0 0 18px;
597
559
  line-height: 18px;
598
560
  font-size: 12px;
@@ -617,19 +579,29 @@ fieldset {
617
579
  }
618
580
  fieldset legend {
619
581
  display: block;
620
- margin-left: 150px;
621
- font-size: 20px;
582
+ padding-left: 150px;
583
+ font-size: 19.5px;
622
584
  line-height: 1;
623
- *margin: 0 0 5px 145px;
585
+ color: #404040;
586
+ *padding: 0 0 5px 145px;
624
587
  /* IE6-7 */
625
588
 
626
589
  *line-height: 1.5;
627
590
  /* IE6-7 */
628
591
 
629
- color: #404040;
630
592
  }
631
- .clearfix {
593
+ form .clearfix {
632
594
  margin-bottom: 18px;
595
+ zoom: 1;
596
+ }
597
+ form .clearfix:before, form .clearfix:after {
598
+ display: table;
599
+ content: "";
600
+ zoom: 1;
601
+ *display: inline;
602
+ }
603
+ form .clearfix:after {
604
+ clear: both;
633
605
  }
634
606
  label,
635
607
  input,
@@ -649,7 +621,7 @@ label {
649
621
  text-align: right;
650
622
  color: #404040;
651
623
  }
652
- div.input {
624
+ form .input {
653
625
  margin-left: 150px;
654
626
  }
655
627
  input[type=checkbox], input[type=radio] {
@@ -684,7 +656,7 @@ input[type=checkbox], input[type=radio] {
684
656
  border: none;
685
657
  }
686
658
  input[type=file] {
687
- background-color: #fff;
659
+ background-color: #ffffff;
688
660
  padding: initial;
689
661
  border: initial;
690
662
  line-height: initial;
@@ -699,17 +671,24 @@ input[type=button], input[type=reset], input[type=submit] {
699
671
  select, input[type=file] {
700
672
  height: 27px;
701
673
  line-height: 27px;
674
+ *margin-top: 4px;
675
+ /* For IE7, add top margin to align select with labels */
676
+
677
+ }
678
+ select[multiple] {
679
+ height: inherit;
702
680
  }
703
681
  textarea {
704
682
  height: auto;
705
683
  }
706
684
  .uneditable-input {
707
- background-color: #eee;
685
+ background-color: #ffffff;
708
686
  display: block;
709
- border-color: #ccc;
710
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
711
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
712
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
687
+ border-color: #eee;
688
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
689
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
690
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
691
+ cursor: not-allowed;
713
692
  }
714
693
  :-moz-placeholder {
715
694
  color: #bfbfbf;
@@ -717,22 +696,30 @@ textarea {
717
696
  ::-webkit-input-placeholder {
718
697
  color: #bfbfbf;
719
698
  }
720
- input, select, textarea {
699
+ input, textarea {
721
700
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
722
701
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
702
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
703
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
723
704
  transition: border linear 0.2s, box-shadow linear 0.2s;
724
705
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
725
706
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
726
707
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
727
708
  }
728
709
  input:focus, textarea:focus {
729
- outline: none;
710
+ outline: 0;
730
711
  border-color: rgba(82, 168, 236, 0.8);
731
712
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
732
713
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
733
714
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
734
715
  }
735
- form div.error {
716
+ input[type=file]:focus, input[type=checkbox]:focus, select:focus {
717
+ -webkit-box-shadow: none;
718
+ -moz-box-shadow: none;
719
+ box-shadow: none;
720
+ outline: 1px dotted #666;
721
+ }
722
+ form div.clearfix.error {
736
723
  background: #fae5e3;
737
724
  padding: 10px 0;
738
725
  margin: -10px 0 10px;
@@ -740,22 +727,22 @@ form div.error {
740
727
  -moz-border-radius: 4px;
741
728
  border-radius: 4px;
742
729
  }
743
- form div.error > label, form div.error span.help-inline, form div.error span.help-block {
730
+ form div.clearfix.error > label, form div.clearfix.error span.help-inline, form div.clearfix.error span.help-block {
744
731
  color: #9d261d;
745
732
  }
746
- form div.error input, form div.error textarea {
733
+ form div.clearfix.error input, form div.clearfix.error textarea {
747
734
  border-color: #c87872;
748
735
  -webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
749
736
  -moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
750
737
  box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
751
738
  }
752
- form div.error input:focus, form div.error textarea:focus {
739
+ form div.clearfix.error input:focus, form div.clearfix.error textarea:focus {
753
740
  border-color: #b9554d;
754
741
  -webkit-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
755
742
  -moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
756
743
  box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
757
744
  }
758
- form div.error .input-prepend span.add-on, form div.error .input-append span.add-on {
745
+ form div.clearfix.error .input-prepend span.add-on, form div.clearfix.error .input-append span.add-on {
759
746
  background: #f4c8c5;
760
747
  border-color: #c87872;
761
748
  color: #b9554d;
@@ -797,14 +784,113 @@ select.xxlarge {
797
784
  width: 530px;
798
785
  }
799
786
  textarea.xxlarge {
800
- overflow-y: scroll;
787
+ overflow-y: auto;
801
788
  }
802
- input[readonly]:focus, textarea[readonly]:focus, input.disabled {
803
- background: #f5f5f5;
789
+ input.span1, textarea.span1, select.span1 {
790
+ display: inline-block;
791
+ float: none;
792
+ width: 30px;
793
+ margin-left: 0;
794
+ }
795
+ input.span2, textarea.span2, select.span2 {
796
+ display: inline-block;
797
+ float: none;
798
+ width: 90px;
799
+ margin-left: 0;
800
+ }
801
+ input.span3, textarea.span3, select.span3 {
802
+ display: inline-block;
803
+ float: none;
804
+ width: 150px;
805
+ margin-left: 0;
806
+ }
807
+ input.span4, textarea.span4, select.span4 {
808
+ display: inline-block;
809
+ float: none;
810
+ width: 210px;
811
+ margin-left: 0;
812
+ }
813
+ input.span5, textarea.span5, select.span5 {
814
+ display: inline-block;
815
+ float: none;
816
+ width: 270px;
817
+ margin-left: 0;
818
+ }
819
+ input.span6, textarea.span6, select.span6 {
820
+ display: inline-block;
821
+ float: none;
822
+ width: 330px;
823
+ margin-left: 0;
824
+ }
825
+ input.span7, textarea.span7, select.span7 {
826
+ display: inline-block;
827
+ float: none;
828
+ width: 390px;
829
+ margin-left: 0;
830
+ }
831
+ input.span8, textarea.span8, select.span8 {
832
+ display: inline-block;
833
+ float: none;
834
+ width: 450px;
835
+ margin-left: 0;
836
+ }
837
+ input.span9, textarea.span9, select.span9 {
838
+ display: inline-block;
839
+ float: none;
840
+ width: 510px;
841
+ margin-left: 0;
842
+ }
843
+ input.span10, textarea.span10, select.span10 {
844
+ display: inline-block;
845
+ float: none;
846
+ width: 570px;
847
+ margin-left: 0;
848
+ }
849
+ input.span11, textarea.span11, select.span11 {
850
+ display: inline-block;
851
+ float: none;
852
+ width: 630px;
853
+ margin-left: 0;
854
+ }
855
+ input.span12, textarea.span12, select.span12 {
856
+ display: inline-block;
857
+ float: none;
858
+ width: 690px;
859
+ margin-left: 0;
860
+ }
861
+ input.span13, textarea.span13, select.span13 {
862
+ display: inline-block;
863
+ float: none;
864
+ width: 750px;
865
+ margin-left: 0;
866
+ }
867
+ input.span14, textarea.span14, select.span14 {
868
+ display: inline-block;
869
+ float: none;
870
+ width: 810px;
871
+ margin-left: 0;
872
+ }
873
+ input.span15, textarea.span15, select.span15 {
874
+ display: inline-block;
875
+ float: none;
876
+ width: 870px;
877
+ margin-left: 0;
878
+ }
879
+ input.span16, textarea.span16, select.span16 {
880
+ display: inline-block;
881
+ float: none;
882
+ width: 930px;
883
+ margin-left: 0;
884
+ }
885
+ input[disabled],
886
+ select[disabled],
887
+ textarea[disabled],
888
+ input[readonly],
889
+ select[readonly],
890
+ textarea[readonly] {
891
+ background-color: #f5f5f5;
804
892
  border-color: #ddd;
805
- -webkit-box-shadow: none;
806
- -moz-box-shadow: none;
807
- box-shadow: none;
893
+ cursor: not-allowed;
808
894
  }
809
895
  .actions {
810
896
  background: #f5f5f5;
@@ -826,7 +912,7 @@ input[readonly]:focus, textarea[readonly]:focus, input.disabled {
826
912
  text-decoration: underline;
827
913
  }
828
914
  .help-inline, .help-block {
829
- font-size: 12px;
915
+ font-size: 11px;
830
916
  line-height: 18px;
831
917
  color: #bfbfbf;
832
918
  }
@@ -864,20 +950,22 @@ input[readonly]:focus, textarea[readonly]:focus, input.disabled {
864
950
  border-radius: 0 3px 3px 0;
865
951
  }
866
952
  .input-prepend .add-on, .input-append .add-on {
953
+ position: relative;
867
954
  background: #f5f5f5;
955
+ border: 1px solid #ccc;
956
+ z-index: 2;
868
957
  float: left;
869
958
  display: block;
870
959
  width: auto;
871
960
  min-width: 16px;
961
+ height: 18px;
872
962
  padding: 4px 4px 4px 5px;
873
- color: #bfbfbf;
963
+ margin-right: -1px;
874
964
  font-weight: normal;
875
965
  line-height: 18px;
876
- height: 18px;
966
+ color: #bfbfbf;
877
967
  text-align: center;
878
- text-shadow: 0 1px 0 #fff;
879
- border: 1px solid #ccc;
880
- border-right-width: 0;
968
+ text-shadow: 0 1px 0 #ffffff;
881
969
  -webkit-border-radius: 3px 0 0 3px;
882
970
  -moz-border-radius: 3px 0 0 3px;
883
971
  border-radius: 3px 0 0 3px;
@@ -901,8 +989,8 @@ input[readonly]:focus, textarea[readonly]:focus, input.disabled {
901
989
  -webkit-border-radius: 0 3px 3px 0;
902
990
  -moz-border-radius: 0 3px 3px 0;
903
991
  border-radius: 0 3px 3px 0;
904
- border-right-width: 1px;
905
- border-left-width: 0;
992
+ margin-right: 0;
993
+ margin-left: -1px;
906
994
  }
907
995
  .inputs-list {
908
996
  margin: 0 0 5px;
@@ -913,7 +1001,7 @@ input[readonly]:focus, textarea[readonly]:focus, input.disabled {
913
1001
  padding: 0;
914
1002
  width: 100%;
915
1003
  }
916
- .inputs-list li label {
1004
+ .inputs-list label {
917
1005
  display: block;
918
1006
  float: none;
919
1007
  width: auto;
@@ -922,20 +1010,23 @@ input[readonly]:focus, textarea[readonly]:focus, input.disabled {
922
1010
  text-align: left;
923
1011
  white-space: normal;
924
1012
  }
925
- .inputs-list li label strong {
1013
+ .inputs-list label strong {
926
1014
  color: #808080;
927
1015
  }
928
- .inputs-list li label small {
929
- font-size: 12px;
1016
+ .inputs-list label small {
1017
+ font-size: 11px;
930
1018
  font-weight: normal;
931
1019
  }
932
- .inputs-list li ul.inputs-list {
1020
+ .inputs-list .inputs-list {
933
1021
  margin-left: 25px;
934
1022
  margin-bottom: 10px;
935
1023
  padding-top: 0;
936
1024
  }
937
- .inputs-list li:first-child {
938
- padding-top: 5px;
1025
+ .inputs-list:first-child {
1026
+ padding-top: 6px;
1027
+ }
1028
+ .inputs-list li + li {
1029
+ padding-top: 2px;
939
1030
  }
940
1031
  .inputs-list input[type=radio], .inputs-list input[type=checkbox] {
941
1032
  margin-bottom: 0;
@@ -947,7 +1038,7 @@ input[readonly]:focus, textarea[readonly]:focus, input.disabled {
947
1038
  padding-top: 9px;
948
1039
  }
949
1040
  .form-stacked legend {
950
- margin-left: 0;
1041
+ padding-left: 0;
951
1042
  }
952
1043
  .form-stacked label {
953
1044
  display: block;
@@ -974,7 +1065,7 @@ input[readonly]:focus, textarea[readonly]:focus, input.disabled {
974
1065
  font-weight: normal;
975
1066
  padding-top: 0;
976
1067
  }
977
- .form-stacked div.error {
1068
+ .form-stacked div.clearfix.error {
978
1069
  padding-top: 10px;
979
1070
  padding-bottom: 10px;
980
1071
  padding-left: 10px;
@@ -994,19 +1085,54 @@ table {
994
1085
  margin-bottom: 18px;
995
1086
  padding: 0;
996
1087
  border-collapse: separate;
1088
+ *border-collapse: collapse;
1089
+ /* IE7, collapse table to remove spacing */
1090
+
997
1091
  font-size: 13px;
1092
+ border: 1px solid #ddd;
1093
+ -webkit-border-radius: 4px;
1094
+ -moz-border-radius: 4px;
1095
+ border-radius: 4px;
998
1096
  }
999
1097
  table th, table td {
1000
1098
  padding: 10px 10px 9px;
1001
- line-height: 13.5px;
1099
+ line-height: 18px;
1002
1100
  text-align: left;
1101
+ }
1102
+ table th {
1103
+ padding-top: 9px;
1104
+ font-weight: bold;
1003
1105
  vertical-align: middle;
1004
1106
  border-bottom: 1px solid #ddd;
1005
1107
  }
1006
- table th {
1007
- padding-top: 9px;
1008
- font-weight: bold;
1009
- border-bottom-width: 2px;
1108
+ table td {
1109
+ vertical-align: top;
1110
+ }
1111
+ table th + th, table td + td {
1112
+ border-left: 1px solid #ddd;
1113
+ }
1114
+ table tr + tr td {
1115
+ border-top: 1px solid #ddd;
1116
+ }
1117
+ table tbody tr:first-child td:first-child {
1118
+ -webkit-border-radius: 4px 0 0 0;
1119
+ -moz-border-radius: 4px 0 0 0;
1120
+ border-radius: 4px 0 0 0;
1121
+ }
1122
+ table tbody tr:first-child td:last-child {
1123
+ -webkit-border-radius: 0 4px 0 0;
1124
+ -moz-border-radius: 0 4px 0 0;
1125
+ border-radius: 0 4px 0 0;
1126
+ }
1127
+ table tbody tr:last-child td:first-child {
1128
+ -webkit-border-radius: 0 0 0 4px;
1129
+ -moz-border-radius: 0 0 0 4px;
1130
+ border-radius: 0 0 0 4px;
1131
+ }
1132
+ table tbody tr:last-child td:last-child {
1133
+ -webkit-border-radius: 0 0 4px 0;
1134
+ -moz-border-radius: 0 0 4px 0;
1135
+ border-radius: 0 0 4px 0;
1010
1136
  }
1011
1137
  .zebra-striped tbody tr:nth-child(odd) td {
1012
1138
  background-color: #f9f9f9;
@@ -1029,9 +1155,6 @@ table th {
1029
1155
  .zebra-striped .headerSortUp, .zebra-striped .headerSortDown {
1030
1156
  background-color: rgba(141, 192, 219, 0.25);
1031
1157
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1032
- -webkit-border-radius: 3px 3px 0 0;
1033
- -moz-border-radius: 3px 3px 0 0;
1034
- border-radius: 3px 3px 0 0;
1035
1158
  }
1036
1159
  .zebra-striped .header:hover:after {
1037
1160
  visibility: visible;
@@ -1115,7 +1238,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1115
1238
  color: #bfbfbf;
1116
1239
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1117
1240
  }
1118
- .topbar a:hover, .topbar ul .active a {
1241
+ .topbar h3 a:hover, .topbar .brand a:hover, .topbar ul .active > a {
1119
1242
  background-color: #333;
1120
1243
  background-color: rgba(255, 255, 255, 0.05);
1121
1244
  color: #ffffff;
@@ -1124,7 +1247,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1124
1247
  .topbar h3 {
1125
1248
  position: relative;
1126
1249
  }
1127
- .topbar h3 a {
1250
+ .topbar h3 a, .topbar .brand {
1128
1251
  float: left;
1129
1252
  display: block;
1130
1253
  padding: 8px 20px 12px;
@@ -1134,6 +1257,14 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1134
1257
  font-weight: 200;
1135
1258
  line-height: 1;
1136
1259
  }
1260
+ .topbar p {
1261
+ margin: 0;
1262
+ line-height: 40px;
1263
+ }
1264
+ .topbar p a:hover {
1265
+ background-color: transparent;
1266
+ color: #ffffff;
1267
+ }
1137
1268
  .topbar form {
1138
1269
  float: left;
1139
1270
  margin: 5px 0 0 0;
@@ -1143,6 +1274,9 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1143
1274
  -moz-opacity: 1;
1144
1275
  opacity: 1;
1145
1276
  }
1277
+ .topbar form.pull-right {
1278
+ float: right;
1279
+ }
1146
1280
  .topbar input {
1147
1281
  background-color: #444;
1148
1282
  background-color: rgba(255, 255, 255, 0.3);
@@ -1151,7 +1285,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1151
1285
  font-weight: 13px;
1152
1286
  line-height: 1;
1153
1287
  padding: 4px 9px;
1154
- color: #fff;
1288
+ color: #ffffff;
1155
1289
  color: rgba(255, 255, 255, 0.75);
1156
1290
  border: 1px solid #111;
1157
1291
  -webkit-border-radius: 4px;
@@ -1162,6 +1296,8 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1162
1296
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1163
1297
  -webkit-transition: none;
1164
1298
  -moz-transition: none;
1299
+ -ms-transition: none;
1300
+ -o-transition: none;
1165
1301
  transition: none;
1166
1302
  }
1167
1303
  .topbar input:-moz-placeholder {
@@ -1173,13 +1309,13 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1173
1309
  .topbar input:hover {
1174
1310
  background-color: #bfbfbf;
1175
1311
  background-color: rgba(255, 255, 255, 0.5);
1176
- color: #fff;
1312
+ color: #ffffff;
1177
1313
  }
1178
1314
  .topbar input:focus, .topbar input.focused {
1179
- outline: none;
1180
- background-color: #fff;
1315
+ outline: 0;
1316
+ background-color: #ffffff;
1181
1317
  color: #404040;
1182
- text-shadow: 0 1px 0 #fff;
1318
+ text-shadow: 0 1px 0 #ffffff;
1183
1319
  border: 0;
1184
1320
  padding: 5px 10px;
1185
1321
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
@@ -1221,10 +1357,10 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1221
1357
  text-decoration: none;
1222
1358
  }
1223
1359
  .topbar div > ul a:hover, .nav a:hover {
1224
- color: #fff;
1360
+ color: #ffffff;
1225
1361
  text-decoration: none;
1226
1362
  }
1227
- .topbar div > ul .active a, .nav .active a {
1363
+ .topbar div > ul .active > a, .nav .active > a {
1228
1364
  background-color: #222;
1229
1365
  background-color: rgba(0, 0, 0, 0.5);
1230
1366
  }
@@ -1238,6 +1374,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1238
1374
  .topbar div > ul.secondary-nav .dropdown-menu,
1239
1375
  .nav.secondary-nav .dropdown-menu {
1240
1376
  right: 0;
1377
+ border: 0;
1241
1378
  }
1242
1379
  .topbar div > ul a.menu:hover,
1243
1380
  .nav a.menu:hover,
@@ -1264,7 +1401,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1264
1401
  .nav .menu-dropdown .dropdown-toggle,
1265
1402
  .topbar div > ul .dropdown-menu .dropdown-toggle,
1266
1403
  .nav .dropdown-menu .dropdown-toggle {
1267
- color: #fff;
1404
+ color: #ffffff;
1268
1405
  }
1269
1406
  .topbar div > ul .menu-dropdown a.menu.open,
1270
1407
  .nav .menu-dropdown a.menu.open,
@@ -1298,7 +1435,13 @@ table .headerSortUp.purple, table .headerSortDown.purple {
1298
1435
  background-image: -o-linear-gradient(top, #292929, #191919);
1299
1436
  background-image: linear-gradient(top, #292929, #191919);
1300
1437
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
1301
- color: #fff;
1438
+ color: #ffffff;
1439
+ }
1440
+ .topbar div > ul .menu-dropdown .active a,
1441
+ .nav .menu-dropdown .active a,
1442
+ .topbar div > ul .dropdown-menu .active a,
1443
+ .nav .dropdown-menu .active a {
1444
+ color: #ffffff;
1302
1445
  }
1303
1446
  .topbar div > ul .menu-dropdown .divider,
1304
1447
  .nav .menu-dropdown .divider,
@@ -1324,18 +1467,19 @@ a.menu:after, .dropdown-toggle:after {
1324
1467
  margin-left: 4px;
1325
1468
  border-left: 4px solid transparent;
1326
1469
  border-right: 4px solid transparent;
1327
- border-top: 4px solid #fff;
1470
+ border-top: 4px solid #ffffff;
1328
1471
  filter: alpha(opacity=50);
1329
1472
  -khtml-opacity: 0.5;
1330
1473
  -moz-opacity: 0.5;
1331
1474
  opacity: 0.5;
1332
1475
  }
1333
1476
  .menu-dropdown, .dropdown-menu {
1334
- background-color: #fff;
1477
+ background-color: #ffffff;
1335
1478
  float: left;
1336
1479
  display: none;
1337
1480
  position: absolute;
1338
1481
  top: 40px;
1482
+ z-index: 900;
1339
1483
  min-width: 160px;
1340
1484
  max-width: 220px;
1341
1485
  _width: 160px;
@@ -1367,7 +1511,7 @@ a.menu:after, .dropdown-toggle:after {
1367
1511
  margin: 5px 0;
1368
1512
  overflow: hidden;
1369
1513
  background-color: #eee;
1370
- border-bottom: 1px solid #fff;
1514
+ border-bottom: 1px solid #ffffff;
1371
1515
  }
1372
1516
  .topbar .dropdown-menu a, .dropdown-menu a {
1373
1517
  display: block;
@@ -1376,7 +1520,7 @@ a.menu:after, .dropdown-toggle:after {
1376
1520
  font-weight: normal;
1377
1521
  line-height: 18px;
1378
1522
  color: #808080;
1379
- text-shadow: 0 1px 0 #fff;
1523
+ text-shadow: 0 1px 0 #ffffff;
1380
1524
  }
1381
1525
  .topbar .dropdown-menu a:hover, .dropdown-menu a:hover {
1382
1526
  background-color: #dddddd;
@@ -1399,7 +1543,7 @@ a.menu:after, .dropdown-toggle:after {
1399
1543
  .dropdown.open .menu,
1400
1544
  .open .dropdown-toggle,
1401
1545
  .dropdown.open .dropdown-toggle {
1402
- color: #fff;
1546
+ color: #ffffff;
1403
1547
  background: #ccc;
1404
1548
  background: rgba(0, 0, 0, 0.3);
1405
1549
  }
@@ -1414,7 +1558,6 @@ a.menu:after, .dropdown-toggle:after {
1414
1558
  padding: 0;
1415
1559
  list-style: none;
1416
1560
  zoom: 1;
1417
- margin-bottom: 18px;
1418
1561
  }
1419
1562
  .tabs:before,
1420
1563
  .pills:before,
@@ -1422,6 +1565,8 @@ a.menu:after, .dropdown-toggle:after {
1422
1565
  .pills:after {
1423
1566
  display: table;
1424
1567
  content: "";
1568
+ zoom: 1;
1569
+ *display: inline;
1425
1570
  }
1426
1571
  .tabs:after, .pills:after {
1427
1572
  clear: both;
@@ -1433,6 +1578,7 @@ a.menu:after, .dropdown-toggle:after {
1433
1578
  display: block;
1434
1579
  }
1435
1580
  .tabs {
1581
+ float: left;
1436
1582
  width: 100%;
1437
1583
  border-bottom: 1px solid #ddd;
1438
1584
  }
@@ -1441,24 +1587,24 @@ a.menu:after, .dropdown-toggle:after {
1441
1587
  top: 1px;
1442
1588
  }
1443
1589
  .tabs > li > a {
1444
- margin-right: 2px;
1445
1590
  padding: 0 15px;
1446
- line-height: 35px;
1591
+ margin-right: 2px;
1592
+ line-height: 36px;
1593
+ border: 1px solid transparent;
1447
1594
  -webkit-border-radius: 4px 4px 0 0;
1448
1595
  -moz-border-radius: 4px 4px 0 0;
1449
1596
  border-radius: 4px 4px 0 0;
1450
1597
  }
1451
1598
  .tabs > li > a:hover {
1452
- background-color: #eee;
1453
- border-bottom: 1px solid #ddd;
1454
1599
  text-decoration: none;
1600
+ background-color: #eee;
1601
+ border-color: #eee #eee #ddd;
1455
1602
  }
1456
1603
  .tabs > li.active > a {
1457
- background-color: #fff;
1458
- padding: 0 14px;
1459
- border: 1px solid #ddd;
1460
- border-bottom: 0;
1461
1604
  color: #808080;
1605
+ background-color: #ffffff;
1606
+ border: 1px solid #ddd;
1607
+ border-bottom-color: transparent;
1462
1608
  }
1463
1609
  .tabs .menu-dropdown, .tabs .dropdown-menu {
1464
1610
  top: 35px;
@@ -1472,32 +1618,75 @@ a.menu:after, .dropdown-toggle:after {
1472
1618
  margin-top: 15px;
1473
1619
  margin-left: 5px;
1474
1620
  }
1621
+ .tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle {
1622
+ border-color: #999;
1623
+ }
1475
1624
  .tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
1476
1625
  border-top-color: #555;
1477
1626
  }
1627
+ .tab-content {
1628
+ clear: both;
1629
+ }
1478
1630
  .pills a {
1479
1631
  margin: 5px 3px 5px 0;
1480
1632
  padding: 0 15px;
1481
- text-shadow: 0 1px 1px #fff;
1633
+ text-shadow: 0 1px 1px #ffffff;
1482
1634
  line-height: 30px;
1483
1635
  -webkit-border-radius: 15px;
1484
1636
  -moz-border-radius: 15px;
1485
1637
  border-radius: 15px;
1486
1638
  }
1487
1639
  .pills a:hover {
1488
- background: #0050a3;
1489
- color: #fff;
1640
+ background: #00438a;
1641
+ color: #ffffff;
1490
1642
  text-decoration: none;
1491
1643
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1492
1644
  }
1493
1645
  .pills .active a {
1494
1646
  background: #0069d6;
1495
- color: #fff;
1647
+ color: #ffffff;
1496
1648
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1497
1649
  }
1650
+ .tab-content > *, .pill-content > * {
1651
+ display: none;
1652
+ }
1653
+ .tab-content > .active, .pill-content > .active {
1654
+ display: block;
1655
+ }
1656
+ .breadcrumb {
1657
+ margin: 0 0 18px;
1658
+ padding: 7px 14px;
1659
+ background-color: #f5f5f5;
1660
+ background-repeat: repeat-x;
1661
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
1662
+ background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
1663
+ background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
1664
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
1665
+ background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
1666
+ background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
1667
+ background-image: linear-gradient(top, #ffffff, #f5f5f5);
1668
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
1669
+ border: 1px solid #ddd;
1670
+ -webkit-border-radius: 3px;
1671
+ -moz-border-radius: 3px;
1672
+ border-radius: 3px;
1673
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
1674
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
1675
+ box-shadow: inset 0 1px 0 #ffffff;
1676
+ }
1677
+ .breadcrumb li {
1678
+ display: inline;
1679
+ text-shadow: 0 1px 0 #ffffff;
1680
+ }
1681
+ .breadcrumb .divider {
1682
+ padding: 0 5px;
1683
+ color: #bfbfbf;
1684
+ }
1685
+ .breadcrumb .active a {
1686
+ color: #404040;
1687
+ }
1498
1688
  .hero-unit {
1499
1689
  background-color: #f5f5f5;
1500
- margin-top: 60px;
1501
1690
  margin-bottom: 30px;
1502
1691
  padding: 60px;
1503
1692
  -webkit-border-radius: 6px;
@@ -1530,6 +1719,72 @@ footer {
1530
1719
  .page-header h1 {
1531
1720
  margin-bottom: 8px;
1532
1721
  }
1722
+ .btn.danger,
1723
+ .alert-message.danger,
1724
+ .btn.danger:hover,
1725
+ .alert-message.danger:hover,
1726
+ .btn.error,
1727
+ .alert-message.error,
1728
+ .btn.error:hover,
1729
+ .alert-message.error:hover,
1730
+ .btn.success,
1731
+ .alert-message.success,
1732
+ .btn.success:hover,
1733
+ .alert-message.success:hover,
1734
+ .btn.info,
1735
+ .alert-message.info,
1736
+ .btn.info:hover,
1737
+ .alert-message.info:hover {
1738
+ color: #ffffff;
1739
+ }
1740
+ .btn.danger,
1741
+ .alert-message.danger,
1742
+ .btn.error,
1743
+ .alert-message.error {
1744
+ background-color: #c43c35;
1745
+ background-repeat: repeat-x;
1746
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
1747
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
1748
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
1749
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
1750
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
1751
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
1752
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
1753
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
1754
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1755
+ border-color: #c43c35 #c43c35 #882a25;
1756
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1757
+ }
1758
+ .btn.success, .alert-message.success {
1759
+ background-color: #57a957;
1760
+ background-repeat: repeat-x;
1761
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
1762
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
1763
+ background-image: -ms-linear-gradient(top, #62c462, #57a957);
1764
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
1765
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
1766
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
1767
+ background-image: linear-gradient(top, #62c462, #57a957);
1768
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
1769
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1770
+ border-color: #57a957 #57a957 #3d773d;
1771
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1772
+ }
1773
+ .btn.info, .alert-message.info {
1774
+ background-color: #339bb9;
1775
+ background-repeat: repeat-x;
1776
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
1777
+ background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
1778
+ background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
1779
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
1780
+ background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
1781
+ background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
1782
+ background-image: linear-gradient(top, #5bc0de, #339bb9);
1783
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
1784
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1785
+ border-color: #339bb9 #339bb9 #22697d;
1786
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1787
+ }
1533
1788
  .btn {
1534
1789
  cursor: pointer;
1535
1790
  display: inline-block;
@@ -1557,6 +1812,8 @@ footer {
1557
1812
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1558
1813
  -webkit-transition: 0.1s linear all;
1559
1814
  -moz-transition: 0.1s linear all;
1815
+ -ms-transition: 0.1s linear all;
1816
+ -o-transition: 0.1s linear all;
1560
1817
  transition: 0.1s linear all;
1561
1818
  }
1562
1819
  .btn:hover {
@@ -1564,8 +1821,11 @@ footer {
1564
1821
  color: #333;
1565
1822
  text-decoration: none;
1566
1823
  }
1824
+ .btn:focus {
1825
+ outline: 1px dotted #666;
1826
+ }
1567
1827
  .btn.primary {
1568
- color: #fff;
1828
+ color: #ffffff;
1569
1829
  background-color: #0064cd;
1570
1830
  background-repeat: repeat-x;
1571
1831
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
@@ -1610,7 +1870,7 @@ footer {
1610
1870
  box-shadow: none;
1611
1871
  }
1612
1872
  .btn.large {
1613
- font-size: 16px;
1873
+ font-size: 15px;
1614
1874
  line-height: normal;
1615
1875
  padding: 9px 14px 9px;
1616
1876
  -webkit-border-radius: 6px;
@@ -1628,7 +1888,31 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1628
1888
  padding: 0;
1629
1889
  border: 0;
1630
1890
  }
1891
+ .close {
1892
+ float: right;
1893
+ color: #000000;
1894
+ font-size: 20px;
1895
+ font-weight: bold;
1896
+ line-height: 13.5px;
1897
+ text-shadow: 0 1px 0 #ffffff;
1898
+ filter: alpha(opacity=20);
1899
+ -khtml-opacity: 0.2;
1900
+ -moz-opacity: 0.2;
1901
+ opacity: 0.2;
1902
+ }
1903
+ .close:hover {
1904
+ color: #000000;
1905
+ text-decoration: none;
1906
+ filter: alpha(opacity=40);
1907
+ -khtml-opacity: 0.4;
1908
+ -moz-opacity: 0.4;
1909
+ opacity: 0.4;
1910
+ }
1631
1911
  .alert-message {
1912
+ position: relative;
1913
+ padding: 7px 15px;
1914
+ margin-bottom: 18px;
1915
+ color: #404040;
1632
1916
  background-color: #eedc94;
1633
1917
  background-repeat: repeat-x;
1634
1918
  background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
@@ -1642,9 +1926,6 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1642
1926
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1643
1927
  border-color: #eedc94 #eedc94 #e4c652;
1644
1928
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1645
- margin-bottom: 18px;
1646
- padding: 7px 14px;
1647
- color: #404040;
1648
1929
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1649
1930
  border-width: 1px;
1650
1931
  border-style: solid;
@@ -1655,6 +1936,11 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1655
1936
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
1656
1937
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
1657
1938
  }
1939
+ .alert-message .close {
1940
+ *margin-top: 3px;
1941
+ /* IE7 spacing */
1942
+
1943
+ }
1658
1944
  .alert-message h5 {
1659
1945
  line-height: 18px;
1660
1946
  }
@@ -1671,26 +1957,6 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1671
1957
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
1672
1958
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
1673
1959
  }
1674
- .alert-message .close {
1675
- float: right;
1676
- margin-top: -2px;
1677
- color: #000000;
1678
- font-size: 20px;
1679
- font-weight: bold;
1680
- text-shadow: 0 1px 0 #ffffff;
1681
- filter: alpha(opacity=20);
1682
- -khtml-opacity: 0.2;
1683
- -moz-opacity: 0.2;
1684
- opacity: 0.2;
1685
- }
1686
- .alert-message .close:hover {
1687
- color: #000000;
1688
- text-decoration: none;
1689
- filter: alpha(opacity=40);
1690
- -khtml-opacity: 0.4;
1691
- -moz-opacity: 0.4;
1692
- opacity: 0.4;
1693
- }
1694
1960
  .alert-message.block-message {
1695
1961
  background-image: none;
1696
1962
  background-color: #fdf5d9;
@@ -1701,9 +1967,15 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1701
1967
  -moz-box-shadow: none;
1702
1968
  box-shadow: none;
1703
1969
  }
1704
- .alert-message.block-message p {
1970
+ .alert-message.block-message ul, .alert-message.block-message p {
1705
1971
  margin-right: 30px;
1706
1972
  }
1973
+ .alert-message.block-message ul {
1974
+ margin-bottom: 0;
1975
+ }
1976
+ .alert-message.block-message li {
1977
+ color: #404040;
1978
+ }
1707
1979
  .alert-message.block-message .alert-actions {
1708
1980
  margin-top: 5px;
1709
1981
  }
@@ -1778,22 +2050,35 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1778
2050
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1779
2051
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1780
2052
  }
2053
+ .well blockquote {
2054
+ border-color: #ddd;
2055
+ border-color: rgba(0, 0, 0, 0.15);
2056
+ }
1781
2057
  .modal-backdrop {
1782
- background-color: rgba(0, 0, 0, 0.5);
2058
+ background-color: #000000;
1783
2059
  position: fixed;
1784
2060
  top: 0;
1785
2061
  left: 0;
1786
2062
  right: 0;
1787
2063
  bottom: 0;
1788
- z-index: 1000;
2064
+ z-index: 10000;
2065
+ }
2066
+ .modal-backdrop.fade {
2067
+ opacity: 0;
2068
+ }
2069
+ .modal-backdrop, .modal-backdrop.fade.in {
2070
+ filter: alpha(opacity=80);
2071
+ -khtml-opacity: 0.8;
2072
+ -moz-opacity: 0.8;
2073
+ opacity: 0.8;
1789
2074
  }
1790
2075
  .modal {
1791
2076
  position: fixed;
1792
2077
  top: 50%;
1793
2078
  left: 50%;
1794
- z-index: 2000;
2079
+ z-index: 11000;
1795
2080
  width: 560px;
1796
- margin: -280px 0 0 -250px;
2081
+ margin: -250px 0 0 -250px;
1797
2082
  background-color: #ffffff;
1798
2083
  border: 1px solid #999;
1799
2084
  border: 1px solid rgba(0, 0, 0, 0.3);
@@ -1810,24 +2095,30 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1810
2095
  -moz-background-clip: padding-box;
1811
2096
  background-clip: padding-box;
1812
2097
  }
2098
+ .modal .close {
2099
+ margin-top: 7px;
2100
+ }
2101
+ .modal.fade {
2102
+ -webkit-transition: opacity .3s linear, top .3s ease-out;
2103
+ -moz-transition: opacity .3s linear, top .3s ease-out;
2104
+ -ms-transition: opacity .3s linear, top .3s ease-out;
2105
+ -o-transition: opacity .3s linear, top .3s ease-out;
2106
+ transition: opacity .3s linear, top .3s ease-out;
2107
+ top: -25%;
2108
+ }
2109
+ .modal.fade.in {
2110
+ top: 50%;
2111
+ }
1813
2112
  .modal-header {
1814
2113
  border-bottom: 1px solid #eee;
1815
- padding: 5px 20px;
1816
- }
1817
- .modal-header .close {
1818
- position: absolute;
1819
- right: 10px;
1820
- top: 10px;
1821
- color: #999;
1822
- line-height: 10px;
1823
- font-size: 18px;
2114
+ padding: 5px 15px;
1824
2115
  }
1825
2116
  .modal-body {
1826
- padding: 20px;
2117
+ padding: 15px;
1827
2118
  }
1828
2119
  .modal-footer {
1829
2120
  background-color: #f5f5f5;
1830
- padding: 14px 20px 15px;
2121
+ padding: 14px 15px 15px;
1831
2122
  border-top: 1px solid #ddd;
1832
2123
  -webkit-border-radius: 0 0 6px 6px;
1833
2124
  -moz-border-radius: 0 0 6px 6px;
@@ -1836,19 +2127,20 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1836
2127
  -moz-box-shadow: inset 0 1px 0 #ffffff;
1837
2128
  box-shadow: inset 0 1px 0 #ffffff;
1838
2129
  zoom: 1;
1839
- margin-bottom: 18px;
1840
2130
  margin-bottom: 0;
1841
2131
  }
1842
2132
  .modal-footer:before, .modal-footer:after {
1843
2133
  display: table;
1844
2134
  content: "";
2135
+ zoom: 1;
2136
+ *display: inline;
1845
2137
  }
1846
2138
  .modal-footer:after {
1847
2139
  clear: both;
1848
2140
  }
1849
2141
  .modal-footer .btn {
1850
2142
  float: right;
1851
- margin-left: 10px;
2143
+ margin-left: 5px;
1852
2144
  }
1853
2145
  .twipsy {
1854
2146
  display: block;
@@ -1862,6 +2154,12 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1862
2154
  -moz-opacity: 0.8;
1863
2155
  opacity: 0.8;
1864
2156
  }
2157
+ .twipsy.fade.in {
2158
+ filter: alpha(opacity=80);
2159
+ -khtml-opacity: 0.8;
2160
+ -moz-opacity: 0.8;
2161
+ opacity: 0.8;
2162
+ }
1865
2163
  .twipsy.above .twipsy-arrow {
1866
2164
  bottom: 0;
1867
2165
  left: 50%;
@@ -1896,7 +2194,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1896
2194
  }
1897
2195
  .twipsy-inner {
1898
2196
  padding: 3px 8px;
1899
- background-color: #000;
2197
+ background-color: #000000;
1900
2198
  color: white;
1901
2199
  text-align: center;
1902
2200
  max-width: 200px;
@@ -1956,8 +2254,8 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1956
2254
  height: 0;
1957
2255
  }
1958
2256
  .popover .inner {
1959
- background: #333;
1960
- background: rgba(0, 0, 0, 0.8);
2257
+ background-color: #000000;
2258
+ background-color: rgba(0, 0, 0, 0.8);
1961
2259
  padding: 3px;
1962
2260
  overflow: hidden;
1963
2261
  width: 280px;
@@ -1990,3 +2288,75 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1990
2288
  .popover .content p, .popover .content ul, .popover .content ol {
1991
2289
  margin-bottom: 0;
1992
2290
  }
2291
+ .fade {
2292
+ -webkit-transition: opacity 0.15s linear;
2293
+ -moz-transition: opacity 0.15s linear;
2294
+ -ms-transition: opacity 0.15s linear;
2295
+ -o-transition: opacity 0.15s linear;
2296
+ transition: opacity 0.15s linear;
2297
+ opacity: 0;
2298
+ }
2299
+ .fade.in {
2300
+ opacity: 1;
2301
+ }
2302
+ .label {
2303
+ padding: 1px 3px 2px;
2304
+ background-color: #bfbfbf;
2305
+ font-size: 9.75px;
2306
+ font-weight: bold;
2307
+ color: #ffffff;
2308
+ text-transform: uppercase;
2309
+ -webkit-border-radius: 3px;
2310
+ -moz-border-radius: 3px;
2311
+ border-radius: 3px;
2312
+ }
2313
+ .label.important {
2314
+ background-color: #c43c35;
2315
+ }
2316
+ .label.warning {
2317
+ background-color: #f89406;
2318
+ }
2319
+ .label.success {
2320
+ background-color: #46a546;
2321
+ }
2322
+ .label.notice {
2323
+ background-color: #62cffc;
2324
+ }
2325
+ .media-grid {
2326
+ margin-left: -20px;
2327
+ margin-bottom: 0;
2328
+ zoom: 1;
2329
+ }
2330
+ .media-grid:before, .media-grid:after {
2331
+ display: table;
2332
+ content: "";
2333
+ zoom: 1;
2334
+ *display: inline;
2335
+ }
2336
+ .media-grid:after {
2337
+ clear: both;
2338
+ }
2339
+ .media-grid li {
2340
+ display: inline;
2341
+ }
2342
+ .media-grid a {
2343
+ float: left;
2344
+ padding: 4px;
2345
+ margin: 0 0 20px 20px;
2346
+ border: 1px solid #ddd;
2347
+ -webkit-border-radius: 4px;
2348
+ -moz-border-radius: 4px;
2349
+ border-radius: 4px;
2350
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2351
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2352
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2353
+ }
2354
+ .media-grid a img {
2355
+ display: block;
2356
+ }
2357
+ .media-grid a:hover {
2358
+ border-color: #0069d6;
2359
+ -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2360
+ -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2361
+ box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2362
+ }