mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
ENHANCEMENT Added CSS class "field" to templates of TableListField and subclasses
ENHANCEMENT Added <div class=""middleColumn"> around TableListField templates and all subclasses git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@59286 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
ef983aa718
commit
6cac3fbc34
@ -83,6 +83,10 @@ table.CMSList tfoot td {
|
|||||||
padding:3px;
|
padding:3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.TableListField table.data tfoot .actions {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
|
|
||||||
.TableListField table.data tfoot tr.addtogrouprow input {
|
.TableListField table.data tfoot tr.addtogrouprow input {
|
||||||
width: 94%;
|
width: 94%;
|
||||||
}
|
}
|
||||||
@ -92,7 +96,8 @@ table.CMSList tfoot td {
|
|||||||
width: 98%;
|
width: 98%;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.data tbody td input {
|
table.data tbody td input,
|
||||||
|
table.data tbody td textarea {
|
||||||
border:0 !important;
|
border:0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -140,6 +145,10 @@ table.CMSList tbody td.current td {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.right form .TableListField td {
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.TableListField div.utility {
|
.TableListField div.utility {
|
||||||
margin-top: 0.5em;
|
margin-top: 0.5em;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<div id="$id" class="$Classes">
|
<div id="$id" class="$Classes field">
|
||||||
|
<div class="middleColumn">
|
||||||
<% include TableListField_PageControls %>
|
<% include TableListField_PageControls %>
|
||||||
<table class="data">
|
<table class="data">
|
||||||
<thead>
|
<thead>
|
||||||
@ -90,4 +91,5 @@
|
|||||||
<a href="$ExportLink" target="_blank"><% _t('CSVEXPORT', 'Export to CSV' ) %></a>
|
<a href="$ExportLink" target="_blank"><% _t('CSVEXPORT', 'Export to CSV' ) %></a>
|
||||||
<% end_if %>
|
<% end_if %>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<div id="$id" class="$Classes">
|
<div id="$id" class="$Classes field">
|
||||||
|
<div class="middleColumn">
|
||||||
<% include TableListField_PageControls %>
|
<% include TableListField_PageControls %>
|
||||||
<% if Message %>
|
<% if Message %>
|
||||||
<p id="{$id}_error" class="message $MessageType">$Message</p>
|
<p id="{$id}_error" class="message $MessageType">$Message</p>
|
||||||
@ -64,4 +65,5 @@
|
|||||||
<% if Message %>
|
<% if Message %>
|
||||||
<span class="message $MessageType">$Message</span>
|
<span class="message $MessageType">$Message</span>
|
||||||
<% end_if %>
|
<% end_if %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
@ -1,4 +1,4 @@
|
|||||||
<div id="$id" class="$Classes TableField">
|
<div id="$id" class="$Classes TableField field">
|
||||||
<% if Print %><% else %><% include TableListField_PageControls %><% end_if %>
|
<% if Print %><% else %><% include TableListField_PageControls %><% end_if %>
|
||||||
<table class="data">
|
<table class="data">
|
||||||
<thead>
|
<thead>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user