Changeset 480
- Timestamp:
- 09/07/07 10:54:41 (1 year ago)
- Files:
-
- trunk/radiant/CONTRIBUTORS (modified) (1 diff)
- trunk/radiant/app/views/admin/layout/index.rhtml (modified) (1 diff)
- trunk/radiant/app/views/admin/layout/remove.rhtml (modified) (1 diff)
- trunk/radiant/app/views/admin/page/_node.rhtml (modified) (2 diffs)
- trunk/radiant/app/views/admin/snippet/index.rhtml (modified) (1 diff)
- trunk/radiant/app/views/layouts/application.rhtml (modified) (1 diff)
- trunk/radiant/public/stylesheets/admin/main.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/radiant/CONTRIBUTORS
r461 r480 4 4 The following people have submitted changes which have been applied to the 5 5 core: 6 7 === SVN 8 * Sean Cribbs 9 * Earl Chew 10 * tolbrino 6 11 7 12 === 0.6.2 Jewel Carver trunk/radiant/app/views/admin/layout/index.rhtml
r405 r480 17 17 <tr class="node level-1"> 18 18 <td class="layout"> 19 <%= image 'layout', :alt => 'layout-icon', :title => '' , :align => 'center'%>19 <%= image 'layout', :alt => 'layout-icon', :title => '' %> 20 20 <%= link_to layout.name, layout_edit_url(:id => layout) %> 21 21 </td> trunk/radiant/app/views/admin/layout/remove.rhtml
r405 r480 6 6 <tr class="node level-1" onmouseover="Element.addClassName(this, 'highlight');" onmouseout="Element.removeClassName(this, 'highlight');"> 7 7 <td class="layout"> 8 <%= image 'layout', :alt => 'layout-icon', :title => '' , :align => 'center'%>8 <%= image 'layout', :alt => 'layout-icon', :title => '' %> 9 9 <%= @layout.name %> 10 10 </td> trunk/radiant/app/views/admin/page/_node.rhtml
r405 r480 8 8 virtual_class = page.virtual? ? " virtual": "" 9 9 10 expander = children ? image((expanded ? "collapse" : "expand"), :class => "expander", :alt => 'toggle children', :title => '' , :align => 'center') : ""10 expander = children ? image((expanded ? "collapse" : "expand"), :class => "expander", :alt => 'toggle children', :title => '') : "" 11 11 12 12 icon_name = page.virtual? ? "virtual-page" : "page" 13 icon = image(icon_name, :class => "icon", :alt => 'page-icon', :title => '' , :align => 'center')13 icon = image(icon_name, :class => "icon", :alt => 'page-icon', :title => '') 14 14 15 15 title = %{<span class="title">#{ page.title }</span>} … … 18 18 page_type = display_name == 'Page' ? '' : %{<small class="info">(#{ display_name })</small>} 19 19 20 spinner = image('spinner.gif', :class => 'busy', :id => "busy-#{page.id}", :alt => "", :title => "", : align => "center", :style => 'display: none;')20 spinner = image('spinner.gif', :class => 'busy', :id => "busy-#{page.id}", :alt => "", :title => "", :style => 'display: none;') 21 21 -%> 22 22 <tr id="page-<%= page.id %>" class="node level-<%= level %><%= children_class %><%= virtual_class %>"> trunk/radiant/app/views/admin/snippet/index.rhtml
r405 r480 15 15 <tr class="node level-1"> 16 16 <td class="snippet"> 17 <%= image "snippet", :class => "icon", :alt => 'snippet-icon', :title => '' , :align => 'center'%>17 <%= image "snippet", :class => "icon", :alt => 'snippet-icon', :title => '' %> 18 18 <%= link_to snippet.name, snippet_edit_url(:id => snippet) %></span> 19 19 </td> trunk/radiant/app/views/layouts/application.rhtml
r405 r480 71 71 <span class="separator"> | </span> 72 72 <% end -%> 73 <%= link_to image('view-site.gif', :alt => 'View Site', :title => '' , :align => 'center'), homepage_url %>73 <%= link_to image('view-site.gif', :alt => 'View Site', :title => ''), homepage_url %> 74 74 </p> 75 75 </div> trunk/radiant/public/stylesheets/admin/main.css
r405 r480 5 5 padding: 0; 6 6 } 7 img { border: 0; } 7 img { 8 border: 0; 9 vertical-align: middle; 10 } 8 11 h3 { 9 12 font-size: 130%;
