Left aligned pager UI.

--HG--
branch : dev
This commit is contained in:
jowall
2011-03-24 16:15:39 -07:00
parent e7beb1f33d
commit 5ef63519b9
2 changed files with 4 additions and 8 deletions

View File

@@ -36,10 +36,10 @@
} }
</tbody> </tbody>
</table> </table>
<fieldset class="actions"><button type="submit" class="primaryAction">@T("Update All")</button></fieldset> <fieldset class="actions"><button type="submit" class="button">@T("Update All")</button></fieldset>
} }
<h2>@T("Add New Item")</h2> <h3>@T("Add New Item")</h3>
@using (Html.BeginFormAntiForgeryPost(Url.Action("create"), FormMethod.Post)) { @using (Html.BeginFormAntiForgeryPost(Url.Action("create"), FormMethod.Post)) {
<table class="menu items"> <table class="menu items">
<colgroup> <colgroup>

View File

@@ -978,11 +978,7 @@ table.items th, table.items td {
/* Pager /* Pager
***************************************************************/ ***************************************************************/
.pager-footer { .pager-footer { width: 500px; }
width: 500px;
margin-left: auto;
margin-right: auto;
}
.page-size-options { .page-size-options {
float: left; float: left;
padding-right: 40px; padding-right: 40px;
@@ -1006,7 +1002,7 @@ html.dyn #submit-pager, html.dyn .apply-bulk-actions-auto { display:none; }
text-shadow: rgba(0,0,0,.2) 0px 0px 1px; text-shadow: rgba(0,0,0,.2) 0px 0px 1px;
/*In ie the first couplet sets the alpha value so 00=transparent and ff=opaque)*/ /*In ie the first couplet sets the alpha value so 00=transparent and ff=opaque)*/
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#fff5f5f5', endColorstr='#ffd9d9d9'); filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#fff5f5f5', endColorstr='#ffd9d9d9');
background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(245, 245, 245, 1.0)), rgba((217, 217, 217, 1.0))); background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(245, 245, 245, 1.0)), to(rgba(217, 217, 217, 1.0)));
background: -moz-linear-gradient(top, rgba(245, 245, 245, 1.0), rgba(217, 217, 217, 1.0)); background: -moz-linear-gradient(top, rgba(245, 245, 245, 1.0), rgba(217, 217, 217, 1.0));
box-shadow: inset 0px 0px 1px rgba(255, 255, 255, 1.0), 1px 1px 1px rgba(102, 102, 102, 0.1); box-shadow: inset 0px 0px 1px rgba(255, 255, 255, 1.0), 1px 1px 1px rgba(102, 102, 102, 0.1);