conte_rails_template 0.0.22 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
<div id="page-toolbar" class="container-fluid">
|
|
2
2
|
<div class="row-fluid">
|
|
3
|
-
<div class="
|
|
3
|
+
<div class="span4">
|
|
4
4
|
<%= yield :left_page_toolbar %>
|
|
5
5
|
</div>
|
|
6
|
-
<div class="
|
|
6
|
+
<div class="span4">
|
|
7
|
+
<%= yield :center_page_toolbar %>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="span4">
|
|
7
10
|
<div class="btn-toolbar pull-right">
|
|
8
11
|
<%= yield :right_page_toolbar %>
|
|
9
12
|
</div>
|
|
@@ -173,6 +173,35 @@ body {
|
|
|
173
173
|
.btn-toolbar {
|
|
174
174
|
padding: 0px; margin: 0px;
|
|
175
175
|
}
|
|
176
|
+
|
|
177
|
+
#left-page-toolbar {
|
|
178
|
+
h3 {
|
|
179
|
+
font-size: 21px;
|
|
180
|
+
line-height: 30px;
|
|
181
|
+
padding: 0px; margin: 0px;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
#center-page-toolbar {
|
|
186
|
+
vertical-align: middle;
|
|
187
|
+
text-align: center;
|
|
188
|
+
line-height: 30px;
|
|
189
|
+
.progress {
|
|
190
|
+
margin-top: 5px;
|
|
191
|
+
.bar {
|
|
192
|
+
background-color: #c45c85;
|
|
193
|
+
}
|
|
194
|
+
> .label {
|
|
195
|
+
position: relative;
|
|
196
|
+
top: -5px;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
> span {
|
|
201
|
+
color: white;
|
|
202
|
+
text-shadow: rgba(0, 0, 0, 1) 0px -1px 0px;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
176
205
|
}
|
|
177
206
|
|
|
178
207
|
#content {
|