sequenceserver 0.7.9 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sequenceserver might be problematic. Click here for more details.
- data/lib/sequenceserver.rb +55 -57
- data/lib/sequenceserver/blast.rb +51 -158
- data/lib/sequenceserver/database.rb +8 -2
- data/lib/sequenceserver/helpers.rb +14 -12
- data/lib/sequenceserver/options.rb +132 -0
- data/lib/sequenceserver/sequencehelpers.rb +4 -30
- data/public/css/bootstrap.dropdown.css +29 -0
- data/public/css/bootstrap.icons.css +155 -0
- data/public/css/bootstrap.min.css +399 -314
- data/public/css/bootstrap.modal.css +28 -0
- data/public/css/custom.css +183 -23
- data/public/img/glyphicons-halflings-white.png +0 -0
- data/public/img/glyphicons-halflings.png +0 -0
- data/public/js/bootstrap-typeahead.js +298 -0
- data/public/js/bootstrap.dropdown.js +92 -0
- data/public/js/bootstrap.modal.js +7 -0
- data/public/js/bootstrap.transition.js +7 -0
- data/public/js/jquery.index.js +67 -0
- data/public/js/jquery.scrollspy.js +74 -0
- data/public/js/jquery.ui.js +57 -0
- data/public/js/sequenceserver.blast.js +96 -37
- data/public/js/sequenceserver.js +157 -85
- data/public/js/store.min.js +2 -0
- data/public/js/yaml.js +24 -0
- data/sequenceserver.gemspec +5 -2
- data/tests/run +26 -0
- data/tests/test_sequencehelpers.rb +10 -18
- data/tests/test_sequenceserver_blast.rb +60 -0
- data/views/_options.erb +144 -0
- data/views/search.erb +133 -145
- metadata +135 -52
@@ -0,0 +1,132 @@
|
|
1
|
+
require 'open3'
|
2
|
+
|
3
|
+
module SequenceServer
|
4
|
+
module CLIOptions
|
5
|
+
|
6
|
+
extend self
|
7
|
+
|
8
|
+
# A Hash of all possible options.
|
9
|
+
attr_reader :options
|
10
|
+
|
11
|
+
# An Array of options that are banned by SequenceServer.
|
12
|
+
attr_reader :banned
|
13
|
+
|
14
|
+
#OPTSPEC = %x|#{SequenceServer::App.binaries[:blastp]} -help|
|
15
|
+
OPTSPEC = %x|blastp -help|
|
16
|
+
|
17
|
+
# Add a new option to the table of options.
|
18
|
+
def add(name, description, requires = [], incompatible_with = [])
|
19
|
+
name = name.to_sym
|
20
|
+
properties = {:description => description.to_s,
|
21
|
+
:requires => Array(requires),
|
22
|
+
:incomptible_with => Array(incompatible_with)}
|
23
|
+
|
24
|
+
@options[name] = properties
|
25
|
+
end
|
26
|
+
|
27
|
+
def generate
|
28
|
+
@banned = [:h, :help, :version, :query, :db, :out, :subject, :outfmt, :html, :import_search_strategy, :export_search_strategy]
|
29
|
+
|
30
|
+
create_range_constraint = lambda do |min, max|
|
31
|
+
min = min || 0
|
32
|
+
max = max || 1.0/0
|
33
|
+
range = min..max
|
34
|
+
lambda {|v| range.include? v}
|
35
|
+
end
|
36
|
+
|
37
|
+
name, condition, description, requires, incompatible_with = nil
|
38
|
+
|
39
|
+
OPTSPEC.each_line do |line|
|
40
|
+
line.strip!
|
41
|
+
|
42
|
+
if line.match(/^-(\w*)\s(<(.+)>)*/)
|
43
|
+
if name
|
44
|
+
# process previous options
|
45
|
+
puts "
|
46
|
+
add '#{name}' do
|
47
|
+
self.description = \"#{description.join("\n")}\"
|
48
|
+
self.requires = #{requires}
|
49
|
+
self.incompatible_with = #{incompatible_with}
|
50
|
+
self.condition = #{condition}
|
51
|
+
end"
|
52
|
+
|
53
|
+
#constraints = define_constraints(condition)
|
54
|
+
#p "****************************"
|
55
|
+
|
56
|
+
name = condition = description = requires = incompatible_with = nil
|
57
|
+
end
|
58
|
+
|
59
|
+
name = Regexp.last_match[1].to_sym
|
60
|
+
|
61
|
+
if @banned.include? name
|
62
|
+
name = nil
|
63
|
+
next
|
64
|
+
end
|
65
|
+
|
66
|
+
condition = Regexp.last_match[3].split(', ')
|
67
|
+
next
|
68
|
+
end
|
69
|
+
|
70
|
+
if name and line.match(/Requires:\s*(.*)/)
|
71
|
+
requires = Regexp.last_match[1].split(/, /)
|
72
|
+
next
|
73
|
+
end
|
74
|
+
|
75
|
+
if name and line.match(/Incompatible with:\s*(.*)/)
|
76
|
+
incompatible_with = Regexp.last_match[1].split(/, /)
|
77
|
+
next
|
78
|
+
end
|
79
|
+
|
80
|
+
if name and not (line.match(/\*\*\*/) or line.empty?)
|
81
|
+
(description ||= []) << line
|
82
|
+
next
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def define_constraints(condition)
|
88
|
+
return unless condition
|
89
|
+
|
90
|
+
type, range = condition
|
91
|
+
|
92
|
+
cast = lambda do |v|
|
93
|
+
case range
|
94
|
+
when "Integer"
|
95
|
+
v.to_i
|
96
|
+
when "Real"
|
97
|
+
v.to_f
|
98
|
+
when "String"
|
99
|
+
v.to_s
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
range_constraint = if range and range.match(/Permissible values: (.*)/)
|
104
|
+
list = Regexp.last_match[1].split
|
105
|
+
define_range_constraint(list)
|
106
|
+
elsif range and range.match(/>=(\d\.?\d?)( and =<(\d\.?\d?))*/)
|
107
|
+
min = cast.call Regexp.last_match[1]
|
108
|
+
max = cast.call Regexp.last_match[3]
|
109
|
+
define_range_constraint(min, max)
|
110
|
+
end
|
111
|
+
|
112
|
+
[range_constraint]
|
113
|
+
end
|
114
|
+
|
115
|
+
def define_range_constraint(min_or_array, max = nil)
|
116
|
+
if min_or_array.is_a? Array
|
117
|
+
range = min_or_array
|
118
|
+
else
|
119
|
+
min = min || 0
|
120
|
+
max = max || 1.0/0
|
121
|
+
range = (min..max)
|
122
|
+
end
|
123
|
+
|
124
|
+
lambda {|v| range.include? v}
|
125
|
+
end
|
126
|
+
|
127
|
+
def parse(options)
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
SequenceServer::CLIOptions.generate
|
@@ -55,34 +55,6 @@ module SequenceServer
|
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
58
|
-
# Return the database type that can be used for a given blast method.
|
59
|
-
# db_type_for("blastp") => :protein
|
60
|
-
# db_type_for("tblastn") => :nucleotide
|
61
|
-
# db_type_for(nil) => nil
|
62
|
-
def db_type_for(blast_method)
|
63
|
-
case blast_method
|
64
|
-
when 'blastp', 'blastx'
|
65
|
-
:protein
|
66
|
-
when 'blastn', 'tblastx', 'tblastn'
|
67
|
-
:nucleotide
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
# Return the blast methods that can be used for a given type of sequence.
|
72
|
-
# blast_methods_for(:protein) => ['blastp', 'tblastn']
|
73
|
-
# blast_methods_for(:nucleotide) => ['blastn','tblastx','blastx']
|
74
|
-
# blast_methods_for(nil) => ['blastp', 'tblastn','blastn','tblastx','blastx']
|
75
|
-
def blast_methods_for(seq_type)
|
76
|
-
case seq_type
|
77
|
-
when :protein
|
78
|
-
['blastp', 'tblastn']
|
79
|
-
when :nucleotide
|
80
|
-
['blastn','tblastx','blastx']
|
81
|
-
else # Sequence type not predicted, so don't make any assumptions about the blast method
|
82
|
-
['blastp', 'tblastn','blastn','tblastx','blastx']
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
58
|
def sequence_from_blastdb(ids, db) # helpful when displaying parsed blast results
|
87
59
|
# we know how to handle an Array of ids
|
88
60
|
ids = ids.join(',') if ids.is_a? Array
|
@@ -103,8 +75,10 @@ module SequenceServer
|
|
103
75
|
def construct_standard_sequence_hyperlink(options)
|
104
76
|
if options[:sequence_id].match(/^[^ ]/) #if there is a space right after the '>', makeblastdb was run without -parse_seqids
|
105
77
|
# By default, add a link to a fasta file of the sequence (if makeblastdb was called with -parse_seqids)
|
106
|
-
|
107
|
-
|
78
|
+
|
79
|
+
sid = options[:sequence_id].gsub(/<\/?[^>]*>/, '') # strip html
|
80
|
+
cid = sid[/^(\S+)\s*.*/, 1] # get id part
|
81
|
+
id = cid.include?('|') ? cid.split('|')[1] : cid.split('|')[0]
|
108
82
|
@all_retrievable_ids ||= []
|
109
83
|
@all_retrievable_ids.push(id)
|
110
84
|
|
@@ -0,0 +1,29 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v2.0.2
|
3
|
+
*
|
4
|
+
* Copyright 2012 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
|
+
*/
|
10
|
+
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";}
|
11
|
+
.clearfix:after{clear:both;}
|
12
|
+
.hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;}
|
13
|
+
.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
|
14
|
+
.dropdown{position:relative;}
|
15
|
+
.dropdown-toggle{*margin-bottom:-3px;}
|
16
|
+
.dropdown-toggle:active,.open .dropdown-toggle{outline:0;}
|
17
|
+
.caret{display:inline-block;width:0;height:0;vertical-align:top;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000000;opacity:0.3;filter:alpha(opacity=30);content:"";}
|
18
|
+
.dropdown .caret{margin-top:8px;margin-left:2px;}
|
19
|
+
.dropdown:hover .caret,.open.dropdown .caret{opacity:1;filter:alpha(opacity=100);}
|
20
|
+
.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;padding:4px 0;margin:0;list-style:none;background-color:#ffffff;border-color:#ccc;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:1px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;*border-right-width:2px;*border-bottom-width:2px;}.dropdown-menu.pull-right{right:0;left:auto;}
|
21
|
+
.dropdown-menu .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;}
|
22
|
+
.dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#333333;white-space:nowrap;}
|
23
|
+
.dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;background-color:#0088cc;}
|
24
|
+
.dropdown.open{*z-index:1000;}.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);}
|
25
|
+
.dropdown.open .dropdown-menu{display:block;}
|
26
|
+
.pull-right .dropdown-menu{left:auto;right:0;}
|
27
|
+
.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"\2191";}
|
28
|
+
.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}
|
29
|
+
.typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
|
@@ -0,0 +1,155 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v2.0.3
|
3
|
+
*
|
4
|
+
* Copyright 2012 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
|
+
*/
|
10
|
+
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";}
|
11
|
+
.clearfix:after{clear:both;}
|
12
|
+
.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
|
13
|
+
.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
|
14
|
+
[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;}[class^="icon-"]:last-child,[class*=" icon-"]:last-child{*margin-left:0;}
|
15
|
+
.icon-white{background-image:url("../img/glyphicons-halflings-white.png");}
|
16
|
+
.icon-glass{background-position:0 0;}
|
17
|
+
.icon-music{background-position:-24px 0;}
|
18
|
+
.icon-search{background-position:-48px 0;}
|
19
|
+
.icon-envelope{background-position:-72px 0;}
|
20
|
+
.icon-heart{background-position:-96px 0;}
|
21
|
+
.icon-star{background-position:-120px 0;}
|
22
|
+
.icon-star-empty{background-position:-144px 0;}
|
23
|
+
.icon-user{background-position:-168px 0;}
|
24
|
+
.icon-film{background-position:-192px 0;}
|
25
|
+
.icon-th-large{background-position:-216px 0;}
|
26
|
+
.icon-th{background-position:-240px 0;}
|
27
|
+
.icon-th-list{background-position:-264px 0;}
|
28
|
+
.icon-ok{background-position:-288px 0;}
|
29
|
+
.icon-remove{background-position:-312px 0;}
|
30
|
+
.icon-zoom-in{background-position:-336px 0;}
|
31
|
+
.icon-zoom-out{background-position:-360px 0;}
|
32
|
+
.icon-off{background-position:-384px 0;}
|
33
|
+
.icon-signal{background-position:-408px 0;}
|
34
|
+
.icon-cog{background-position:-432px 0;}
|
35
|
+
.icon-trash{background-position:-456px 0;}
|
36
|
+
.icon-home{background-position:0 -24px;}
|
37
|
+
.icon-file{background-position:-24px -24px;}
|
38
|
+
.icon-time{background-position:-48px -24px;}
|
39
|
+
.icon-road{background-position:-72px -24px;}
|
40
|
+
.icon-download-alt{background-position:-96px -24px;}
|
41
|
+
.icon-download{background-position:-120px -24px;}
|
42
|
+
.icon-upload{background-position:-144px -24px;}
|
43
|
+
.icon-inbox{background-position:-168px -24px;}
|
44
|
+
.icon-play-circle{background-position:-192px -24px;}
|
45
|
+
.icon-repeat{background-position:-216px -24px;}
|
46
|
+
.icon-refresh{background-position:-240px -24px;}
|
47
|
+
.icon-list-alt{background-position:-264px -24px;}
|
48
|
+
.icon-lock{background-position:-287px -24px;}
|
49
|
+
.icon-flag{background-position:-312px -24px;}
|
50
|
+
.icon-headphones{background-position:-336px -24px;}
|
51
|
+
.icon-volume-off{background-position:-360px -24px;}
|
52
|
+
.icon-volume-down{background-position:-384px -24px;}
|
53
|
+
.icon-volume-up{background-position:-408px -24px;}
|
54
|
+
.icon-qrcode{background-position:-432px -24px;}
|
55
|
+
.icon-barcode{background-position:-456px -24px;}
|
56
|
+
.icon-tag{background-position:0 -48px;}
|
57
|
+
.icon-tags{background-position:-25px -48px;}
|
58
|
+
.icon-book{background-position:-48px -48px;}
|
59
|
+
.icon-bookmark{background-position:-72px -48px;}
|
60
|
+
.icon-print{background-position:-96px -48px;}
|
61
|
+
.icon-camera{background-position:-120px -48px;}
|
62
|
+
.icon-font{background-position:-144px -48px;}
|
63
|
+
.icon-bold{background-position:-167px -48px;}
|
64
|
+
.icon-italic{background-position:-192px -48px;}
|
65
|
+
.icon-text-height{background-position:-216px -48px;}
|
66
|
+
.icon-text-width{background-position:-240px -48px;}
|
67
|
+
.icon-align-left{background-position:-264px -48px;}
|
68
|
+
.icon-align-center{background-position:-288px -48px;}
|
69
|
+
.icon-align-right{background-position:-312px -48px;}
|
70
|
+
.icon-align-justify{background-position:-336px -48px;}
|
71
|
+
.icon-list{background-position:-360px -48px;}
|
72
|
+
.icon-indent-left{background-position:-384px -48px;}
|
73
|
+
.icon-indent-right{background-position:-408px -48px;}
|
74
|
+
.icon-facetime-video{background-position:-432px -48px;}
|
75
|
+
.icon-picture{background-position:-456px -48px;}
|
76
|
+
.icon-pencil{background-position:0 -72px;}
|
77
|
+
.icon-map-marker{background-position:-24px -72px;}
|
78
|
+
.icon-adjust{background-position:-48px -72px;}
|
79
|
+
.icon-tint{background-position:-72px -72px;}
|
80
|
+
.icon-edit{background-position:-96px -72px;}
|
81
|
+
.icon-share{background-position:-120px -72px;}
|
82
|
+
.icon-check{background-position:-144px -72px;}
|
83
|
+
.icon-move{background-position:-168px -72px;}
|
84
|
+
.icon-step-backward{background-position:-192px -72px;}
|
85
|
+
.icon-fast-backward{background-position:-216px -72px;}
|
86
|
+
.icon-backward{background-position:-240px -72px;}
|
87
|
+
.icon-play{background-position:-264px -72px;}
|
88
|
+
.icon-pause{background-position:-288px -72px;}
|
89
|
+
.icon-stop{background-position:-312px -72px;}
|
90
|
+
.icon-forward{background-position:-336px -72px;}
|
91
|
+
.icon-fast-forward{background-position:-360px -72px;}
|
92
|
+
.icon-step-forward{background-position:-384px -72px;}
|
93
|
+
.icon-eject{background-position:-408px -72px;}
|
94
|
+
.icon-chevron-left{background-position:-432px -72px;}
|
95
|
+
.icon-chevron-right{background-position:-456px -72px;}
|
96
|
+
.icon-plus-sign{background-position:0 -96px;}
|
97
|
+
.icon-minus-sign{background-position:-24px -96px;}
|
98
|
+
.icon-remove-sign{background-position:-48px -96px;}
|
99
|
+
.icon-ok-sign{background-position:-72px -96px;}
|
100
|
+
.icon-question-sign{background-position:-96px -96px;}
|
101
|
+
.icon-info-sign{background-position:-120px -96px;}
|
102
|
+
.icon-screenshot{background-position:-144px -96px;}
|
103
|
+
.icon-remove-circle{background-position:-168px -96px;}
|
104
|
+
.icon-ok-circle{background-position:-192px -96px;}
|
105
|
+
.icon-ban-circle{background-position:-216px -96px;}
|
106
|
+
.icon-arrow-left{background-position:-240px -96px;}
|
107
|
+
.icon-arrow-right{background-position:-264px -96px;}
|
108
|
+
.icon-arrow-up{background-position:-289px -96px;}
|
109
|
+
.icon-arrow-down{background-position:-312px -96px;}
|
110
|
+
.icon-share-alt{background-position:-336px -96px;}
|
111
|
+
.icon-resize-full{background-position:-360px -96px;}
|
112
|
+
.icon-resize-small{background-position:-384px -96px;}
|
113
|
+
.icon-plus{background-position:-408px -96px;}
|
114
|
+
.icon-minus{background-position:-433px -96px;}
|
115
|
+
.icon-asterisk{background-position:-456px -96px;}
|
116
|
+
.icon-exclamation-sign{background-position:0 -120px;}
|
117
|
+
.icon-gift{background-position:-24px -120px;}
|
118
|
+
.icon-leaf{background-position:-48px -120px;}
|
119
|
+
.icon-fire{background-position:-72px -120px;}
|
120
|
+
.icon-eye-open{background-position:-96px -120px;}
|
121
|
+
.icon-eye-close{background-position:-120px -120px;}
|
122
|
+
.icon-warning-sign{background-position:-144px -120px;}
|
123
|
+
.icon-plane{background-position:-168px -120px;}
|
124
|
+
.icon-calendar{background-position:-192px -120px;}
|
125
|
+
.icon-random{background-position:-216px -120px;}
|
126
|
+
.icon-comment{background-position:-240px -120px;}
|
127
|
+
.icon-magnet{background-position:-264px -120px;}
|
128
|
+
.icon-chevron-up{background-position:-288px -120px;}
|
129
|
+
.icon-chevron-down{background-position:-313px -119px;}
|
130
|
+
.icon-retweet{background-position:-336px -120px;}
|
131
|
+
.icon-shopping-cart{background-position:-360px -120px;}
|
132
|
+
.icon-folder-close{background-position:-384px -120px;}
|
133
|
+
.icon-folder-open{background-position:-408px -120px;}
|
134
|
+
.icon-resize-vertical{background-position:-432px -119px;}
|
135
|
+
.icon-resize-horizontal{background-position:-456px -118px;}
|
136
|
+
.icon-hdd{background-position:0 -144px;}
|
137
|
+
.icon-bullhorn{background-position:-24px -144px;}
|
138
|
+
.icon-bell{background-position:-48px -144px;}
|
139
|
+
.icon-certificate{background-position:-72px -144px;}
|
140
|
+
.icon-thumbs-up{background-position:-96px -144px;}
|
141
|
+
.icon-thumbs-down{background-position:-120px -144px;}
|
142
|
+
.icon-hand-right{background-position:-144px -144px;}
|
143
|
+
.icon-hand-left{background-position:-168px -144px;}
|
144
|
+
.icon-hand-up{background-position:-192px -144px;}
|
145
|
+
.icon-hand-down{background-position:-216px -144px;}
|
146
|
+
.icon-circle-arrow-right{background-position:-240px -144px;}
|
147
|
+
.icon-circle-arrow-left{background-position:-264px -144px;}
|
148
|
+
.icon-circle-arrow-up{background-position:-288px -144px;}
|
149
|
+
.icon-circle-arrow-down{background-position:-312px -144px;}
|
150
|
+
.icon-globe{background-position:-336px -144px;}
|
151
|
+
.icon-wrench{background-position:-360px -144px;}
|
152
|
+
.icon-tasks{background-position:-384px -144px;}
|
153
|
+
.icon-filter{background-position:-408px -144px;}
|
154
|
+
.icon-briefcase{background-position:-432px -144px;}
|
155
|
+
.icon-fullscreen{background-position:-456px -144px;}
|
@@ -1,330 +1,415 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
1
|
+
/*!
|
2
|
+
* Bootstrap v2.0.2
|
3
|
+
*
|
4
|
+
* Copyright 2012 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
|
+
*/
|
10
|
+
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";}
|
11
|
+
.clearfix:after{clear:both;}
|
12
|
+
.hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;}
|
13
|
+
.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
|
9
14
|
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
|
10
15
|
audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
|
11
16
|
audio:not([controls]){display:none;}
|
12
|
-
|
17
|
+
html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
|
18
|
+
a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
|
19
|
+
a:hover,a:active{outline:0;}
|
20
|
+
sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;}
|
13
21
|
sup{top:-0.5em;}
|
14
22
|
sub{bottom:-0.25em;}
|
15
|
-
img{border:0;-ms-interpolation-mode:bicubic;}
|
16
|
-
button,input,select,textarea{font-size:100%;
|
17
|
-
button,input{line-height:normal
|
18
|
-
button::-moz-focus-inner,input::-moz-focus-inner{
|
23
|
+
img{height:auto;border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;}
|
24
|
+
button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;}
|
25
|
+
button,input{*overflow:visible;line-height:normal;}
|
26
|
+
button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;}
|
19
27
|
button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;}
|
20
28
|
input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
|
21
|
-
input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
|
29
|
+
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;}
|
22
30
|
textarea{overflow:auto;vertical-align:top;}
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
.
|
27
|
-
.container-fluid{position:relative;min-width:940px;padding-left:20px;padding-right:20px;zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";zoom:1;*display:inline;}
|
28
|
-
.container-fluid:after{clear:both;}
|
29
|
-
.container-fluid>.sidebar{float:left;width:220px;}
|
30
|
-
.container-fluid>.content{margin-left:240px;}
|
31
|
-
a{color:#0069d6;text-decoration:none;line-height:inherit;font-weight:inherit;}a:hover{color:#00438a;text-decoration:underline;}
|
32
|
-
.pull-right{float:right;}
|
33
|
-
.pull-left{float:left;}
|
34
|
-
.hide{display:none;}
|
35
|
-
.show{display:block;}
|
36
|
-
.row{zoom:1;margin-left:-20px;}.row:before,.row:after{display:table;content:"";zoom:1;*display:inline;}
|
31
|
+
body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;}
|
32
|
+
a{color:#0088cc;text-decoration:none;}
|
33
|
+
a:hover{color:#005580;text-decoration:underline;}
|
34
|
+
.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";}
|
37
35
|
.row:after{clear:both;}
|
38
|
-
[class*="span"]{
|
39
|
-
.
|
40
|
-
.span2{width:100px;}
|
41
|
-
.span3{width:160px;}
|
42
|
-
.span4{width:220px;}
|
43
|
-
.span5{width:280px;}
|
44
|
-
.span6{width:340px;}
|
45
|
-
.span7{width:400px;}
|
46
|
-
.span8{width:460px;}
|
47
|
-
.span9{width:520px;}
|
48
|
-
.span10{width:580px;}
|
49
|
-
.span11{width:640px;}
|
50
|
-
.span12{width:700px;}
|
51
|
-
.span13{width:760px;}
|
52
|
-
.span14{width:820px;}
|
53
|
-
.span15{width:880px;}
|
36
|
+
[class*="span"]{float:left;margin-left:20px;}
|
37
|
+
.container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
|
54
38
|
.span16{width:940px;}
|
55
|
-
.
|
56
|
-
.
|
57
|
-
.
|
58
|
-
.
|
59
|
-
.
|
60
|
-
.
|
61
|
-
.
|
62
|
-
.
|
63
|
-
.
|
64
|
-
.
|
65
|
-
.
|
66
|
-
.
|
67
|
-
.
|
68
|
-
.
|
69
|
-
.
|
70
|
-
.
|
71
|
-
.
|
72
|
-
.
|
73
|
-
.
|
39
|
+
.span15{width:880px;}
|
40
|
+
.span14{width:820px;}
|
41
|
+
.span13{width:760px;}
|
42
|
+
.span12{width:700px;}
|
43
|
+
.span11{width:640px;}
|
44
|
+
.span10{width:580px;}
|
45
|
+
.span9{width:520px;}
|
46
|
+
.span8{width:460px;}
|
47
|
+
.span7{width:400px;}
|
48
|
+
.span6{width:340px;}
|
49
|
+
.span5{width:280px;}
|
50
|
+
.span4{width:220px;}
|
51
|
+
.span3{width:160px;}
|
52
|
+
.span2{width:100px;}
|
53
|
+
.span1{width:40px;}
|
54
|
+
.offset16{margin-left:980px;}
|
55
|
+
.offset15{margin-left:920px;}
|
56
|
+
.offset14{margin-left:860px;}
|
57
|
+
.offset13{margin-left:800px;}
|
74
58
|
.offset12{margin-left:740px;}
|
75
|
-
.
|
76
|
-
.
|
77
|
-
.
|
78
|
-
.
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
59
|
+
.offset11{margin-left:680px;}
|
60
|
+
.offset10{margin-left:620px;}
|
61
|
+
.offset9{margin-left:560px;}
|
62
|
+
.offset8{margin-left:500px;}
|
63
|
+
.offset7{margin-left:440px;}
|
64
|
+
.offset6{margin-left:380px;}
|
65
|
+
.offset5{margin-left:320px;}
|
66
|
+
.offset4{margin-left:260px;}
|
67
|
+
.offset3{margin-left:200px;}
|
68
|
+
.offset2{margin-left:140px;}
|
69
|
+
.offset1{margin-left:80px;}
|
70
|
+
.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";}
|
71
|
+
.row-fluid:after{clear:both;}
|
72
|
+
.row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;}
|
73
|
+
.row-fluid>[class*="span"]:first-child{margin-left:0;}
|
74
|
+
.row-fluid > .span16{width:134.042553178%;}
|
75
|
+
.row-fluid > .span15{width:125.531914881%;}
|
76
|
+
.row-fluid > .span14{width:117.02127658399999%;}
|
77
|
+
.row-fluid > .span13{width:108.510638287%;}
|
78
|
+
.row-fluid > .span12{width:99.99999998999999%;}
|
79
|
+
.row-fluid > .span11{width:91.489361693%;}
|
80
|
+
.row-fluid > .span10{width:82.97872339599999%;}
|
81
|
+
.row-fluid > .span9{width:74.468085099%;}
|
82
|
+
.row-fluid > .span8{width:65.95744680199999%;}
|
83
|
+
.row-fluid > .span7{width:57.446808505%;}
|
84
|
+
.row-fluid > .span6{width:48.93617020799999%;}
|
85
|
+
.row-fluid > .span5{width:40.425531911%;}
|
86
|
+
.row-fluid > .span4{width:31.914893614%;}
|
87
|
+
.row-fluid > .span3{width:23.404255317%;}
|
88
|
+
.row-fluid > .span2{width:14.89361702%;}
|
89
|
+
.row-fluid > .span1{width:6.382978723%;}
|
90
|
+
.container{margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";}
|
91
|
+
.container:after{clear:both;}
|
92
|
+
.container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";}
|
93
|
+
.container-fluid:after{clear:both;}
|
94
|
+
p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;}
|
95
|
+
.lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;}
|
96
|
+
h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;}
|
97
|
+
h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;}
|
98
|
+
h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;}
|
99
|
+
h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;}
|
100
|
+
h4,h5,h6{line-height:18px;}
|
101
|
+
h4{font-size:14px;}h4 small{font-size:12px;}
|
102
|
+
h5{font-size:12px;}
|
103
|
+
h6{font-size:11px;color:#999999;text-transform:uppercase;}
|
104
|
+
.page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;}
|
105
|
+
.page-header h1{line-height:1;}
|
106
|
+
ul,ol{padding:0;margin:0 0 9px 25px;}
|
89
107
|
ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
|
90
108
|
ul{list-style:disc;}
|
91
109
|
ol{list-style:decimal;}
|
92
|
-
li{line-height:18px;
|
93
|
-
ul.unstyled{list-style:none;
|
94
|
-
dl{margin-bottom:18px;}
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
110
|
+
li{line-height:18px;}
|
111
|
+
ul.unstyled,ol.unstyled{margin-left:0;list-style:none;}
|
112
|
+
dl{margin-bottom:18px;}
|
113
|
+
dt,dd{line-height:18px;}
|
114
|
+
dt{font-weight:bold;line-height:17px;}
|
115
|
+
dd{margin-left:9px;}
|
116
|
+
.dl-horizontal dt{float:left;clear:left;width:120px;text-align:right;}
|
117
|
+
.dl-horizontal dd{margin-left:130px;}
|
118
|
+
hr{margin:18px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;}
|
119
|
+
strong{font-weight:bold;}
|
120
|
+
em{font-style:italic;}
|
121
|
+
.muted{color:#999999;}
|
122
|
+
abbr[title]{border-bottom:1px dotted #ddd;cursor:help;}
|
123
|
+
abbr.initialism{font-size:90%;text-transform:uppercase;}
|
124
|
+
blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;}
|
125
|
+
blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';}
|
126
|
+
blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;}
|
127
|
+
q:before,q:after,blockquote:before,blockquote:after{content:"";}
|
128
|
+
address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;}
|
129
|
+
small{font-size:100%;}
|
130
|
+
cite{font-style:normal;}
|
131
|
+
code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
|
132
|
+
code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;}
|
133
|
+
pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;}pre.prettyprint{margin-bottom:18px;}
|
134
|
+
pre code{padding:0;color:inherit;background-color:transparent;border:0;}
|
135
|
+
.pre-scrollable{max-height:340px;overflow-y:scroll;}
|
136
|
+
.label{padding:1px 4px 2px;font-size:10.998px;font-weight:bold;line-height:13px;color:#ffffff;vertical-align:middle;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
|
137
|
+
.label:hover{color:#ffffff;text-decoration:none;}
|
138
|
+
.label-important{background-color:#b94a48;}
|
139
|
+
.label-important:hover{background-color:#953b39;}
|
140
|
+
.label-warning{background-color:#f89406;}
|
141
|
+
.label-warning:hover{background-color:#c67605;}
|
142
|
+
.label-success{background-color:#468847;}
|
143
|
+
.label-success:hover{background-color:#356635;}
|
144
|
+
.label-info{background-color:#3a87ad;}
|
145
|
+
.label-info:hover{background-color:#2d6987;}
|
146
|
+
.label-inverse{background-color:#333333;}
|
147
|
+
.label-inverse:hover{background-color:#1a1a1a;}
|
148
|
+
.badge{padding:1px 9px 2px;font-size:12.025px;font-weight:bold;white-space:nowrap;color:#ffffff;background-color:#999999;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;}
|
149
|
+
.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;}
|
150
|
+
.badge-error{background-color:#b94a48;}
|
151
|
+
.badge-error:hover{background-color:#953b39;}
|
152
|
+
.badge-warning{background-color:#f89406;}
|
153
|
+
.badge-warning:hover{background-color:#c67605;}
|
154
|
+
.badge-success{background-color:#468847;}
|
155
|
+
.badge-success:hover{background-color:#356635;}
|
156
|
+
.badge-info{background-color:#3a87ad;}
|
157
|
+
.badge-info:hover{background-color:#2d6987;}
|
158
|
+
.badge-inverse{background-color:#333333;}
|
159
|
+
.badge-inverse:hover{background-color:#1a1a1a;}
|
160
|
+
table{max-width:100%;border-collapse:collapse;border-spacing:0;background-color:transparent;}
|
161
|
+
.table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;}
|
162
|
+
.table th{font-weight:bold;}
|
163
|
+
.table thead th{vertical-align:bottom;}
|
164
|
+
.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;}
|
165
|
+
.table tbody+tbody{border-top:2px solid #dddddd;}
|
166
|
+
.table-condensed th,.table-condensed td{padding:4px 5px;}
|
167
|
+
.table-bordered{border:1px solid #dddddd;border-left:0;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;}
|
168
|
+
.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;}
|
169
|
+
.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;}
|
170
|
+
.table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;}
|
171
|
+
.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;}
|
172
|
+
.table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;}
|
173
|
+
.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;}
|
174
|
+
.table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5;}
|
175
|
+
table .span1{float:none;width:24px;margin-left:0;}
|
176
|
+
table .span2{float:none;width:84px;margin-left:0;}
|
177
|
+
table .span3{float:none;width:144px;margin-left:0;}
|
178
|
+
table .span4{float:none;width:204px;margin-left:0;}
|
179
|
+
table .span5{float:none;width:264px;margin-left:0;}
|
180
|
+
table .span6{float:none;width:324px;margin-left:0;}
|
181
|
+
table .span7{float:none;width:384px;margin-left:0;}
|
182
|
+
table .span8{float:none;width:444px;margin-left:0;}
|
183
|
+
table .span9{float:none;width:504px;margin-left:0;}
|
184
|
+
table .span10{float:none;width:564px;margin-left:0;}
|
185
|
+
table .span11{float:none;width:624px;margin-left:0;}
|
186
|
+
table .span12{float:none;width:684px;margin-left:0;}
|
187
|
+
table .span13{float:none;width:744px;margin-left:0;}
|
188
|
+
table .span14{float:none;width:804px;margin-left:0;}
|
189
|
+
table .span15{float:none;width:864px;margin-left:0;}
|
190
|
+
table .span16{float:none;width:924px;margin-left:0;}
|
191
|
+
table .span17{float:none;width:984px;margin-left:0;}
|
192
|
+
table .span18{float:none;width:1044px;margin-left:0;}
|
193
|
+
table .span19{float:none;width:1104px;margin-left:0;}
|
194
|
+
table .span20{float:none;width:1164px;margin-left:0;}
|
195
|
+
table .span21{float:none;width:1224px;margin-left:0;}
|
196
|
+
table .span22{float:none;width:1284px;margin-left:0;}
|
197
|
+
table .span23{float:none;width:1344px;margin-left:0;}
|
198
|
+
table .span24{float:none;width:1404px;margin-left:0;}
|
199
|
+
form{margin:0 0 18px;}
|
200
|
+
fieldset{padding:0;margin:0;border:0;}
|
201
|
+
legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;}legend small{font-size:13.5px;color:#999999;}
|
202
|
+
label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px;}
|
203
|
+
input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
|
204
|
+
label{display:block;margin-bottom:5px;color:#333333;}
|
205
|
+
input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
|
206
|
+
.uneditable-textarea{width:auto;height:auto;}
|
207
|
+
label input,label textarea,label select{display:block;}
|
208
|
+
input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:0 \9;}
|
209
|
+
input[type="image"]{border:0;}
|
210
|
+
input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
|
211
|
+
input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;}
|
212
|
+
select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;}
|
213
|
+
input[type="file"]{line-height:18px \9;}
|
214
|
+
select{width:220px;background-color:#ffffff;}
|
215
|
+
select[multiple],select[size]{height:auto;}
|
216
|
+
input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
|
121
217
|
textarea{height:auto;}
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
.input-mini
|
132
|
-
.input-small
|
133
|
-
.input-medium
|
134
|
-
.input-large
|
135
|
-
.input-xlarge
|
136
|
-
.input-xxlarge
|
137
|
-
textarea
|
138
|
-
input
|
139
|
-
input.
|
140
|
-
input.
|
141
|
-
input.
|
142
|
-
input.
|
143
|
-
input.
|
144
|
-
input.
|
145
|
-
input.
|
146
|
-
input.span9,textarea.span9,
|
147
|
-
input.
|
148
|
-
input.
|
149
|
-
input.
|
150
|
-
input.
|
151
|
-
input.
|
152
|
-
input.
|
153
|
-
input.
|
154
|
-
input
|
155
|
-
|
156
|
-
.
|
157
|
-
.
|
158
|
-
.
|
159
|
-
.
|
160
|
-
.
|
161
|
-
.
|
162
|
-
.
|
163
|
-
.input-
|
164
|
-
.input-prepend .add-on,.input-append .add-on{
|
165
|
-
|
166
|
-
.
|
167
|
-
.
|
168
|
-
.input-
|
169
|
-
|
170
|
-
|
171
|
-
.
|
172
|
-
.
|
173
|
-
.
|
174
|
-
.
|
175
|
-
.
|
176
|
-
.
|
177
|
-
.
|
178
|
-
.
|
179
|
-
.
|
180
|
-
.
|
181
|
-
.
|
182
|
-
.
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
.
|
193
|
-
.
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
.
|
212
|
-
.
|
213
|
-
.
|
214
|
-
.
|
215
|
-
.
|
216
|
-
.
|
217
|
-
.
|
218
|
-
.
|
219
|
-
.
|
220
|
-
.
|
221
|
-
.
|
222
|
-
.
|
223
|
-
.
|
224
|
-
.
|
225
|
-
.
|
226
|
-
.
|
227
|
-
.
|
228
|
-
.
|
229
|
-
.
|
230
|
-
.
|
231
|
-
.
|
232
|
-
.
|
233
|
-
|
234
|
-
|
235
|
-
.
|
236
|
-
.
|
237
|
-
.
|
238
|
-
.
|
239
|
-
.
|
240
|
-
.
|
241
|
-
.
|
242
|
-
.
|
243
|
-
.
|
244
|
-
.
|
245
|
-
.
|
246
|
-
.
|
247
|
-
.
|
248
|
-
.
|
249
|
-
.
|
250
|
-
.
|
251
|
-
.
|
252
|
-
.
|
253
|
-
.
|
254
|
-
.
|
255
|
-
.
|
256
|
-
.
|
257
|
-
.
|
258
|
-
.
|
259
|
-
|
260
|
-
.
|
261
|
-
.btn
|
262
|
-
.
|
263
|
-
.
|
264
|
-
.
|
265
|
-
.
|
266
|
-
.btn
|
267
|
-
.
|
268
|
-
.
|
269
|
-
.
|
270
|
-
.
|
271
|
-
.
|
272
|
-
.
|
273
|
-
:
|
274
|
-
|
275
|
-
.
|
276
|
-
.
|
277
|
-
.
|
278
|
-
.
|
279
|
-
.
|
280
|
-
.
|
281
|
-
.
|
282
|
-
.
|
283
|
-
.
|
284
|
-
.
|
285
|
-
.
|
286
|
-
.
|
287
|
-
.
|
288
|
-
.
|
289
|
-
.
|
290
|
-
.
|
291
|
-
.
|
292
|
-
.
|
293
|
-
.
|
294
|
-
.
|
295
|
-
.
|
296
|
-
.
|
297
|
-
.
|
298
|
-
.
|
299
|
-
.
|
300
|
-
.
|
301
|
-
.
|
302
|
-
.
|
303
|
-
.
|
304
|
-
.
|
305
|
-
.
|
306
|
-
.
|
307
|
-
.
|
308
|
-
.
|
309
|
-
.
|
310
|
-
.
|
311
|
-
.
|
312
|
-
.
|
313
|
-
.
|
314
|
-
.
|
315
|
-
.
|
316
|
-
.
|
317
|
-
.
|
318
|
-
.popover .inner{background-color:#000000;background-color:rgba(0, 0, 0, 0.8);padding:3px;overflow:hidden;width:280px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);}
|
319
|
-
.popover .title{background-color:#f5f5f5;padding:9px 15px;line-height:1;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;border-bottom:1px solid #eee;}
|
320
|
-
.popover .content{background-color:#ffffff;padding:14px;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover .content p,.popover .content ul,.popover .content ol{margin-bottom:0;}
|
218
|
+
input[type="hidden"]{display:none;}
|
219
|
+
.radio,.checkbox{padding-left:18px;}
|
220
|
+
.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;}
|
221
|
+
.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;}
|
222
|
+
.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;}
|
223
|
+
.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;}
|
224
|
+
input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;}
|
225
|
+
input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;}
|
226
|
+
input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
|
227
|
+
.input-mini{width:60px;}
|
228
|
+
.input-small{width:90px;}
|
229
|
+
.input-medium{width:150px;}
|
230
|
+
.input-large{width:210px;}
|
231
|
+
.input-xlarge{width:270px;}
|
232
|
+
.input-xxlarge{width:530px;}
|
233
|
+
input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;}
|
234
|
+
input,textarea,.uneditable-input{margin-left:0;}
|
235
|
+
input.span16, textarea.span16, .uneditable-input.span16{width:930px;}
|
236
|
+
input.span15, textarea.span15, .uneditable-input.span15{width:870px;}
|
237
|
+
input.span14, textarea.span14, .uneditable-input.span14{width:810px;}
|
238
|
+
input.span13, textarea.span13, .uneditable-input.span13{width:750px;}
|
239
|
+
input.span12, textarea.span12, .uneditable-input.span12{width:690px;}
|
240
|
+
input.span11, textarea.span11, .uneditable-input.span11{width:630px;}
|
241
|
+
input.span10, textarea.span10, .uneditable-input.span10{width:570px;}
|
242
|
+
input.span9, textarea.span9, .uneditable-input.span9{width:510px;}
|
243
|
+
input.span8, textarea.span8, .uneditable-input.span8{width:450px;}
|
244
|
+
input.span7, textarea.span7, .uneditable-input.span7{width:390px;}
|
245
|
+
input.span6, textarea.span6, .uneditable-input.span6{width:330px;}
|
246
|
+
input.span5, textarea.span5, .uneditable-input.span5{width:270px;}
|
247
|
+
input.span4, textarea.span4, .uneditable-input.span4{width:210px;}
|
248
|
+
input.span3, textarea.span3, .uneditable-input.span3{width:150px;}
|
249
|
+
input.span2, textarea.span2, .uneditable-input.span2{width:90px;}
|
250
|
+
input.span1, textarea.span1, .uneditable-input.span1{width:30px;}
|
251
|
+
input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#eeeeee;border-color:#ddd;cursor:not-allowed;}
|
252
|
+
.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;}
|
253
|
+
.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;}
|
254
|
+
.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;}
|
255
|
+
.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;}
|
256
|
+
.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;}
|
257
|
+
.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;}
|
258
|
+
.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;}
|
259
|
+
.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;}
|
260
|
+
.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;}
|
261
|
+
input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;}
|
262
|
+
.form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#eeeeee;border-top:1px solid #ddd;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";}
|
263
|
+
.form-actions:after{clear:both;}
|
264
|
+
.uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;}
|
265
|
+
:-moz-placeholder{color:#999999;}
|
266
|
+
::-webkit-input-placeholder{color:#999999;}
|
267
|
+
.help-block,.help-inline{color:#555555;}
|
268
|
+
.help-block{display:block;margin-bottom:9px;}
|
269
|
+
.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
|
270
|
+
.input-prepend,.input-append{margin-bottom:5px;}.input-prepend input,.input-append input,.input-prepend select,.input-append select,.input-prepend .uneditable-input,.input-append .uneditable-input{*margin-left:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend select:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;}
|
271
|
+
.input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;}
|
272
|
+
.input-prepend .add-on,.input-append .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:normal;line-height:18px;text-align:center;text-shadow:0 1px 0 #ffffff;vertical-align:middle;background-color:#eeeeee;border:1px solid #ccc;}
|
273
|
+
.input-prepend .add-on,.input-append .add-on,.input-prepend .btn,.input-append .btn{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
|
274
|
+
.input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;}
|
275
|
+
.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
|
276
|
+
.input-append input,.input-append select .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
|
277
|
+
.input-append .uneditable-input{border-left-color:#eee;border-right-color:#ccc;}
|
278
|
+
.input-append .add-on,.input-append .btn{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}
|
279
|
+
.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
|
280
|
+
.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
|
281
|
+
.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}
|
282
|
+
.search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;}
|
283
|
+
.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;margin-bottom:0;}
|
284
|
+
.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;}
|
285
|
+
.form-search label,.form-inline label{display:inline-block;}
|
286
|
+
.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;}
|
287
|
+
.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;}
|
288
|
+
.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px;}
|
289
|
+
.control-group{margin-bottom:9px;}
|
290
|
+
legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;}
|
291
|
+
.form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";}
|
292
|
+
.form-horizontal .control-group:after{clear:both;}
|
293
|
+
.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right;}
|
294
|
+
.form-horizontal .controls{margin-left:160px;*display:inline-block;*margin-left:0;*padding-left:20px;}
|
295
|
+
.form-horizontal .help-block{margin-top:9px;margin-bottom:0;}
|
296
|
+
.form-horizontal .form-actions{padding-left:160px;}
|
297
|
+
.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);vertical-align:middle;background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-ms-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(top, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);border:1px solid #cccccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;*margin-left:.3em;}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;}
|
298
|
+
.btn:active,.btn.active{background-color:#cccccc \9;}
|
299
|
+
.btn:first-child{*margin-left:0;}
|
300
|
+
.btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
|
301
|
+
.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
|
302
|
+
.btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0;}
|
303
|
+
.btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
|
304
|
+
.btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
|
305
|
+
.btn-large [class^="icon-"]{margin-top:1px;}
|
306
|
+
.btn-small{padding:5px 9px;font-size:11px;line-height:16px;}
|
307
|
+
.btn-small [class^="icon-"]{margin-top:-1px;}
|
308
|
+
.btn-mini{padding:2px 6px;font-size:11px;line-height:14px;}
|
309
|
+
.btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;}
|
310
|
+
.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);}
|
311
|
+
.btn-primary{background-color:#0074cc;background-image:-moz-linear-gradient(top, #0088cc, #0055cc);background-image:-ms-linear-gradient(top, #0088cc, #0055cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));background-image:-webkit-linear-gradient(top, #0088cc, #0055cc);background-image:-o-linear-gradient(top, #0088cc, #0055cc);background-image:linear-gradient(top, #0088cc, #0055cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);border-color:#0055cc #0055cc #003580;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0055cc;}
|
312
|
+
.btn-primary:active,.btn-primary.active{background-color:#004099 \9;}
|
313
|
+
.btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;}
|
314
|
+
.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;}
|
315
|
+
.btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;}
|
316
|
+
.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;}
|
317
|
+
.btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;}
|
318
|
+
.btn-success:active,.btn-success.active{background-color:#408140 \9;}
|
319
|
+
.btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;}
|
320
|
+
.btn-info:active,.btn-info.active{background-color:#24748c \9;}
|
321
|
+
.btn-inverse{background-color:#414141;background-image:-moz-linear-gradient(top, #555555, #222222);background-image:-ms-linear-gradient(top, #555555, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));background-image:-webkit-linear-gradient(top, #555555, #222222);background-image:-o-linear-gradient(top, #555555, #222222);background-image:linear-gradient(top, #555555, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#222222;}
|
322
|
+
.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;}
|
323
|
+
button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;}
|
324
|
+
button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;}
|
325
|
+
button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;}
|
326
|
+
button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;}
|
327
|
+
.btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";}
|
328
|
+
.btn-group:after{clear:both;}
|
329
|
+
.btn-group:first-child{*margin-left:0;}
|
330
|
+
.btn-group+.btn-group{margin-left:5px;}
|
331
|
+
.btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;}
|
332
|
+
.btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
|
333
|
+
.btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
|
334
|
+
.btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
|
335
|
+
.btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
|
336
|
+
.btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
|
337
|
+
.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;}
|
338
|
+
.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;}
|
339
|
+
.btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);*padding-top:3px;*padding-bottom:3px;}
|
340
|
+
.btn-group .btn-mini.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:1px;*padding-bottom:1px;}
|
341
|
+
.btn-group .btn-small.dropdown-toggle{*padding-top:4px;*padding-bottom:4px;}
|
342
|
+
.btn-group .btn-large.dropdown-toggle{padding-left:12px;padding-right:12px;}
|
343
|
+
.btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
|
344
|
+
.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);}
|
345
|
+
.btn .caret{margin-top:7px;margin-left:0;}
|
346
|
+
.btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);}
|
347
|
+
.btn-mini .caret{margin-top:5px;}
|
348
|
+
.btn-small .caret{margin-top:6px;}
|
349
|
+
.btn-large .caret{margin-top:6px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
|
350
|
+
.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);}
|
351
|
+
.navbar{*position:relative;*z-index:2;overflow:visible;margin-bottom:18px;}
|
352
|
+
.navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);}
|
353
|
+
.navbar .container{width:auto;}
|
354
|
+
.btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;}
|
355
|
+
.btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;}
|
356
|
+
.btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);}
|
357
|
+
.btn-navbar .icon-bar+.icon-bar{margin-top:3px;}
|
358
|
+
.nav-collapse.collapse{height:auto;}
|
359
|
+
.navbar{color:#999999;}.navbar .brand:hover{text-decoration:none;}
|
360
|
+
.navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;}
|
361
|
+
.navbar .navbar-text{margin-bottom:0;line-height:40px;}
|
362
|
+
.navbar .btn,.navbar .btn-group{margin-top:5px;}
|
363
|
+
.navbar .btn-group .btn{margin-top:0;}
|
364
|
+
.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";}
|
365
|
+
.navbar-form:after{clear:both;}
|
366
|
+
.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;}
|
367
|
+
.navbar-form input,.navbar-form select{display:inline-block;margin-bottom:0;}
|
368
|
+
.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;}
|
369
|
+
.navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;}
|
370
|
+
.navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;background-color:#626262;border:1px solid #151515;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query:-moz-placeholder{color:#cccccc;}
|
371
|
+
.navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;}
|
372
|
+
.navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;}
|
373
|
+
.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;}
|
374
|
+
.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
|
375
|
+
.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
|
376
|
+
.navbar-fixed-top{top:0;}
|
377
|
+
.navbar-fixed-bottom{bottom:0;}
|
378
|
+
.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;}
|
379
|
+
.navbar .nav.pull-right{float:right;}
|
380
|
+
.navbar .nav>li{display:block;float:left;}
|
381
|
+
.navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}
|
382
|
+
.navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;}
|
383
|
+
.navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;}
|
384
|
+
.navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;}
|
385
|
+
.navbar .nav.pull-right{margin-left:10px;margin-right:0;}
|
386
|
+
.navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;}
|
387
|
+
.navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;}
|
388
|
+
.navbar-fixed-bottom .dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;}
|
389
|
+
.navbar-fixed-bottom .dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;}
|
390
|
+
.navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
|
391
|
+
.navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);}
|
392
|
+
.navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;}
|
393
|
+
.navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;}
|
394
|
+
.navbar .nav.pull-right .dropdown-menu,.navbar .nav .dropdown-menu.pull-right{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before,.navbar .nav .dropdown-menu.pull-right:before{left:auto;right:12px;}
|
395
|
+
.navbar .nav.pull-right .dropdown-menu:after,.navbar .nav .dropdown-menu.pull-right:after{left:auto;right:13px;}
|
396
|
+
.alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853;}
|
397
|
+
.alert-heading{color:inherit;}
|
398
|
+
.alert .close{position:relative;top:-2px;right:-21px;line-height:18px;}
|
399
|
+
.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;}
|
400
|
+
.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;}
|
401
|
+
.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;}
|
402
|
+
.alert-block{padding-top:14px;padding-bottom:14px;}
|
403
|
+
.alert-block>p,.alert-block>ul{margin-bottom:0;}
|
404
|
+
.alert-block p+p{margin-top:5px;}
|
405
|
+
.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);}
|
406
|
+
.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
|
407
|
+
.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
|
408
|
+
.close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;}
|
409
|
+
.pull-right{float:right;}
|
410
|
+
.pull-left{float:left;}
|
411
|
+
.hide{display:none;}
|
412
|
+
.show{display:block;}
|
413
|
+
.invisible{visibility:hidden;}
|
321
414
|
.fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;}
|
322
|
-
.
|
323
|
-
.label.warning{background-color:#f89406;}
|
324
|
-
.label.success{background-color:#46a546;}
|
325
|
-
.label.notice{background-color:#62cffc;}
|
326
|
-
.media-grid{margin-left:-20px;margin-bottom:0;zoom:1;}.media-grid:before,.media-grid:after{display:table;content:"";zoom:1;*display:inline;}
|
327
|
-
.media-grid:after{clear:both;}
|
328
|
-
.media-grid li{display:inline;}
|
329
|
-
.media-grid a{float:left;padding:4px;margin:0 0 20px 20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);}.media-grid a img{display:block;}
|
330
|
-
.media-grid a:hover{border-color:#0069d6;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);}
|
415
|
+
.collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;}
|