Skip to content

Commit

Permalink
MINOR Added 'ss-ui-button' class to all #TreeActions buttons in the C…
Browse files Browse the repository at this point in the history
…MS 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
  • Loading branch information
chillu committed Nov 21, 2009
1 parent 7fd337f commit 612dbe0
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions templates/Includes/CMSMain_left.ss
Original file line number Diff line number Diff line change
Expand Up @@ -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 %>
Expand Down

0 comments on commit 612dbe0

Please sign in to comment.