twitter-bootstrap-rails 0.0.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of twitter-bootstrap-rails might be problematic. Click here for more details.

data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in twitter-bootstrap-rails.gemspec
4
+ gemspec
data/README ADDED
File without changes
data/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # Twitter Bootstrap for Rails 3
2
+ Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites.
3
+ It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.
4
+ twitter-bootstrap-rails project integrates Bootstrap CSS toolkit for Rails 3 projects
5
+
6
+ ## Rails 3.1
7
+ Include Bootstrap in Gemfile, gem 'twitter-bootstrap-rails' and run bundle install.
8
+
9
+ Add necessary stylesheet file to app/assets/stylesheets/application.css
10
+
11
+ /* ...
12
+ *= require bootstrap-1.0.0
13
+ or
14
+ *= require bootstrap-1.0.0.min
15
+ * ...
16
+ */
17
+
18
+ Not tested on Rails 3
19
+
20
+ ## Credits
21
+ Seyhun Akyürek
22
+ http://www.twitter.com/seyhunak
23
+
24
+ ## Thanks
25
+ Thanks Twitter for Bootstrap
26
+ http://twitter.github.com/bootstrap
27
+
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
@@ -0,0 +1,12 @@
1
+ module Twitter
2
+ module Bootstrap
3
+ module Rails
4
+ if ::Rails.version < "3.1"
5
+ require "twitter-bootstrap-rails/railtie"
6
+ else
7
+ require "twitter-bootstrap-rails/engine"
8
+ end
9
+ end
10
+ end
11
+ end
12
+
@@ -0,0 +1,9 @@
1
+ module Twitter
2
+ module Bootstrap
3
+ module Rails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+ end
8
+ end
9
+
@@ -0,0 +1,8 @@
1
+ module Twitter
2
+ module Bootstrap
3
+ module Rails
4
+ class Railtie < ::Rails::Railtie; end
5
+ end
6
+ end
7
+ end
8
+
@@ -0,0 +1,8 @@
1
+ module Twitter
2
+ module Bootstrap
3
+ module Rails
4
+ VERSION = "0.0.3"
5
+ end
6
+ end
7
+ end
8
+
@@ -0,0 +1,27 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "twitter-bootstrap-rails/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "twitter-bootstrap-rails"
7
+ s.version = Twitter::Bootstrap::Rails::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Seyhun Akyurek"]
10
+ s.email = ["seyhunak@gmail.com"]
11
+ s.homepage = "https://github.com/seyhunak/twitter-bootstrap-rails"
12
+ s.summary = %q{Bootstrap CSS toolkit for Rails 3 projects}
13
+ s.description = %q{Bootstrap CSS toolkit for Rails 3 projects}
14
+
15
+ s.rubyforge_project = "twitter-bootstrap-rails"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+
22
+ s.add_dependency "railties", "~> 3.0"
23
+ s.add_dependency "thor", "~> 0.14"
24
+ s.add_development_dependency "bundler", "~> 1.0.0"
25
+ s.add_development_dependency "rails", "~> 3.0"
26
+ end
27
+
@@ -0,0 +1,1764 @@
1
+ /*!
2
+ * Bootstrap v1.0.0
3
+ *
4
+ * Copyright 2011 Twitter, Inc
5
+ * Licensed under the Apache License v2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
+ * Date: Fri Aug 19 20:19:39 PDT 2011
10
+ */
11
+ /* Reset.less
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).
13
+ * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
14
+ html, body {
15
+ margin: 0;
16
+ padding: 0;
17
+ }
18
+ h1,
19
+ h2,
20
+ h3,
21
+ h4,
22
+ h5,
23
+ h6,
24
+ p,
25
+ blockquote,
26
+ pre,
27
+ a,
28
+ abbr,
29
+ acronym,
30
+ address,
31
+ cite,
32
+ code,
33
+ del,
34
+ dfn,
35
+ em,
36
+ img,
37
+ q,
38
+ s,
39
+ samp,
40
+ small,
41
+ strike,
42
+ strong,
43
+ sub,
44
+ sup,
45
+ tt,
46
+ var,
47
+ dd,
48
+ dl,
49
+ dt,
50
+ li,
51
+ ol,
52
+ ul,
53
+ fieldset,
54
+ form,
55
+ label,
56
+ legend,
57
+ button,
58
+ table,
59
+ caption,
60
+ tbody,
61
+ tfoot,
62
+ thead,
63
+ tr,
64
+ th,
65
+ td {
66
+ margin: 0;
67
+ padding: 0;
68
+ border: 0;
69
+ font-weight: normal;
70
+ font-style: normal;
71
+ font-size: 100%;
72
+ line-height: 1;
73
+ font-family: inherit;
74
+ }
75
+ table {
76
+ border-collapse: collapse;
77
+ border-spacing: 0;
78
+ }
79
+ ol, ul {
80
+ list-style: none;
81
+ }
82
+ q:before,
83
+ q:after,
84
+ blockquote:before,
85
+ blockquote:after {
86
+ content: "";
87
+ }
88
+ header,
89
+ section,
90
+ footer,
91
+ article,
92
+ aside {
93
+ display: block;
94
+ }
95
+ /* Preboot.less
96
+ * Variables and mixins to pre-ignite any new web development project
97
+ * ------------------------------------------------------------------ */
98
+ .clearfix {
99
+ zoom: 1;
100
+ }
101
+ .clearfix:before, .clearfix:after {
102
+ display: table;
103
+ content: "";
104
+ }
105
+ .clearfix:after {
106
+ clear: both;
107
+ }
108
+ .center-block {
109
+ display: block;
110
+ margin: 0 auto;
111
+ }
112
+ .container {
113
+ width: 940px;
114
+ margin: 0 auto;
115
+ zoom: 1;
116
+ }
117
+ .container:before, .container:after {
118
+ display: table;
119
+ content: "";
120
+ }
121
+ .container:after {
122
+ clear: both;
123
+ }
124
+ /*
125
+ * Scaffolding
126
+ * Basic and global styles for generating a grid system, structural layout, and page templates
127
+ * ------------------------------------------------------------------------------------------- */
128
+ .row {
129
+ zoom: 1;
130
+ }
131
+ .row:before, .row:after {
132
+ display: table;
133
+ content: "";
134
+ }
135
+ .row:after {
136
+ clear: both;
137
+ }
138
+ .row .span1 {
139
+ float: left;
140
+ width: 40px;
141
+ margin-left: 20px;
142
+ }
143
+ .row .span1:first-child {
144
+ margin-left: 0;
145
+ }
146
+ .row .span2 {
147
+ float: left;
148
+ width: 100px;
149
+ margin-left: 20px;
150
+ }
151
+ .row .span2:first-child {
152
+ margin-left: 0;
153
+ }
154
+ .row .span3 {
155
+ float: left;
156
+ width: 160px;
157
+ margin-left: 20px;
158
+ }
159
+ .row .span3:first-child {
160
+ margin-left: 0;
161
+ }
162
+ .row .span4 {
163
+ float: left;
164
+ width: 220px;
165
+ margin-left: 20px;
166
+ }
167
+ .row .span4:first-child {
168
+ margin-left: 0;
169
+ }
170
+ .row .span5 {
171
+ float: left;
172
+ width: 280px;
173
+ margin-left: 20px;
174
+ }
175
+ .row .span5:first-child {
176
+ margin-left: 0;
177
+ }
178
+ .row .span6 {
179
+ float: left;
180
+ width: 340px;
181
+ margin-left: 20px;
182
+ }
183
+ .row .span6:first-child {
184
+ margin-left: 0;
185
+ }
186
+ .row .span7 {
187
+ float: left;
188
+ width: 400px;
189
+ margin-left: 20px;
190
+ }
191
+ .row .span7:first-child {
192
+ margin-left: 0;
193
+ }
194
+ .row .span8 {
195
+ float: left;
196
+ width: 460px;
197
+ margin-left: 20px;
198
+ }
199
+ .row .span8:first-child {
200
+ margin-left: 0;
201
+ }
202
+ .row .span9 {
203
+ float: left;
204
+ width: 520px;
205
+ margin-left: 20px;
206
+ }
207
+ .row .span9:first-child {
208
+ margin-left: 0;
209
+ }
210
+ .row .span10 {
211
+ float: left;
212
+ width: 580px;
213
+ margin-left: 20px;
214
+ }
215
+ .row .span10:first-child {
216
+ margin-left: 0;
217
+ }
218
+ .row .span11 {
219
+ float: left;
220
+ width: 640px;
221
+ margin-left: 20px;
222
+ }
223
+ .row .span11:first-child {
224
+ margin-left: 0;
225
+ }
226
+ .row .span12 {
227
+ float: left;
228
+ width: 700px;
229
+ margin-left: 20px;
230
+ }
231
+ .row .span12:first-child {
232
+ margin-left: 0;
233
+ }
234
+ .row .span13 {
235
+ float: left;
236
+ width: 760px;
237
+ margin-left: 20px;
238
+ }
239
+ .row .span13:first-child {
240
+ margin-left: 0;
241
+ }
242
+ .row .span14 {
243
+ float: left;
244
+ width: 820px;
245
+ margin-left: 20px;
246
+ }
247
+ .row .span14:first-child {
248
+ margin-left: 0;
249
+ }
250
+ .row .span15 {
251
+ float: left;
252
+ width: 880px;
253
+ margin-left: 20px;
254
+ }
255
+ .row .span15:first-child {
256
+ margin-left: 0;
257
+ }
258
+ .row .span16 {
259
+ float: left;
260
+ width: 940px;
261
+ margin-left: 20px;
262
+ }
263
+ .row .span16:first-child {
264
+ margin-left: 0;
265
+ }
266
+ .row .offset1 {
267
+ margin-left: 80px !important;
268
+ }
269
+ .row .offset1:first-child {
270
+ margin-left: 60px !important;
271
+ }
272
+ .row .offset2 {
273
+ margin-left: 140px !important;
274
+ }
275
+ .row .offset2:first-child {
276
+ margin-left: 120px !important;
277
+ }
278
+ .row .offset3 {
279
+ margin-left: 200px !important;
280
+ }
281
+ .row .offset3:first-child {
282
+ margin-left: 180px !important;
283
+ }
284
+ .row .offset4 {
285
+ margin-left: 260px !important;
286
+ }
287
+ .row .offset4:first-child {
288
+ margin-left: 240px !important;
289
+ }
290
+ .row .offset5 {
291
+ margin-left: 320px !important;
292
+ }
293
+ .row .offset5:first-child {
294
+ margin-left: 300px !important;
295
+ }
296
+ .row .offset6 {
297
+ margin-left: 380px !important;
298
+ }
299
+ .row .offset6:first-child {
300
+ margin-left: 360px !important;
301
+ }
302
+ .row .offset7 {
303
+ margin-left: 440px !important;
304
+ }
305
+ .row .offset7:first-child {
306
+ margin-left: 420px !important;
307
+ }
308
+ .row .offset8 {
309
+ margin-left: 500px !important;
310
+ }
311
+ .row .offset8:first-child {
312
+ margin-left: 480px !important;
313
+ }
314
+ .row .offset9 {
315
+ margin-left: 500px !important;
316
+ }
317
+ .row .offset9:first-child {
318
+ margin-left: 480px !important;
319
+ }
320
+ .row .offset10 {
321
+ margin-left: 620px !important;
322
+ }
323
+ .row .offset10:first-child {
324
+ margin-left: 600px !important;
325
+ }
326
+ .row .offset11 {
327
+ margin-left: 680px !important;
328
+ }
329
+ .row .offset11:first-child {
330
+ margin-left: 660px !important;
331
+ }
332
+ .row .offset12 {
333
+ margin-left: 740px !important;
334
+ }
335
+ .row .offset12:first-child {
336
+ margin-left: 720px !important;
337
+ }
338
+ html, body {
339
+ background-color: #fff;
340
+ }
341
+ body {
342
+ margin: 0;
343
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
344
+ font-size: 13px;
345
+ font-weight: normal;
346
+ line-height: 18px;
347
+ color: #808080;
348
+ text-rendering: optimizeLegibility;
349
+ }
350
+ div.container {
351
+ width: 940px;
352
+ margin: 0 auto;
353
+ }
354
+ div.container-fluid {
355
+ padding: 20px;
356
+ zoom: 1;
357
+ }
358
+ div.container-fluid:before, div.container-fluid:after {
359
+ display: table;
360
+ content: "";
361
+ }
362
+ div.container-fluid:after {
363
+ clear: both;
364
+ }
365
+ div.container-fluid div.sidebar {
366
+ float: left;
367
+ width: 220px;
368
+ }
369
+ div.container-fluid div.content {
370
+ min-width: 700px;
371
+ max-width: 1180px;
372
+ margin-left: 240px;
373
+ }
374
+ a {
375
+ color: #0069d6;
376
+ text-decoration: none;
377
+ line-height: inherit;
378
+ }
379
+ a:hover {
380
+ color: #0050a3;
381
+ text-decoration: underline;
382
+ }
383
+ .btn {
384
+ display: inline-block;
385
+ background-color: #e6e6e6;
386
+ background-repeat: no-repeat;
387
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(0.25, #ffffff), to(#e6e6e6));
388
+ background-image: -webkit-linear-gradient(#ffffff, color-stop(0.25, #ffffff), #e6e6e6);
389
+ background-image: -moz-linear-gradient(#ffffff, color-stop(#ffffff, 0.25), #e6e6e6);
390
+ background-image: -ms-linear-gradient(#ffffff, color-stop(#ffffff, 0.25), #e6e6e6);
391
+ background-image: -o-linear-gradient(#ffffff, color-stop(#ffffff, 0.25), #e6e6e6);
392
+ background-image: linear-gradient(#ffffff, color-stop(#ffffff, 0.25), #e6e6e6);
393
+ padding: 4px 14px;
394
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
395
+ color: #333333;
396
+ font-size: 13px;
397
+ line-height: 18px;
398
+ border: 1px solid rgba(0, 0, 0, 0.1);
399
+ border-bottom-color: rgba(0, 0, 0, 0.25);
400
+ -webkit-border-radius: 4px;
401
+ -moz-border-radius: 4px;
402
+ border-radius: 4px;
403
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
404
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
405
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
406
+ -webkit-transition: 0.1s linear all;
407
+ -moz-transition: 0.1s linear all;
408
+ transition: 0.1s linear all;
409
+ }
410
+ .btn:hover {
411
+ background-position: 0 -15px;
412
+ color: #333333;
413
+ text-decoration: none;
414
+ }
415
+ .btn.primary {
416
+ background-color: #0064cd;
417
+ background-repeat: repeat-x;
418
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
419
+ background-image: -moz-linear-gradient(#049cdb, #0064cd);
420
+ background-image: -ms-linear-gradient(#049cdb, #0064cd);
421
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
422
+ background-image: -webkit-linear-gradient(#049cdb, #0064cd);
423
+ background-image: -o-linear-gradient(#049cdb, #0064cd);
424
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0)";
425
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
426
+ background-image: linear-gradient(#049cdb, #0064cd);
427
+ color: #fff;
428
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
429
+ }
430
+ .btn.primary:hover {
431
+ color: #fff;
432
+ }
433
+ .btn.large {
434
+ font-size: 16px;
435
+ line-height: 28px;
436
+ -webkit-border-radius: 6px;
437
+ -moz-border-radius: 6px;
438
+ border-radius: 6px;
439
+ }
440
+ .btn.small {
441
+ padding-right: 9px;
442
+ padding-left: 9px;
443
+ font-size: 11px;
444
+ }
445
+ .btn:disabled, .btn.disabled {
446
+ background-image: none;
447
+ filter: alpha(opacity=65);
448
+ -khtml-opacity: 0.65;
449
+ -moz-opacity: 0.65;
450
+ opacity: 0.65;
451
+ cursor: default;
452
+ }
453
+ .btn:active {
454
+ -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
455
+ -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
456
+ box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
457
+ }
458
+ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
459
+ padding: 0;
460
+ border: 0;
461
+ }
462
+ /* Typography.less
463
+ * Headings, body text, lists, code, and more for a versatile and durable typography system
464
+ * ---------------------------------------------------------------------------------------- */
465
+ p {
466
+ font-size: 13px;
467
+ font-weight: normal;
468
+ line-height: 18px;
469
+ margin-bottom: 18px;
470
+ }
471
+ p small {
472
+ font-size: 11px;
473
+ color: #bfbfbf;
474
+ }
475
+ h1,
476
+ h2,
477
+ h3,
478
+ h4,
479
+ h5,
480
+ h6 {
481
+ font-weight: bold;
482
+ color: #404040;
483
+ }
484
+ h1 small,
485
+ h2 small,
486
+ h3 small,
487
+ h4 small,
488
+ h5 small,
489
+ h6 small {
490
+ color: #bfbfbf;
491
+ }
492
+ h1 {
493
+ margin-bottom: 18px;
494
+ font-size: 30px;
495
+ line-height: 36px;
496
+ }
497
+ h1 small {
498
+ font-size: 18px;
499
+ }
500
+ h2 {
501
+ font-size: 24px;
502
+ line-height: 36px;
503
+ }
504
+ h2 small {
505
+ font-size: 14px;
506
+ }
507
+ h3,
508
+ h4,
509
+ h5,
510
+ h6 {
511
+ line-height: 36px;
512
+ }
513
+ h3 {
514
+ font-size: 18px;
515
+ }
516
+ h3 small {
517
+ font-size: 14px;
518
+ }
519
+ h4 {
520
+ font-size: 16px;
521
+ }
522
+ h4 small {
523
+ font-size: 12px;
524
+ }
525
+ h5 {
526
+ font-size: 14px;
527
+ }
528
+ h6 {
529
+ font-size: 13px;
530
+ color: #bfbfbf;
531
+ text-transform: uppercase;
532
+ }
533
+ ul, ol {
534
+ margin: 0 0 18px 25px;
535
+ }
536
+ ul ul,
537
+ ul ol,
538
+ ol ol,
539
+ ol ul {
540
+ margin-bottom: 0;
541
+ }
542
+ ul {
543
+ list-style: disc;
544
+ }
545
+ ol {
546
+ list-style: decimal;
547
+ }
548
+ li {
549
+ line-height: 18px;
550
+ color: #808080;
551
+ }
552
+ ul.unstyled {
553
+ list-style: none;
554
+ margin-left: 0;
555
+ }
556
+ dl {
557
+ margin-bottom: 18px;
558
+ }
559
+ dl dt, dl dd {
560
+ line-height: 18px;
561
+ }
562
+ dl dt {
563
+ font-weight: bold;
564
+ }
565
+ dl dd {
566
+ margin-left: 9px;
567
+ }
568
+ hr {
569
+ margin: 0 0 19px;
570
+ border: 0;
571
+ border-bottom: 1px solid #eee;
572
+ }
573
+ strong {
574
+ font-style: inherit;
575
+ font-weight: bold;
576
+ line-height: inherit;
577
+ }
578
+ em {
579
+ font-style: italic;
580
+ font-weight: inherit;
581
+ line-height: inherit;
582
+ }
583
+ .muted {
584
+ color: #e6e6e6;
585
+ }
586
+ blockquote {
587
+ margin-bottom: 18px;
588
+ border-left: 5px solid #eee;
589
+ padding-left: 15px;
590
+ }
591
+ blockquote p {
592
+ font-size: 14px;
593
+ font-weight: 300;
594
+ line-height: 18px;
595
+ margin-bottom: 0;
596
+ }
597
+ blockquote small, blockquote cite {
598
+ display: block;
599
+ font-size: 12px;
600
+ font-weight: 300;
601
+ line-height: 18px;
602
+ color: #bfbfbf;
603
+ }
604
+ blockquote small:before, blockquote cite:before {
605
+ content: '\2014 \00A0';
606
+ }
607
+ address {
608
+ display: block;
609
+ line-height: 18px;
610
+ margin-bottom: 18px;
611
+ }
612
+ code, pre {
613
+ padding: 0 3px 2px;
614
+ font-family: Monaco, Andale Mono, Courier New, monospace;
615
+ font-size: 12px;
616
+ -webkit-border-radius: 3px;
617
+ -moz-border-radius: 3px;
618
+ border-radius: 3px;
619
+ }
620
+ code {
621
+ background-color: #fee9cc;
622
+ color: rgba(0, 0, 0, 0.75);
623
+ padding: 1px 3px;
624
+ }
625
+ pre {
626
+ background-color: #f5f5f5;
627
+ display: block;
628
+ padding: 17px;
629
+ margin: 0 0 18px;
630
+ line-height: 18px;
631
+ font-size: 12px;
632
+ border: 1px solid rgba(0, 0, 0, 0.15);
633
+ -webkit-border-radius: 3px;
634
+ -moz-border-radius: 3px;
635
+ border-radius: 3px;
636
+ white-space: pre-wrap;
637
+ }
638
+ /* Forms.less
639
+ * Base styles for various input types, form layouts, and states
640
+ * ------------------------------------------------------------- */
641
+ form {
642
+ margin-bottom: 18px;
643
+ }
644
+ form fieldset {
645
+ margin-bottom: 18px;
646
+ padding-top: 18px;
647
+ }
648
+ form fieldset legend {
649
+ display: block;
650
+ margin-left: 150px;
651
+ font-size: 20px;
652
+ line-height: 1;
653
+ color: #404040;
654
+ }
655
+ form div.clearfix {
656
+ margin-bottom: 18px;
657
+ }
658
+ form label,
659
+ form input,
660
+ form select,
661
+ form textarea {
662
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
663
+ font-size: 13px;
664
+ font-weight: normal;
665
+ line-height: normal;
666
+ }
667
+ form label {
668
+ padding-top: 6px;
669
+ font-size: 13px;
670
+ line-height: 18px;
671
+ float: left;
672
+ width: 130px;
673
+ text-align: right;
674
+ color: #404040;
675
+ }
676
+ form div.input {
677
+ margin-left: 150px;
678
+ }
679
+ form input[type=checkbox], form input[type=radio] {
680
+ cursor: pointer;
681
+ }
682
+ form input[type=text],
683
+ form input[type=password],
684
+ form textarea,
685
+ form select,
686
+ form .uneditable-input {
687
+ display: inline-block;
688
+ width: 210px;
689
+ margin: 0;
690
+ padding: 4px;
691
+ font-size: 13px;
692
+ line-height: 18px;
693
+ height: 18px;
694
+ color: #808080;
695
+ border: 1px solid #ccc;
696
+ -webkit-border-radius: 3px;
697
+ -moz-border-radius: 3px;
698
+ border-radius: 3px;
699
+ }
700
+ form select, form input[type=file] {
701
+ height: 27px;
702
+ line-height: 27px;
703
+ }
704
+ form textarea {
705
+ height: auto;
706
+ }
707
+ form .uneditable-input {
708
+ background-color: #eee;
709
+ display: block;
710
+ border-color: #ccc;
711
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
712
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
713
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
714
+ }
715
+ form :-moz-placeholder {
716
+ color: #bfbfbf;
717
+ }
718
+ form ::-webkit-input-placeholder {
719
+ color: #bfbfbf;
720
+ }
721
+ form input[type=text],
722
+ form input[type=password],
723
+ form select,
724
+ form textarea {
725
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
726
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
727
+ transition: border linear 0.2s, box-shadow linear 0.2s;
728
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
729
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
730
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
731
+ }
732
+ form input[type=text]:focus, form input[type=password]:focus, form textarea:focus {
733
+ outline: none;
734
+ border-color: rgba(82, 168, 236, 0.8);
735
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
736
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
737
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
738
+ }
739
+ form div.error {
740
+ background: #fae5e3;
741
+ padding: 10px 0;
742
+ margin: -10px 0 10px;
743
+ -webkit-border-radius: 4px;
744
+ -moz-border-radius: 4px;
745
+ border-radius: 4px;
746
+ }
747
+ form div.error > label, form div.error span.help-inline, form div.error span.help-block {
748
+ color: #9d261d;
749
+ }
750
+ form div.error input[type=text], form div.error input[type=password], form div.error textarea {
751
+ border-color: #c87872;
752
+ -webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
753
+ -moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
754
+ box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
755
+ }
756
+ form div.error input[type=text]:focus, form div.error input[type=password]:focus, form div.error textarea:focus {
757
+ border-color: #b9554d;
758
+ -webkit-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
759
+ -moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
760
+ box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
761
+ }
762
+ form div.error div.input-prepend span.add-on, form div.error div.input-append span.add-on {
763
+ background: #f4c8c5;
764
+ border-color: #c87872;
765
+ color: #b9554d;
766
+ }
767
+ form .input-mini,
768
+ form input.mini,
769
+ form textarea.mini,
770
+ form select.mini {
771
+ width: 60px;
772
+ }
773
+ form .input-small,
774
+ form input.small,
775
+ form textarea.small,
776
+ form select.small {
777
+ width: 90px;
778
+ }
779
+ form .input-medium,
780
+ form input.medium,
781
+ form textarea.medium,
782
+ form select.medium {
783
+ width: 150px;
784
+ }
785
+ form .input-large,
786
+ form input.large,
787
+ form textarea.large,
788
+ form select.large {
789
+ width: 210px;
790
+ }
791
+ form .input-xlarge,
792
+ form input.xlarge,
793
+ form textarea.xlarge,
794
+ form select.xlarge {
795
+ width: 270px;
796
+ }
797
+ form .input-xxlarge,
798
+ form input.xxlarge,
799
+ form textarea.xxlarge,
800
+ form select.xxlarge {
801
+ width: 530px;
802
+ }
803
+ form textarea.xxlarge {
804
+ overflow-y: scroll;
805
+ }
806
+ form input[readonly]:focus, form textarea[readonly]:focus, form input.disabled {
807
+ background: #f5f5f5;
808
+ border-color: #ddd;
809
+ -webkit-box-shadow: none;
810
+ -moz-box-shadow: none;
811
+ box-shadow: none;
812
+ }
813
+ div.actions {
814
+ background: #f5f5f5;
815
+ margin-top: 18px;
816
+ margin-bottom: 18px;
817
+ padding: 17px 20px 18px 150px;
818
+ border-top: 1px solid #ddd;
819
+ -webkit-border-radius: 0 0 3px 3px;
820
+ -moz-border-radius: 0 0 3px 3px;
821
+ border-radius: 0 0 3px 3px;
822
+ }
823
+ div.actions div.secondary-action {
824
+ float: right;
825
+ }
826
+ div.actions div.secondary-action a {
827
+ line-height: 30px;
828
+ }
829
+ div.actions div.secondary-action a:hover {
830
+ text-decoration: underline;
831
+ }
832
+ .help-inline, .help-block {
833
+ font-size: 12px;
834
+ line-height: 18px;
835
+ color: #bfbfbf;
836
+ }
837
+ .help-inline {
838
+ padding-left: 5px;
839
+ }
840
+ .help-block {
841
+ display: block;
842
+ max-width: 600px;
843
+ }
844
+ div.inline-inputs {
845
+ color: #808080;
846
+ }
847
+ div.inline-inputs span, div.inline-inputs input[type=text] {
848
+ display: inline-block;
849
+ }
850
+ div.inline-inputs input.mini {
851
+ width: 60px;
852
+ }
853
+ div.inline-inputs input.small {
854
+ width: 90px;
855
+ }
856
+ div.inline-inputs span {
857
+ padding: 0 2px 0 1px;
858
+ }
859
+ div.input-prepend input[type=text], div.input-append input[type=text] {
860
+ -webkit-border-radius: 0 3px 3px 0;
861
+ -moz-border-radius: 0 3px 3px 0;
862
+ border-radius: 0 3px 3px 0;
863
+ }
864
+ div.input-prepend .add-on, div.input-append .add-on {
865
+ background: #f5f5f5;
866
+ float: left;
867
+ display: block;
868
+ width: auto;
869
+ min-width: 16px;
870
+ padding: 4px 4px 4px 5px;
871
+ color: #bfbfbf;
872
+ font-weight: normal;
873
+ line-height: 18px;
874
+ height: 18px;
875
+ text-align: center;
876
+ text-shadow: 0 1px 0 #fff;
877
+ border: 1px solid #ccc;
878
+ border-right-width: 0;
879
+ -webkit-border-radius: 3px 0 0 3px;
880
+ -moz-border-radius: 3px 0 0 3px;
881
+ border-radius: 3px 0 0 3px;
882
+ }
883
+ div.input-prepend .active, div.input-append .active {
884
+ background: #a9dba9;
885
+ border-color: #46a546;
886
+ }
887
+ div.input-append input[type=text] {
888
+ float: left;
889
+ -webkit-border-radius: 3px 0 0 3px;
890
+ -moz-border-radius: 3px 0 0 3px;
891
+ border-radius: 3px 0 0 3px;
892
+ }
893
+ div.input-append .add-on {
894
+ -webkit-border-radius: 0 3px 3px 0;
895
+ -moz-border-radius: 0 3px 3px 0;
896
+ border-radius: 0 3px 3px 0;
897
+ border-right-width: 1px;
898
+ border-left-width: 0;
899
+ }
900
+ ul.inputs-list {
901
+ margin: 0 0 5px;
902
+ width: 100%;
903
+ }
904
+ ul.inputs-list li {
905
+ display: block;
906
+ padding: 0;
907
+ width: 100%;
908
+ }
909
+ ul.inputs-list li label {
910
+ display: block;
911
+ float: none;
912
+ width: auto;
913
+ padding: 0;
914
+ line-height: 18px;
915
+ text-align: left;
916
+ white-space: normal;
917
+ }
918
+ ul.inputs-list li label strong {
919
+ color: #808080;
920
+ }
921
+ ul.inputs-list li label small {
922
+ font-size: 12px;
923
+ font-weight: normal;
924
+ }
925
+ ul.inputs-list li ul.inputs-list {
926
+ margin-left: 25px;
927
+ margin-bottom: 10px;
928
+ padding-top: 0;
929
+ }
930
+ ul.inputs-list li:first-child {
931
+ padding-top: 5px;
932
+ }
933
+ ul.inputs-list input[type=radio], ul.inputs-list input[type=checkbox] {
934
+ margin-bottom: 0;
935
+ }
936
+ form.form-stacked {
937
+ padding-left: 20px;
938
+ }
939
+ form.form-stacked fieldset {
940
+ padding-top: 9px;
941
+ }
942
+ form.form-stacked legend {
943
+ margin-left: 0;
944
+ }
945
+ form.form-stacked label {
946
+ display: block;
947
+ float: none;
948
+ width: auto;
949
+ font-weight: bold;
950
+ text-align: left;
951
+ line-height: 20px;
952
+ padding-top: 0;
953
+ }
954
+ form.form-stacked div.clearfix {
955
+ margin-bottom: 9px;
956
+ }
957
+ form.form-stacked div.clearfix div.input {
958
+ margin-left: 0;
959
+ }
960
+ form.form-stacked ul.inputs-list {
961
+ margin-bottom: 0;
962
+ }
963
+ form.form-stacked ul.inputs-list li {
964
+ padding-top: 0;
965
+ }
966
+ form.form-stacked ul.inputs-list li label {
967
+ font-weight: normal;
968
+ padding-top: 0;
969
+ }
970
+ form.form-stacked div.actions {
971
+ margin-left: -20px;
972
+ padding-left: 20px;
973
+ }
974
+ /*
975
+ * Tables.less
976
+ * Tables for, you guessed it, tabular data
977
+ * ---------------------------------------- */
978
+ table {
979
+ width: 100%;
980
+ margin-bottom: 18px;
981
+ padding: 0;
982
+ text-align: left;
983
+ border-collapse: separate;
984
+ font-size: 13px;
985
+ }
986
+ table th, table td {
987
+ padding: 10px 10px 9px;
988
+ line-height: 13.5px;
989
+ vertical-align: middle;
990
+ border-bottom: 1px solid #ddd;
991
+ }
992
+ table th {
993
+ padding-top: 9px;
994
+ font-weight: bold;
995
+ border-bottom-width: 2px;
996
+ }
997
+ table.zebra-striped tbody tr:nth-child(odd) td {
998
+ background-color: #f9f9f9;
999
+ }
1000
+ table.zebra-striped tbody tr:hover td {
1001
+ background-color: #f5f5f5;
1002
+ }
1003
+ table.zebra-striped th.header {
1004
+ cursor: pointer;
1005
+ }
1006
+ table.zebra-striped th.header:after {
1007
+ content: "";
1008
+ float: right;
1009
+ margin-top: 7px;
1010
+ border-width: 0 4px 4px;
1011
+ border-style: solid;
1012
+ border-color: #000 transparent;
1013
+ visibility: hidden;
1014
+ }
1015
+ table.zebra-striped th.headerSortUp, table.zebra-striped th.headerSortDown {
1016
+ background-color: rgba(141, 192, 219, 0.25);
1017
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1018
+ -webkit-border-radius: 3px 3px 0 0;
1019
+ -moz-border-radius: 3px 3px 0 0;
1020
+ border-radius: 3px 3px 0 0;
1021
+ }
1022
+ table.zebra-striped th.header:hover:after {
1023
+ visibility: visible;
1024
+ }
1025
+ table.zebra-striped th.actions:hover {
1026
+ background-image: none;
1027
+ }
1028
+ table.zebra-striped th.headerSortDown:after, table.zebra-striped th.headerSortDown:hover:after {
1029
+ visibility: visible;
1030
+ filter: alpha(opacity=60);
1031
+ -khtml-opacity: 0.6;
1032
+ -moz-opacity: 0.6;
1033
+ opacity: 0.6;
1034
+ }
1035
+ table.zebra-striped th.headerSortUp:after {
1036
+ border-bottom: none;
1037
+ border-left: 4px solid transparent;
1038
+ border-right: 4px solid transparent;
1039
+ border-top: 4px solid #000;
1040
+ visibility: visible;
1041
+ -webkit-box-shadow: none;
1042
+ -moz-box-shadow: none;
1043
+ box-shadow: none;
1044
+ filter: alpha(opacity=60);
1045
+ -khtml-opacity: 0.6;
1046
+ -moz-opacity: 0.6;
1047
+ opacity: 0.6;
1048
+ }
1049
+ table.zebra-striped th.blue {
1050
+ color: #049cdb;
1051
+ border-bottom-color: #049cdb;
1052
+ }
1053
+ table.zebra-striped th.headerSortUp.blue, table.zebra-striped th.headerSortDown.blue {
1054
+ background-color: #ade6fe;
1055
+ }
1056
+ table.zebra-striped th.green {
1057
+ color: #46a546;
1058
+ border-bottom-color: #46a546;
1059
+ }
1060
+ table.zebra-striped th.headerSortUp.green, table.zebra-striped th.headerSortDown.green {
1061
+ background-color: #cdeacd;
1062
+ }
1063
+ table.zebra-striped th.red {
1064
+ color: #9d261d;
1065
+ border-bottom-color: #9d261d;
1066
+ }
1067
+ table.zebra-striped th.headerSortUp.red, table.zebra-striped th.headerSortDown.red {
1068
+ background-color: #f4c8c5;
1069
+ }
1070
+ table.zebra-striped th.yellow {
1071
+ color: #ffc40d;
1072
+ border-bottom-color: #ffc40d;
1073
+ }
1074
+ table.zebra-striped th.headerSortUp.yellow, table.zebra-striped th.headerSortDown.yellow {
1075
+ background-color: #fff6d9;
1076
+ }
1077
+ table.zebra-striped th.orange {
1078
+ color: #f89406;
1079
+ border-bottom-color: #f89406;
1080
+ }
1081
+ table.zebra-striped th.headerSortUp.orange, table.zebra-striped th.headerSortDown.orange {
1082
+ background-color: #fee9cc;
1083
+ }
1084
+ table.zebra-striped th.purple {
1085
+ color: #7a43b6;
1086
+ border-bottom-color: #7a43b6;
1087
+ }
1088
+ table.zebra-striped th.headerSortUp.purple, table.zebra-striped th.headerSortDown.purple {
1089
+ background-color: #e2d5f0;
1090
+ }
1091
+ /* Patterns.less
1092
+ * Repeatable UI elements outside the base styles provided from the scaffolding
1093
+ * ---------------------------------------------------------------------------- */
1094
+ div.topbar {
1095
+ background-color: #222222;
1096
+ background-repeat: repeat-x;
1097
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
1098
+ background-image: -moz-linear-gradient(#333333, #222222);
1099
+ background-image: -ms-linear-gradient(#333333, #222222);
1100
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
1101
+ background-image: -webkit-linear-gradient(#333333, #222222);
1102
+ background-image: -o-linear-gradient(#333333, #222222);
1103
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0)";
1104
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1105
+ background-image: linear-gradient(#333333, #222222);
1106
+ height: 40px;
1107
+ position: fixed;
1108
+ top: 0;
1109
+ left: 0;
1110
+ right: 0;
1111
+ z-index: 10000;
1112
+ overflow: visible;
1113
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1114
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1115
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1116
+ }
1117
+ div.topbar a {
1118
+ color: #bfbfbf;
1119
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1120
+ }
1121
+ div.topbar ul li a:hover, div.topbar ul li.active a, div.topbar a.logo:hover {
1122
+ background-color: #333;
1123
+ background-color: rgba(255, 255, 255, 0.15);
1124
+ color: #ffffff;
1125
+ text-decoration: none;
1126
+ }
1127
+ div.topbar a.logo {
1128
+ float: left;
1129
+ display: block;
1130
+ padding: 8px 20px 12px;
1131
+ margin-left: -20px;
1132
+ color: #ffffff;
1133
+ font-size: 20px;
1134
+ font-weight: 200;
1135
+ line-height: 1;
1136
+ }
1137
+ div.topbar a.logo img {
1138
+ float: left;
1139
+ margin-right: 6px;
1140
+ }
1141
+ div.topbar form {
1142
+ float: left;
1143
+ margin: 5px 0 0 0;
1144
+ position: relative;
1145
+ filter: alpha(opacity=100);
1146
+ -khtml-opacity: 1;
1147
+ -moz-opacity: 1;
1148
+ opacity: 1;
1149
+ }
1150
+ div.topbar form input {
1151
+ background-color: #bfbfbf;
1152
+ background-color: rgba(255, 255, 255, 0.3);
1153
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1154
+ font-size: normal;
1155
+ font-weight: 13px;
1156
+ line-height: 1;
1157
+ width: 220px;
1158
+ padding: 4px 9px;
1159
+ color: #fff;
1160
+ color: rgba(255, 255, 255, 0.75);
1161
+ border: 1px solid #111;
1162
+ -webkit-border-radius: 4px;
1163
+ -moz-border-radius: 4px;
1164
+ border-radius: 4px;
1165
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1166
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1167
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1168
+ -webkit-transition: none;
1169
+ -moz-transition: none;
1170
+ transition: none;
1171
+ }
1172
+ div.topbar form input:-moz-placeholder {
1173
+ color: #e6e6e6;
1174
+ }
1175
+ div.topbar form input::-webkit-input-placeholder {
1176
+ color: #e6e6e6;
1177
+ }
1178
+ div.topbar form input:hover {
1179
+ background-color: #444;
1180
+ background-color: rgba(255, 255, 255, 0.5);
1181
+ color: #fff;
1182
+ }
1183
+ div.topbar form input:focus, div.topbar form input.focused {
1184
+ outline: none;
1185
+ background-color: #fff;
1186
+ color: #404040;
1187
+ text-shadow: 0 1px 0 #fff;
1188
+ border: 0;
1189
+ padding: 5px 10px;
1190
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1191
+ -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1192
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1193
+ }
1194
+ div.topbar ul {
1195
+ display: block;
1196
+ float: left;
1197
+ margin: 0 10px 0 0;
1198
+ position: relative;
1199
+ }
1200
+ div.topbar ul.secondary-nav {
1201
+ float: right;
1202
+ margin-left: 10px;
1203
+ margin-right: 0;
1204
+ }
1205
+ div.topbar ul li {
1206
+ display: block;
1207
+ float: left;
1208
+ font-size: 13px;
1209
+ }
1210
+ div.topbar ul li a {
1211
+ display: block;
1212
+ float: none;
1213
+ padding: 10px 10px 11px;
1214
+ line-height: 19px;
1215
+ text-decoration: none;
1216
+ }
1217
+ div.topbar ul li a:hover {
1218
+ color: #fff;
1219
+ text-decoration: none;
1220
+ }
1221
+ div.topbar ul li.active a {
1222
+ background-color: #222;
1223
+ background-color: rgba(0, 0, 0, 0.5);
1224
+ }
1225
+ div.topbar ul.primary-nav li ul {
1226
+ left: 0;
1227
+ }
1228
+ div.topbar ul.secondary-nav li ul {
1229
+ right: 0;
1230
+ }
1231
+ div.topbar ul li.menu {
1232
+ position: relative;
1233
+ }
1234
+ div.topbar ul li.menu a.menu:after {
1235
+ width: 0px;
1236
+ height: 0px;
1237
+ display: inline-block;
1238
+ content: "&darr;";
1239
+ text-indent: -99999px;
1240
+ vertical-align: top;
1241
+ margin-top: 8px;
1242
+ margin-left: 4px;
1243
+ border-left: 4px solid transparent;
1244
+ border-right: 4px solid transparent;
1245
+ border-top: 4px solid #fff;
1246
+ filter: alpha(opacity=50);
1247
+ -khtml-opacity: 0.5;
1248
+ -moz-opacity: 0.5;
1249
+ opacity: 0.5;
1250
+ }
1251
+ div.topbar ul li.menu.open a.menu, div.topbar ul li.menu.open a:hover {
1252
+ background-color: #00b4eb;
1253
+ background-color: rgba(255, 255, 255, 0.1);
1254
+ color: #fff;
1255
+ }
1256
+ div.topbar ul li.menu.open ul {
1257
+ display: block;
1258
+ }
1259
+ div.topbar ul li.menu.open ul li a {
1260
+ background-color: transparent;
1261
+ font-weight: normal;
1262
+ }
1263
+ div.topbar ul li.menu.open ul li a:hover {
1264
+ background-color: rgba(255, 255, 255, 0.1);
1265
+ color: #fff;
1266
+ }
1267
+ div.topbar ul li.menu.open ul li.active a {
1268
+ background-color: rgba(255, 255, 255, 0.1);
1269
+ font-weight: bold;
1270
+ }
1271
+ div.topbar ul li ul {
1272
+ background-color: #333;
1273
+ float: left;
1274
+ display: none;
1275
+ position: absolute;
1276
+ top: 40px;
1277
+ min-width: 160px;
1278
+ max-width: 220px;
1279
+ _width: 160px;
1280
+ margin-left: 0;
1281
+ margin-right: 0;
1282
+ padding: 0;
1283
+ text-align: left;
1284
+ border: 0;
1285
+ zoom: 1;
1286
+ -webkit-border-radius: 0 0 5px 5px;
1287
+ -moz-border-radius: 0 0 5px 5px;
1288
+ border-radius: 0 0 5px 5px;
1289
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
1290
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
1291
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
1292
+ }
1293
+ div.topbar ul li ul li {
1294
+ float: none;
1295
+ clear: both;
1296
+ display: block;
1297
+ background: none;
1298
+ font-size: 12px;
1299
+ }
1300
+ div.topbar ul li ul li a {
1301
+ display: block;
1302
+ padding: 6px 15px;
1303
+ clear: both;
1304
+ font-weight: normal;
1305
+ line-height: 19px;
1306
+ color: #bbb;
1307
+ }
1308
+ div.topbar ul li ul li a:hover {
1309
+ background-color: #333;
1310
+ background-color: rgba(255, 255, 255, 0.25);
1311
+ color: #fff;
1312
+ }
1313
+ div.topbar ul li ul li.divider {
1314
+ height: 1px;
1315
+ overflow: hidden;
1316
+ background: rgba(0, 0, 0, 0.2);
1317
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
1318
+ margin: 5px 0;
1319
+ }
1320
+ div.topbar ul li ul li span {
1321
+ clear: both;
1322
+ display: block;
1323
+ background: rgba(0, 0, 0, 0.2);
1324
+ padding: 6px 15px;
1325
+ cursor: default;
1326
+ color: #808080;
1327
+ border-top: 1px solid rgba(0, 0, 0, 0.2);
1328
+ }
1329
+ div.page-header {
1330
+ margin-bottom: 17px;
1331
+ border-bottom: 1px solid #ddd;
1332
+ -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1333
+ -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1334
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1335
+ }
1336
+ div.page-header h1 {
1337
+ margin-bottom: 8px;
1338
+ }
1339
+ div.alert-message {
1340
+ background-color: rgba(0, 0, 0, 0.15);
1341
+ background-repeat: repeat-x;
1342
+ background-image: -khtml-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.15)));
1343
+ background-image: -moz-linear-gradient(transparent, rgba(0, 0, 0, 0.15));
1344
+ background-image: -ms-linear-gradient(transparent, rgba(0, 0, 0, 0.15));
1345
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.15)));
1346
+ background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.15));
1347
+ background-image: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.15));
1348
+ -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='rgba(0, 0, 0, 0.15)', GradientType=0)";
1349
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='rgba(0, 0, 0, 0.15)', GradientType=0);
1350
+ background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.15));
1351
+ background-color: #e6e6e6;
1352
+ margin-bottom: 18px;
1353
+ padding: 8px 15px;
1354
+ color: #fff;
1355
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1356
+ border-bottom: 1px solid rgba(0, 0, 0, 0.25);
1357
+ -webkit-border-radius: 4px;
1358
+ -moz-border-radius: 4px;
1359
+ border-radius: 4px;
1360
+ }
1361
+ div.alert-message p {
1362
+ color: #fff;
1363
+ margin-bottom: 0;
1364
+ }
1365
+ div.alert-message p + p {
1366
+ margin-top: 5px;
1367
+ }
1368
+ div.alert-message.error {
1369
+ background-color: #e06359;
1370
+ }
1371
+ div.alert-message.warning {
1372
+ background-color: #ffd75a;
1373
+ }
1374
+ div.alert-message.success {
1375
+ background-color: #74c474;
1376
+ }
1377
+ div.alert-message.info {
1378
+ background-color: #30c0fb;
1379
+ }
1380
+ div.alert-message a.close {
1381
+ float: right;
1382
+ margin-top: -2px;
1383
+ color: #fff;
1384
+ font-size: 20px;
1385
+ font-weight: bold;
1386
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
1387
+ filter: alpha(opacity=50);
1388
+ -khtml-opacity: 0.5;
1389
+ -moz-opacity: 0.5;
1390
+ opacity: 0.5;
1391
+ -webkit-border-radius: 3px;
1392
+ -moz-border-radius: 3px;
1393
+ border-radius: 3px;
1394
+ }
1395
+ div.alert-message a.close:hover {
1396
+ text-decoration: none;
1397
+ filter: alpha(opacity=50);
1398
+ -khtml-opacity: 0.5;
1399
+ -moz-opacity: 0.5;
1400
+ opacity: 0.5;
1401
+ }
1402
+ div.block-message {
1403
+ margin-bottom: 18px;
1404
+ padding: 14px;
1405
+ color: #404040;
1406
+ color: rgba(0, 0, 0, 0.8);
1407
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
1408
+ -webkit-border-radius: 6px;
1409
+ -moz-border-radius: 6px;
1410
+ border-radius: 6px;
1411
+ }
1412
+ div.block-message p {
1413
+ color: #404040;
1414
+ color: rgba(0, 0, 0, 0.8);
1415
+ margin-right: 30px;
1416
+ margin-bottom: 0;
1417
+ }
1418
+ div.block-message ul {
1419
+ margin-bottom: 0;
1420
+ }
1421
+ div.block-message strong {
1422
+ display: block;
1423
+ }
1424
+ div.block-message a.close {
1425
+ display: block;
1426
+ color: #404040;
1427
+ color: rgba(0, 0, 0, 0.5);
1428
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1429
+ }
1430
+ div.block-message.error {
1431
+ background: #f8dcda;
1432
+ border: 1px solid #f4c8c5;
1433
+ }
1434
+ div.block-message.warning {
1435
+ background: #fff0c0;
1436
+ border: 1px solid #ffe38d;
1437
+ }
1438
+ div.block-message.success {
1439
+ background: #dff1df;
1440
+ border: 1px solid #bbe2bb;
1441
+ }
1442
+ div.block-message.info {
1443
+ background: #c7eefe;
1444
+ border: 1px solid #ade6fe;
1445
+ }
1446
+ ul.tabs, ul.pills {
1447
+ margin: 0 0 20px;
1448
+ padding: 0;
1449
+ zoom: 1;
1450
+ }
1451
+ ul.tabs:before,
1452
+ ul.pills:before,
1453
+ ul.tabs:after,
1454
+ ul.pills:after {
1455
+ display: table;
1456
+ content: "";
1457
+ }
1458
+ ul.tabs:after, ul.pills:after {
1459
+ clear: both;
1460
+ }
1461
+ ul.tabs li, ul.pills li {
1462
+ display: inline;
1463
+ }
1464
+ ul.tabs li a, ul.pills li a {
1465
+ float: left;
1466
+ width: auto;
1467
+ }
1468
+ ul.tabs {
1469
+ width: 100%;
1470
+ border-bottom: 1px solid #bfbfbf;
1471
+ }
1472
+ ul.tabs li a {
1473
+ margin-bottom: -1px;
1474
+ margin-right: 2px;
1475
+ padding: 0 15px;
1476
+ line-height: 35px;
1477
+ -webkit-border-radius: 3px 3px 0 0;
1478
+ -moz-border-radius: 3px 3px 0 0;
1479
+ border-radius: 3px 3px 0 0;
1480
+ }
1481
+ ul.tabs li a:hover {
1482
+ background-color: #e6e6e6;
1483
+ border-bottom: 1px solid #bfbfbf;
1484
+ }
1485
+ ul.tabs li.active a {
1486
+ background-color: #fff;
1487
+ padding: 0 14px;
1488
+ border: 1px solid #ccc;
1489
+ border-bottom: 0;
1490
+ color: #808080;
1491
+ }
1492
+ ul.pills li a {
1493
+ margin: 5px 3px 5px 0;
1494
+ padding: 0 15px;
1495
+ text-shadow: 0 1px 1px #fff;
1496
+ line-height: 30px;
1497
+ -webkit-border-radius: 15px;
1498
+ -moz-border-radius: 15px;
1499
+ border-radius: 15px;
1500
+ }
1501
+ ul.pills li a:hover {
1502
+ background: #0050a3;
1503
+ color: #fff;
1504
+ text-decoration: none;
1505
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1506
+ }
1507
+ ul.pills li.active a {
1508
+ background: #0069d6;
1509
+ color: #fff;
1510
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1511
+ }
1512
+ div.pagination {
1513
+ height: 36px;
1514
+ margin: 18px 0;
1515
+ }
1516
+ div.pagination ul {
1517
+ float: left;
1518
+ margin: 0;
1519
+ border: 1px solid rgba(0, 0, 0, 0.15);
1520
+ -webkit-border-radius: 3px;
1521
+ -moz-border-radius: 3px;
1522
+ border-radius: 3px;
1523
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
1524
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
1525
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
1526
+ }
1527
+ div.pagination ul li {
1528
+ display: inline;
1529
+ }
1530
+ div.pagination ul li a {
1531
+ float: left;
1532
+ padding: 0 14px;
1533
+ line-height: 34px;
1534
+ border-right: 1px solid rgba(0, 0, 0, 0.15);
1535
+ text-decoration: none;
1536
+ }
1537
+ div.pagination ul li a:hover, div.pagination ul li.active a {
1538
+ background-color: #c7eefe;
1539
+ }
1540
+ div.pagination ul li.disabled a, div.pagination ul li.disabled a:hover {
1541
+ background-color: none;
1542
+ color: #bfbfbf;
1543
+ }
1544
+ div.pagination ul li.next a, div.pagination ul li:last-child a {
1545
+ border: 0;
1546
+ }
1547
+ div.well {
1548
+ background: #f5f5f5;
1549
+ margin-bottom: 20px;
1550
+ padding: 19px;
1551
+ min-height: 20px;
1552
+ border: 1px solid #ddd;
1553
+ -webkit-border-radius: 4px;
1554
+ -moz-border-radius: 4px;
1555
+ border-radius: 4px;
1556
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1557
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1558
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1559
+ }
1560
+ div.modal-backdrop {
1561
+ background-color: rgba(0, 0, 0, 0.5);
1562
+ position: fixed;
1563
+ top: 0;
1564
+ left: 0;
1565
+ right: 0;
1566
+ bottom: 0;
1567
+ z-index: 1000;
1568
+ }
1569
+ div.modal {
1570
+ position: fixed;
1571
+ top: 50%;
1572
+ left: 50%;
1573
+ z-index: 2000;
1574
+ width: 560px;
1575
+ margin: -280px 0 0 -250px;
1576
+ background-color: #ffffff;
1577
+ border: 1px solid rgba(0, 0, 0, 0.3);
1578
+ -webkit-border-radius: 6px;
1579
+ -moz-border-radius: 6px;
1580
+ border-radius: 6px;
1581
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1582
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1583
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1584
+ -webkit-background-clip: padding;
1585
+ -moz-background-clip: padding;
1586
+ background-clip: padding;
1587
+ }
1588
+ div.modal .modal-header {
1589
+ border-bottom: 1px solid #eee;
1590
+ padding: 5px 20px;
1591
+ }
1592
+ div.modal .modal-header a.close {
1593
+ position: absolute;
1594
+ right: 10px;
1595
+ top: 10px;
1596
+ color: #999;
1597
+ line-height: 10px;
1598
+ font-size: 18px;
1599
+ }
1600
+ div.modal .modal-body {
1601
+ padding: 20px;
1602
+ }
1603
+ div.modal .modal-footer {
1604
+ background-color: #f5f5f5;
1605
+ padding: 14px 20px 15px;
1606
+ border-top: 1px solid #ddd;
1607
+ -webkit-border-radius: 0 0 6px 6px;
1608
+ -moz-border-radius: 0 0 6px 6px;
1609
+ border-radius: 0 0 6px 6px;
1610
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
1611
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
1612
+ box-shadow: inset 0 1px 0 #ffffff;
1613
+ zoom: 1;
1614
+ }
1615
+ div.modal .modal-footer:before, div.modal .modal-footer:after {
1616
+ display: table;
1617
+ content: "";
1618
+ }
1619
+ div.modal .modal-footer:after {
1620
+ clear: both;
1621
+ }
1622
+ div.modal .modal-footer .btn {
1623
+ float: right;
1624
+ margin-left: 10px;
1625
+ }
1626
+ div.twipsy {
1627
+ display: block;
1628
+ position: absolute;
1629
+ visibility: visible;
1630
+ padding: 5px;
1631
+ font-size: 11px;
1632
+ z-index: 1000;
1633
+ filter: alpha(opacity=80);
1634
+ -khtml-opacity: 0.8;
1635
+ -moz-opacity: 0.8;
1636
+ opacity: 0.8;
1637
+ }
1638
+ div.twipsy.above .twipsy-arrow {
1639
+ bottom: 0;
1640
+ left: 50%;
1641
+ margin-left: -5px;
1642
+ border-left: 5px solid transparent;
1643
+ border-right: 5px solid transparent;
1644
+ border-top: 5px solid #000000;
1645
+ }
1646
+ div.twipsy.left .twipsy-arrow {
1647
+ top: 50%;
1648
+ right: 0;
1649
+ margin-top: -5px;
1650
+ border-top: 5px solid transparent;
1651
+ border-bottom: 5px solid transparent;
1652
+ border-left: 5px solid #000000;
1653
+ }
1654
+ div.twipsy.below .twipsy-arrow {
1655
+ top: 0;
1656
+ left: 50%;
1657
+ margin-left: -5px;
1658
+ border-left: 5px solid transparent;
1659
+ border-right: 5px solid transparent;
1660
+ border-bottom: 5px solid #000000;
1661
+ }
1662
+ div.twipsy.right .twipsy-arrow {
1663
+ top: 50%;
1664
+ left: 0;
1665
+ margin-top: -5px;
1666
+ border-top: 5px solid transparent;
1667
+ border-bottom: 5px solid transparent;
1668
+ border-right: 5px solid #000000;
1669
+ }
1670
+ div.twipsy .twipsy-inner {
1671
+ padding: 3px 8px;
1672
+ background-color: #000;
1673
+ color: white;
1674
+ text-align: center;
1675
+ max-width: 200px;
1676
+ text-decoration: none;
1677
+ -webkit-border-radius: 4px;
1678
+ -moz-border-radius: 4px;
1679
+ border-radius: 4px;
1680
+ }
1681
+ div.twipsy .twipsy-arrow {
1682
+ position: absolute;
1683
+ width: 0;
1684
+ height: 0;
1685
+ }
1686
+ .popover {
1687
+ position: absolute;
1688
+ top: 0;
1689
+ left: 0;
1690
+ z-index: 1000;
1691
+ padding: 5px;
1692
+ display: none;
1693
+ }
1694
+ .popover.above .arrow {
1695
+ bottom: 0;
1696
+ left: 50%;
1697
+ margin-left: -5px;
1698
+ border-left: 5px solid transparent;
1699
+ border-right: 5px solid transparent;
1700
+ border-top: 5px solid #000000;
1701
+ }
1702
+ .popover.right .arrow {
1703
+ top: 50%;
1704
+ left: 0;
1705
+ margin-top: -5px;
1706
+ border-top: 5px solid transparent;
1707
+ border-bottom: 5px solid transparent;
1708
+ border-right: 5px solid #000000;
1709
+ }
1710
+ .popover.below .arrow {
1711
+ top: 0;
1712
+ left: 50%;
1713
+ margin-left: -5px;
1714
+ border-left: 5px solid transparent;
1715
+ border-right: 5px solid transparent;
1716
+ border-bottom: 5px solid #000000;
1717
+ }
1718
+ .popover.left .arrow {
1719
+ top: 50%;
1720
+ right: 0;
1721
+ margin-top: -5px;
1722
+ border-top: 5px solid transparent;
1723
+ border-bottom: 5px solid transparent;
1724
+ border-left: 5px solid #000000;
1725
+ }
1726
+ .popover .arrow {
1727
+ position: absolute;
1728
+ width: 0;
1729
+ height: 0;
1730
+ }
1731
+ .popover .inner {
1732
+ background: rgba(0, 0, 0, 0.8);
1733
+ padding: 3px;
1734
+ overflow: hidden;
1735
+ width: 280px;
1736
+ -webkit-border-radius: 6px;
1737
+ -moz-border-radius: 6px;
1738
+ border-radius: 6px;
1739
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1740
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1741
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
1742
+ }
1743
+ .popover .title {
1744
+ background: #f5f5f5;
1745
+ padding: 9px 15px;
1746
+ line-height: 1;
1747
+ -webkit-border-radius: 3px 3px 0 0;
1748
+ -moz-border-radius: 3px 3px 0 0;
1749
+ border-radius: 3px 3px 0 0;
1750
+ border-bottom: 1px solid #eee;
1751
+ }
1752
+ .popover .content {
1753
+ background-color: #ffffff;
1754
+ padding: 14px;
1755
+ -webkit-border-radius: 0 0 3px 3px;
1756
+ -moz-border-radius: 0 0 3px 3px;
1757
+ border-radius: 0 0 3px 3px;
1758
+ -webkit-background-clip: padding;
1759
+ -moz-background-clip: padding;
1760
+ background-clip: padding;
1761
+ }
1762
+ .popover .content p, .popover .content ul, .popover .content ol {
1763
+ margin-bottom: 0;
1764
+ }