MINOR Added 'ss-ui-button' class to all #TreeActions buttons in the CMS to allow for jQuery UI native styling

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92595 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2009-11-21 02:35:50 +00:00
parent 7fd337f5f8
commit 612dbe0831

View File

@ -4,10 +4,22 @@
</h3>
<div id="sitetree_holder">
<div id="TreeTools">
<ul id="TreeActions">
<li class="action" id="addpage"><button><% _t('CREATE','Create',PR_HIGH) %></button></li>
<li class="action" id="search"><button><% _t('SEARCH','Search',PR_HIGH) %></button></li>
<li class="action" id="batchactions"><button><% _t('BATCHACTIONS','Batch Actions',PR_HIGH) %></button></li>
<ul id="TreeActions" class="ui-dialog-buttonpane ui-widget-content ui-helper-clearfix">
<li id="addpage" class="action">
<button class="ss-ui-button" type="button">
<% _t('CREATE','Create',PR_HIGH) %>
</button>
</li>
<li id="search" class="action">
<button class="ss-ui-button" type="button">
<% _t('SEARCH','Search',PR_HIGH) %>
</button>
</li>
<li id="batchactions" class="action">
<button class="ss-ui-button" type="button">
<% _t('BATCHACTIONS','Batch Actions',PR_HIGH) %>
</button>
</li>
</ul>
<div style="clear:both;"></div>
<% control AddPageOptionsForm %>