mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 06:05:56 +00:00
Ticket #1498 - Action param buttons now work in IE7 (applied classes)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@44292 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
9e5c9ce323
commit
54c65ce091
@ -146,7 +146,7 @@
|
|||||||
#deletemarked input.action,
|
#deletemarked input.action,
|
||||||
#UnusedThumbnails button,
|
#UnusedThumbnails button,
|
||||||
div.Actions input,
|
div.Actions input,
|
||||||
.actionparams input[type="submit"] {
|
.actionparams input.action {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
float: left;
|
float: left;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
@ -166,9 +166,12 @@ div.Actions input,
|
|||||||
#CommentFilterButton,
|
#CommentFilterButton,
|
||||||
#deletemarked input.action,
|
#deletemarked input.action,
|
||||||
.actions input,
|
.actions input,
|
||||||
.actionparams input[type="submit"] {
|
.actionparams input.action {
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
|
.actionparams input.action {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
#deletemarked {
|
#deletemarked {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
@ -183,14 +186,15 @@ div.Actions input,
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ajaxActions input:hover,
|
.ajaxActions input:hover,
|
||||||
div.Actions input:hover {
|
div.Actions input:hover,
|
||||||
|
.actionparams input[type="submit"]:hover {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
input.delete:hover,
|
input.delete:hover,
|
||||||
#deletemarked input.delete:hover,
|
#deletemarked input.delete:hover,
|
||||||
#UnusedThumbnails button:hover,
|
#UnusedThumbnails button:hover,
|
||||||
.actionparams input:hover {
|
.actionparams input.delete:hover {
|
||||||
background: #ce0000;
|
background: #ce0000;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<input type="hidden" id="SiteTreeIsFiltered" value="0" />
|
<input type="hidden" id="SiteTreeIsFiltered" value="0" />
|
||||||
<input type="text" id="SiteTreeSearchTerm" name="SiteTreeSearchTerm" />
|
<input type="text" id="SiteTreeSearchTerm" name="SiteTreeSearchTerm" />
|
||||||
<input type="submit" id="SiteTreeSearchButton" value="<% _t('SEARCH') %>" title="<% _t('SEARCHTITLE','Search through URL, Title, Menu Title, & Content') %>" />
|
<input type="submit" id="SiteTreeSearchButton" class="action" value="<% _t('SEARCH') %>" title="<% _t('SEARCHTITLE','Search through URL, Title, Menu Title, & Content') %>" />
|
||||||
<div style="display:none" id="TextSiteTreeFilterDate" class="SearchCriteria"><% _t('EDITEDSINCE','Edited Since') %>:</div>
|
<div style="display:none" id="TextSiteTreeFilterDate" class="SearchCriteria"><% _t('EDITEDSINCE','Edited Since') %>:</div>
|
||||||
<div style="display:none" id="InputSiteTreeFilterDate">$SiteTreeFilterDateField</div>
|
<div style="display:none" id="InputSiteTreeFilterDate">$SiteTreeFilterDateField</div>
|
||||||
<% control SiteTreeFilterOptions %>
|
<% control SiteTreeFilterOptions %>
|
||||||
@ -67,14 +67,14 @@
|
|||||||
<p><% _t('SELECTPAGESACTIONS','Select the pages that you want to change & then click an action:') %></p>
|
<p><% _t('SELECTPAGESACTIONS','Select the pages that you want to change & then click an action:') %></p>
|
||||||
<div>
|
<div>
|
||||||
<input type="hidden" name="csvIDs" />
|
<input type="hidden" name="csvIDs" />
|
||||||
<input type="submit" id="action_delete_selected" value="<% _t('DELETECONFIRM','Delete the selected pages') %>" />
|
<input type="submit" id="action_delete_selected" class="action delete" value="<% _t('DELETECONFIRM','Delete the selected pages') %>" />
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<form class="actionparams" style="border:0" id="publishpage_options" action="admin/publishitems">
|
<form class="actionparams" style="border:0" id="publishpage_options" action="admin/publishitems">
|
||||||
<div>
|
<div>
|
||||||
<input type="hidden" name="csvIDs" />
|
<input type="hidden" name="csvIDs" />
|
||||||
<input type="checkbox" id="publishpage_show_drafts" /> <label for="publishpage_show_drafts"><% _t('SHOWONLYCHANGED','Show only changed pages') %></label>
|
<input type="checkbox" id="publishpage_show_drafts" /> <label for="publishpage_show_drafts"><% _t('SHOWONLYCHANGED','Show only changed pages') %></label>
|
||||||
<input type="submit" id="action_publish_selected" value="<% _t('PUBLISHCONFIRM','Publish the selected pages') %>" />
|
<input type="submit" id="action_publish_selected" class="action" value="<% _t('PUBLISHCONFIRM','Publish the selected pages') %>" />
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user