deltacloud-core 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +502 -0
- data/Rakefile +108 -0
- data/bin/deltacloudd +88 -0
- data/config.ru +5 -0
- data/deltacloud.rb +14 -0
- data/lib/converters/xml_converter.rb +133 -0
- data/lib/deltacloud/base_driver.rb +19 -0
- data/lib/deltacloud/base_driver/base_driver.rb +189 -0
- data/lib/deltacloud/base_driver/features.rb +144 -0
- data/lib/deltacloud/drivers/ec2/ec2_driver.rb +318 -0
- data/lib/deltacloud/drivers/ec2/ec2_mock_driver.rb +170 -0
- data/lib/deltacloud/drivers/gogrid/gogrid_client.rb +45 -0
- data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +239 -0
- data/lib/deltacloud/drivers/mock/mock_driver.rb +275 -0
- data/lib/deltacloud/drivers/opennebula/cloud_client.rb +116 -0
- data/lib/deltacloud/drivers/opennebula/occi_client.rb +204 -0
- data/lib/deltacloud/drivers/opennebula/opennebula_driver.rb +241 -0
- data/lib/deltacloud/drivers/rackspace/rackspace_client.rb +129 -0
- data/lib/deltacloud/drivers/rackspace/rackspace_driver.rb +150 -0
- data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +254 -0
- data/lib/deltacloud/drivers/rimu/rimu_hosting_client.rb +87 -0
- data/lib/deltacloud/drivers/rimu/rimu_hosting_driver.rb +143 -0
- data/lib/deltacloud/hardware_profile.rb +131 -0
- data/lib/deltacloud/helpers.rb +5 -0
- data/lib/deltacloud/helpers/application_helper.rb +38 -0
- data/lib/deltacloud/helpers/conversion_helper.rb +39 -0
- data/lib/deltacloud/helpers/hardware_profiles_helper.rb +35 -0
- data/lib/deltacloud/models/base_model.rb +58 -0
- data/lib/deltacloud/models/image.rb +26 -0
- data/lib/deltacloud/models/instance.rb +37 -0
- data/lib/deltacloud/models/instance_profile.rb +47 -0
- data/lib/deltacloud/models/realm.rb +25 -0
- data/lib/deltacloud/models/storage_snapshot.rb +26 -0
- data/lib/deltacloud/models/storage_volume.rb +27 -0
- data/lib/deltacloud/state_machine.rb +84 -0
- data/lib/deltacloud/validation.rb +70 -0
- data/lib/drivers.rb +37 -0
- data/lib/sinatra/lazy_auth.rb +56 -0
- data/lib/sinatra/rabbit.rb +272 -0
- data/lib/sinatra/respond_to.rb +262 -0
- data/lib/sinatra/static_assets.rb +83 -0
- data/lib/sinatra/url_for.rb +44 -0
- data/public/favicon.ico +0 -0
- data/public/images/grid.png +0 -0
- data/public/images/logo-wide.png +0 -0
- data/public/images/rails.png +0 -0
- data/public/images/topbar-bg.png +0 -0
- data/public/javascripts/application.js +2 -0
- data/public/javascripts/controls.js +963 -0
- data/public/javascripts/dragdrop.js +973 -0
- data/public/javascripts/effects.js +1128 -0
- data/public/javascripts/prototype.js +4320 -0
- data/public/stylesheets/compiled/application.css +613 -0
- data/public/stylesheets/compiled/ie.css +31 -0
- data/public/stylesheets/compiled/print.css +27 -0
- data/public/stylesheets/compiled/screen.css +456 -0
- data/server.rb +340 -0
- data/tests/deltacloud_test.rb +60 -0
- data/tests/images_test.rb +94 -0
- data/tests/instances_test.rb +136 -0
- data/tests/realms_test.rb +56 -0
- data/tests/storage_snapshots_test.rb +48 -0
- data/tests/storage_volumes_test.rb +48 -0
- data/views/accounts/index.html.haml +11 -0
- data/views/accounts/show.html.haml +30 -0
- data/views/api/show.html.haml +15 -0
- data/views/api/show.xml.haml +5 -0
- data/views/docs/collection.html.haml +37 -0
- data/views/docs/collection.xml.haml +14 -0
- data/views/docs/index.html.haml +15 -0
- data/views/docs/index.xml.haml +5 -0
- data/views/docs/operation.html.haml +31 -0
- data/views/docs/operation.xml.haml +10 -0
- data/views/errors/auth_exception.html.haml +8 -0
- data/views/errors/auth_exception.xml.haml +2 -0
- data/views/errors/backend_error.html.haml +17 -0
- data/views/errors/backend_error.xml.haml +8 -0
- data/views/errors/validation_failure.html.haml +11 -0
- data/views/errors/validation_failure.xml.haml +7 -0
- data/views/hardware_profiles/index.html.haml +25 -0
- data/views/hardware_profiles/index.xml.haml +4 -0
- data/views/hardware_profiles/show.html.haml +19 -0
- data/views/hardware_profiles/show.xml.haml +17 -0
- data/views/images/index.html.haml +30 -0
- data/views/images/index.xml.haml +7 -0
- data/views/images/show.html.haml +21 -0
- data/views/images/show.xml.haml +5 -0
- data/views/instance_states/show.gv.erb +45 -0
- data/views/instance_states/show.html.haml +31 -0
- data/views/instance_states/show.xml.haml +8 -0
- data/views/instances/index.html.haml +29 -0
- data/views/instances/index.xml.haml +23 -0
- data/views/instances/new.html.haml +49 -0
- data/views/instances/show.html.haml +42 -0
- data/views/instances/show.xml.haml +28 -0
- data/views/layout.html.haml +23 -0
- data/views/realms/index.html.haml +29 -0
- data/views/realms/index.xml.haml +12 -0
- data/views/realms/show.html.haml +15 -0
- data/views/realms/show.xml.haml +10 -0
- data/views/root/index.html.haml +4 -0
- data/views/storage_snapshots/index.html.haml +20 -0
- data/views/storage_snapshots/index.xml.haml +11 -0
- data/views/storage_snapshots/show.html.haml +14 -0
- data/views/storage_snapshots/show.xml.haml +9 -0
- data/views/storage_volumes/index.html.haml +21 -0
- data/views/storage_volumes/index.xml.haml +13 -0
- data/views/storage_volumes/show.html.haml +20 -0
- data/views/storage_volumes/show.xml.haml +13 -0
- metadata +311 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
body { text-align: center; }
|
2
|
+
* html body legend { margin: 0px -8px 16px 0; padding: 0; }
|
3
|
+
html>body p code { *white-space: normal; }
|
4
|
+
|
5
|
+
.container { text-align: left; }
|
6
|
+
|
7
|
+
ol { margin-left: 2em; }
|
8
|
+
|
9
|
+
sup { vertical-align: text-top; }
|
10
|
+
|
11
|
+
sub { vertical-align: text-bottom; }
|
12
|
+
|
13
|
+
hr { margin: -8px auto 11px; }
|
14
|
+
|
15
|
+
img { -ms-interpolation-mode: bicubic; }
|
16
|
+
|
17
|
+
fieldset { padding-top: 0; }
|
18
|
+
|
19
|
+
input.text { margin: 0.5em 0; background-color: #fff; border: 1px solid #bbb; }
|
20
|
+
input.text:focus { border: 1px solid #666; }
|
21
|
+
input.title { margin: 0.5em 0; background-color: #fff; border: 1px solid #bbb; }
|
22
|
+
input.title:focus { border: 1px solid #666; }
|
23
|
+
input.checkbox { position: relative; top: 0.25em; }
|
24
|
+
input.radio { position: relative; top: 0.25em; }
|
25
|
+
input.button { position: relative; top: 0.25em; }
|
26
|
+
|
27
|
+
textarea { margin: 0.5em 0; }
|
28
|
+
|
29
|
+
select { margin: 0.5em 0; }
|
30
|
+
|
31
|
+
button { position: relative; top: 0.25em; }
|
@@ -0,0 +1,27 @@
|
|
1
|
+
body { line-height: 1.5; font-family: Helvetica Neue, Arial, Helvetica, sans-serif; color: #000; background: none; font-size: 10pt; }
|
2
|
+
|
3
|
+
.container { background: none; }
|
4
|
+
|
5
|
+
hr { background: #ccc; color: #ccc; width: 100%; height: 2px; margin: 2em 0; padding: 0; border: none; }
|
6
|
+
hr.space { background: #fff; color: #fff; }
|
7
|
+
|
8
|
+
h1, h2, h3, h4, h5, h6 { font-family: Helvetica Neue, Arial, Helvetica, sans-serif; }
|
9
|
+
|
10
|
+
code { font-size: .9em; font-family: 'andale mono', 'lucida console', monospace; }
|
11
|
+
|
12
|
+
img { display: inline; float: left; margin: 1.5em 1.5em 1.5em 0; }
|
13
|
+
|
14
|
+
a img { border: none; }
|
15
|
+
a:link, a:visited { background: transparent; font-weight: 700; text-decoration: underline; }
|
16
|
+
|
17
|
+
p img.top { margin-top: 0; }
|
18
|
+
|
19
|
+
blockquote { margin: 1.5em; padding: 1em; font-style: italic; font-size: .9em; }
|
20
|
+
|
21
|
+
.small { font-size: .9em; }
|
22
|
+
|
23
|
+
.large { font-size: 1.1em; }
|
24
|
+
|
25
|
+
.quiet { color: #999; }
|
26
|
+
|
27
|
+
.hide { display: none; }
|
@@ -0,0 +1,456 @@
|
|
1
|
+
/* line 4, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass */
|
2
|
+
html, body {
|
3
|
+
margin: 0;
|
4
|
+
padding: 0;
|
5
|
+
border: 0;
|
6
|
+
font-weight: inherit;
|
7
|
+
font-style: inherit;
|
8
|
+
font-size: 100%;
|
9
|
+
font-family: inherit;
|
10
|
+
vertical-align: baseline; }
|
11
|
+
|
12
|
+
/* line 12, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass */
|
13
|
+
div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
|
14
|
+
pre, a, abbr, acronym, address, code, del, dfn, em, img,
|
15
|
+
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr {
|
16
|
+
margin: 0;
|
17
|
+
padding: 0;
|
18
|
+
border: 0;
|
19
|
+
font-weight: inherit;
|
20
|
+
font-style: inherit;
|
21
|
+
font-size: 100%;
|
22
|
+
font-family: inherit;
|
23
|
+
vertical-align: baseline; }
|
24
|
+
|
25
|
+
/* line 16, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass */
|
26
|
+
blockquote, q {
|
27
|
+
margin: 0;
|
28
|
+
padding: 0;
|
29
|
+
border: 0;
|
30
|
+
font-weight: inherit;
|
31
|
+
font-style: inherit;
|
32
|
+
font-size: 100%;
|
33
|
+
font-family: inherit;
|
34
|
+
vertical-align: baseline;
|
35
|
+
quotes: "" ""; }
|
36
|
+
/* line 42, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass */
|
37
|
+
blockquote:before, q:before,
|
38
|
+
blockquote:after, q:after {
|
39
|
+
content: ""; }
|
40
|
+
|
41
|
+
/* line 18, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass */
|
42
|
+
th, td, caption {
|
43
|
+
margin: 0;
|
44
|
+
padding: 0;
|
45
|
+
border: 0;
|
46
|
+
font-weight: inherit;
|
47
|
+
font-style: inherit;
|
48
|
+
font-size: 100%;
|
49
|
+
font-family: inherit;
|
50
|
+
vertical-align: baseline;
|
51
|
+
text-align: left;
|
52
|
+
font-weight: normal;
|
53
|
+
vertical-align: middle; }
|
54
|
+
|
55
|
+
/* line 20, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass */
|
56
|
+
table {
|
57
|
+
margin: 0;
|
58
|
+
padding: 0;
|
59
|
+
border: 0;
|
60
|
+
font-weight: inherit;
|
61
|
+
font-style: inherit;
|
62
|
+
font-size: 100%;
|
63
|
+
font-family: inherit;
|
64
|
+
vertical-align: baseline;
|
65
|
+
border-collapse: separate;
|
66
|
+
border-spacing: 0;
|
67
|
+
vertical-align: middle; }
|
68
|
+
|
69
|
+
/* line 22, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass */
|
70
|
+
a img {
|
71
|
+
border: none; }
|
72
|
+
|
73
|
+
/* line 22, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
74
|
+
body.bp {
|
75
|
+
line-height: 1.5;
|
76
|
+
font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
|
77
|
+
color: #333333;
|
78
|
+
font-size: 75%; }
|
79
|
+
/* line 53, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
80
|
+
body.bp h1 {
|
81
|
+
font-weight: normal;
|
82
|
+
color: #222222;
|
83
|
+
font-size: 3em;
|
84
|
+
line-height: 1;
|
85
|
+
margin-bottom: 0.5em; }
|
86
|
+
/* line 58, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
87
|
+
body.bp h1 img {
|
88
|
+
margin: 0; }
|
89
|
+
/* line 60, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
90
|
+
body.bp h2 {
|
91
|
+
font-weight: normal;
|
92
|
+
color: #222222;
|
93
|
+
font-size: 2em;
|
94
|
+
margin-bottom: 0.75em; }
|
95
|
+
/* line 64, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
96
|
+
body.bp h3 {
|
97
|
+
font-weight: normal;
|
98
|
+
color: #222222;
|
99
|
+
font-size: 1.5em;
|
100
|
+
line-height: 1;
|
101
|
+
margin-bottom: 1em; }
|
102
|
+
/* line 69, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
103
|
+
body.bp h4 {
|
104
|
+
font-weight: normal;
|
105
|
+
color: #222222;
|
106
|
+
font-size: 1.2em;
|
107
|
+
line-height: 1.25;
|
108
|
+
margin-bottom: 1.25em; }
|
109
|
+
/* line 74, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
110
|
+
body.bp h5 {
|
111
|
+
font-weight: normal;
|
112
|
+
color: #222222;
|
113
|
+
font-size: 1em;
|
114
|
+
font-weight: bold;
|
115
|
+
margin-bottom: 1.5em; }
|
116
|
+
/* line 79, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
117
|
+
body.bp h6 {
|
118
|
+
font-weight: normal;
|
119
|
+
color: #222222;
|
120
|
+
font-size: 1em;
|
121
|
+
font-weight: bold; }
|
122
|
+
/* line 83, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
123
|
+
body.bp h2 img, body.bp h3 img, body.bp h4 img, body.bp h5 img, body.bp h6 img {
|
124
|
+
margin: 0; }
|
125
|
+
/* line 85, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
126
|
+
body.bp p {
|
127
|
+
margin: 0 0 1.5em; }
|
128
|
+
/* line 87, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
129
|
+
body.bp p img.left {
|
130
|
+
display: inline;
|
131
|
+
float: left;
|
132
|
+
margin: 1.5em 1.5em 1.5em 0;
|
133
|
+
padding: 0; }
|
134
|
+
/* line 91, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
135
|
+
body.bp p img.right {
|
136
|
+
display: inline;
|
137
|
+
float: right;
|
138
|
+
margin: 1.5em 0 1.5em 1.5em;
|
139
|
+
padding: 0; }
|
140
|
+
/* line 95, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
141
|
+
body.bp a {
|
142
|
+
text-decoration: underline;
|
143
|
+
color: #000099; }
|
144
|
+
/* line 12, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass */
|
145
|
+
body.bp a:visited {
|
146
|
+
color: #000066; }
|
147
|
+
/* line 15, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass */
|
148
|
+
body.bp a:focus {
|
149
|
+
color: black; }
|
150
|
+
/* line 18, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass */
|
151
|
+
body.bp a:hover {
|
152
|
+
color: black; }
|
153
|
+
/* line 21, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/links/_link_colors.sass */
|
154
|
+
body.bp a:active {
|
155
|
+
color: #cc0099; }
|
156
|
+
/* line 98, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
157
|
+
body.bp blockquote {
|
158
|
+
margin: 1.5em;
|
159
|
+
color: #666;
|
160
|
+
font-style: italic; }
|
161
|
+
/* line 102, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
162
|
+
body.bp strong {
|
163
|
+
font-weight: bold; }
|
164
|
+
/* line 104, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
165
|
+
body.bp em {
|
166
|
+
font-style: italic; }
|
167
|
+
/* line 106, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
168
|
+
body.bp dfn {
|
169
|
+
font-style: italic;
|
170
|
+
font-weight: bold; }
|
171
|
+
/* line 109, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
172
|
+
body.bp sup, body.bp sub {
|
173
|
+
line-height: 0; }
|
174
|
+
/* line 111, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
175
|
+
body.bp abbr, body.bp acronym {
|
176
|
+
border-bottom: 1px dotted #666; }
|
177
|
+
/* line 113, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
178
|
+
body.bp address {
|
179
|
+
margin: 0 0 1.5em;
|
180
|
+
font-style: italic; }
|
181
|
+
/* line 116, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
182
|
+
body.bp del {
|
183
|
+
color: #666; }
|
184
|
+
/* line 118, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
185
|
+
body.bp pre {
|
186
|
+
margin: 1.5em 0;
|
187
|
+
white-space: pre; }
|
188
|
+
/* line 121, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
189
|
+
body.bp pre, body.bp code, body.bp tt {
|
190
|
+
font: 1em 'andale mono', 'lucida console', monospace;
|
191
|
+
line-height: 1.5; }
|
192
|
+
/* line 123, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
193
|
+
body.bp li ul, body.bp li ol {
|
194
|
+
margin: 0 1.5em; }
|
195
|
+
/* line 125, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
196
|
+
body.bp ul {
|
197
|
+
margin: 0 1.5em 1.5em 1.5em;
|
198
|
+
list-style-type: disc; }
|
199
|
+
/* line 128, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
200
|
+
body.bp ol {
|
201
|
+
margin: 0 1.5em 1.5em 1.5em;
|
202
|
+
list-style-type: decimal; }
|
203
|
+
/* line 131, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
204
|
+
body.bp dl {
|
205
|
+
margin: 0 0 1.5em 0; }
|
206
|
+
/* line 133, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
207
|
+
body.bp dl dt {
|
208
|
+
font-weight: bold; }
|
209
|
+
/* line 135, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
210
|
+
body.bp dd {
|
211
|
+
margin-left: 1.5em; }
|
212
|
+
/* line 137, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
213
|
+
body.bp table {
|
214
|
+
margin-bottom: 1.4em;
|
215
|
+
width: 100%; }
|
216
|
+
/* line 140, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
217
|
+
body.bp th {
|
218
|
+
font-weight: bold; }
|
219
|
+
/* line 142, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
220
|
+
body.bp thead th {
|
221
|
+
background: #c3d9ff; }
|
222
|
+
/* line 144, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
223
|
+
body.bp th, body.bp td, body.bp caption {
|
224
|
+
padding: 4px 10px 4px 5px; }
|
225
|
+
/* line 146, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
226
|
+
body.bp tr.even td {
|
227
|
+
background: #e5ecf9; }
|
228
|
+
/* line 148, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
229
|
+
body.bp tfoot {
|
230
|
+
font-style: italic; }
|
231
|
+
/* line 150, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
232
|
+
body.bp caption {
|
233
|
+
background: #eee; }
|
234
|
+
/* line 152, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
235
|
+
body.bp .quiet {
|
236
|
+
color: #666666; }
|
237
|
+
/* line 154, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass */
|
238
|
+
body.bp .loud {
|
239
|
+
color: #111111; }
|
240
|
+
|
241
|
+
/* line 36, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass */
|
242
|
+
body.bp .box {
|
243
|
+
padding: 1.5em;
|
244
|
+
margin-bottom: 1.5em;
|
245
|
+
background: #E5ECF9; }
|
246
|
+
/* line 39, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass */
|
247
|
+
body.bp div.border {
|
248
|
+
padding-right: 4px;
|
249
|
+
margin-right: 5px;
|
250
|
+
border-right: 1px solid #eeeeee; }
|
251
|
+
/* line 42, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass */
|
252
|
+
body.bp div.colborder {
|
253
|
+
padding-right: 24px;
|
254
|
+
margin-right: 25px;
|
255
|
+
border-right: 1px solid #eeeeee; }
|
256
|
+
/* line 44, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass */
|
257
|
+
body.bp hr {
|
258
|
+
background: #dddddd;
|
259
|
+
color: #dddddd;
|
260
|
+
clear: both;
|
261
|
+
float: none;
|
262
|
+
width: 100%;
|
263
|
+
height: .1em;
|
264
|
+
margin: 0 0 1.45em;
|
265
|
+
border: none; }
|
266
|
+
/* line 46, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass */
|
267
|
+
body.bp hr.space {
|
268
|
+
background: #dddddd;
|
269
|
+
color: #dddddd;
|
270
|
+
clear: both;
|
271
|
+
float: none;
|
272
|
+
width: 100%;
|
273
|
+
height: .1em;
|
274
|
+
margin: 0 0 1.45em;
|
275
|
+
border: none;
|
276
|
+
background: #fff;
|
277
|
+
color: #fff; }
|
278
|
+
|
279
|
+
/* line 9, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
280
|
+
body.bp .clear {
|
281
|
+
clear: both; }
|
282
|
+
/* line 12, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
283
|
+
body.bp .nowrap {
|
284
|
+
white-space: nowrap; }
|
285
|
+
/* line 16, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
286
|
+
body.bp .clearfix {
|
287
|
+
overflow: hidden;
|
288
|
+
display: inline-block; }
|
289
|
+
/* line 5, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_hacks.sass */
|
290
|
+
body.bp .clearfix {
|
291
|
+
display: block; }
|
292
|
+
/* line 18, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
293
|
+
body.bp .small {
|
294
|
+
font-size: .8em;
|
295
|
+
margin-bottom: 1.875em;
|
296
|
+
line-height: 1.875em; }
|
297
|
+
/* line 22, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
298
|
+
body.bp .large {
|
299
|
+
font-size: 1.2em;
|
300
|
+
line-height: 2.5em;
|
301
|
+
margin-bottom: 1.25em; }
|
302
|
+
/* line 26, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
303
|
+
body.bp .first {
|
304
|
+
margin-left: 0;
|
305
|
+
padding-left: 0; }
|
306
|
+
/* line 29, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
307
|
+
body.bp .last {
|
308
|
+
margin-right: 0;
|
309
|
+
padding-right: 0; }
|
310
|
+
/* line 32, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
311
|
+
body.bp .top {
|
312
|
+
margin-top: 0;
|
313
|
+
padding-top: 0; }
|
314
|
+
/* line 35, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass */
|
315
|
+
body.bp .bottom {
|
316
|
+
margin-bottom: 0;
|
317
|
+
padding-bottom: 0; }
|
318
|
+
/* line 7, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass */
|
319
|
+
body.bp .showgrid {
|
320
|
+
background: url('/images/grid.png?1259629381'); }
|
321
|
+
/* line 5, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
322
|
+
body.bp .error {
|
323
|
+
padding: .8em;
|
324
|
+
margin-bottom: 1em;
|
325
|
+
border: 2px solid #dddddd;
|
326
|
+
background: #fbe3e4;
|
327
|
+
color: #8a1f11;
|
328
|
+
border-color: #fbc2c4; }
|
329
|
+
/* line 30, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
330
|
+
body.bp .error a {
|
331
|
+
color: #8a1f11; }
|
332
|
+
/* line 7, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
333
|
+
body.bp .notice {
|
334
|
+
padding: .8em;
|
335
|
+
margin-bottom: 1em;
|
336
|
+
border: 2px solid #dddddd;
|
337
|
+
background: #fff6bf;
|
338
|
+
color: #514721;
|
339
|
+
border-color: #ffd324; }
|
340
|
+
/* line 38, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
341
|
+
body.bp .notice a {
|
342
|
+
color: #514721; }
|
343
|
+
/* line 9, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
344
|
+
body.bp .success {
|
345
|
+
padding: .8em;
|
346
|
+
margin-bottom: 1em;
|
347
|
+
border: 2px solid #dddddd;
|
348
|
+
background: #e6efc2;
|
349
|
+
color: #264409;
|
350
|
+
border-color: #c6d880; }
|
351
|
+
/* line 46, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
352
|
+
body.bp .success a {
|
353
|
+
color: #264409; }
|
354
|
+
/* line 11, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
355
|
+
body.bp .hide {
|
356
|
+
display: none; }
|
357
|
+
/* line 13, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
358
|
+
body.bp .highlight {
|
359
|
+
background: yellow; }
|
360
|
+
/* line 15, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
361
|
+
body.bp .added {
|
362
|
+
background: #006600;
|
363
|
+
color: white; }
|
364
|
+
/* line 17, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass */
|
365
|
+
body.bp .removed {
|
366
|
+
background: #990000;
|
367
|
+
color: white; }
|
368
|
+
|
369
|
+
/* line 15, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
370
|
+
form.bp label {
|
371
|
+
font-weight: bold; }
|
372
|
+
/* line 17, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
373
|
+
form.bp fieldset {
|
374
|
+
padding: 1.4em;
|
375
|
+
margin: 0 0 1.5em 0; }
|
376
|
+
/* line 20, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
377
|
+
form.bp legend {
|
378
|
+
font-weight: bold;
|
379
|
+
font-size: 1.2em; }
|
380
|
+
/* line 24, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
381
|
+
form.bp input.text, form.bp input.title, form.bp input[type=text] {
|
382
|
+
margin: 0.5em 0;
|
383
|
+
background-color: #fff;
|
384
|
+
padding: 5px; }
|
385
|
+
/* line 28, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
386
|
+
form.bp input.title {
|
387
|
+
font-size: 1.5em; }
|
388
|
+
/* line 30, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
389
|
+
form.bp input[type=checkbox], form.bp input.checkbox,
|
390
|
+
form.bp input[type=radio], form.bp input.radio {
|
391
|
+
position: relative;
|
392
|
+
top: 0.25em; }
|
393
|
+
/* line 34, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
394
|
+
form.bp textarea {
|
395
|
+
margin: 0.5em 0;
|
396
|
+
padding: 5px; }
|
397
|
+
/* line 37, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
398
|
+
form.bp select {
|
399
|
+
margin: 0.5em 0; }
|
400
|
+
/* line 48, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
401
|
+
form.bp fieldset {
|
402
|
+
border: 1px solid #cccccc; }
|
403
|
+
/* line 50, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
404
|
+
form.bp input.text, form.bp input.title,
|
405
|
+
form.bp textarea,
|
406
|
+
form.bp select {
|
407
|
+
border: 1px solid #bbbbbb; }
|
408
|
+
/* line 54, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
409
|
+
form.bp input.text:focus, form.bp input.title:focus,
|
410
|
+
form.bp textarea:focus,
|
411
|
+
form.bp select:focus {
|
412
|
+
border: 1px solid #666666; }
|
413
|
+
/* line 41, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
414
|
+
form.bp input.text, form.bp input.title {
|
415
|
+
width: 300px; }
|
416
|
+
/* line 43, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass */
|
417
|
+
form.bp textarea {
|
418
|
+
width: 390px;
|
419
|
+
height: 250px; }
|
420
|
+
|
421
|
+
/* line 27, ../../../app/stylesheets/screen.sass */
|
422
|
+
body.three-col #container {
|
423
|
+
width: 950px;
|
424
|
+
margin: 0 auto;
|
425
|
+
overflow: hidden;
|
426
|
+
display: inline-block; }
|
427
|
+
/* line 5, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/compass/stylesheets/compass/utilities/general/_hacks.sass */
|
428
|
+
body.three-col #container {
|
429
|
+
display: block; }
|
430
|
+
/* line 29, ../../../app/stylesheets/screen.sass */
|
431
|
+
body.three-col #header, body.three-col #footer {
|
432
|
+
display: inline;
|
433
|
+
float: left;
|
434
|
+
margin-right: 10px;
|
435
|
+
width: 950px; }
|
436
|
+
/* line 101, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass */
|
437
|
+
* html body.three-col #header, * html body.three-col #footer {
|
438
|
+
overflow-x: hidden; }
|
439
|
+
/* line 31, ../../../app/stylesheets/screen.sass */
|
440
|
+
body.three-col #sidebar {
|
441
|
+
display: inline;
|
442
|
+
float: left;
|
443
|
+
margin-right: 10px;
|
444
|
+
width: 310px; }
|
445
|
+
/* line 101, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass */
|
446
|
+
* html body.three-col #sidebar {
|
447
|
+
overflow-x: hidden; }
|
448
|
+
/* line 35, ../../../app/stylesheets/screen.sass */
|
449
|
+
body.three-col #content {
|
450
|
+
display: inline;
|
451
|
+
float: left;
|
452
|
+
margin-right: 0;
|
453
|
+
width: 630px; }
|
454
|
+
/* line 101, ../../../../../../../.gem/ruby/1.8/gems/compass-0.8.17/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass */
|
455
|
+
* html body.three-col #content {
|
456
|
+
overflow-x: hidden; }
|