Removes large icons.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3179 e93f8b46-1217-0410-a6f0-8f06a7374b81
|
@ -11,7 +11,7 @@
|
||||||
<% for board in @boards %>
|
<% for board in @boards %>
|
||||||
<tr class="<%= cycle 'odd', 'even' %>">
|
<tr class="<%= cycle 'odd', 'even' %>">
|
||||||
<td>
|
<td>
|
||||||
<%= link_to h(board.name), {:action => 'show', :id => board}, :class => "icon22 icon22-comment" %><br />
|
<%= link_to h(board.name), {:action => 'show', :id => board}, :class => "board" %><br />
|
||||||
<%=h board.description %>
|
<%=h board.description %>
|
||||||
</td>
|
</td>
|
||||||
<td align="center"><%= board.topics_count %></td>
|
<td align="center"><%= board.topics_count %></td>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<% unless @replies.empty? %>
|
<% unless @replies.empty? %>
|
||||||
<h3 class="icon22 icon22-comment"><%= l(:label_reply_plural) %></h3>
|
<h3 class="comments"><%= l(:label_reply_plural) %></h3>
|
||||||
<% @replies.each do |message| %>
|
<% @replies.each do |message| %>
|
||||||
<div class="message reply" id="<%= "message-#{message.id}" %>">
|
<div class="message reply" id="<%= "message-#{message.id}" %>">
|
||||||
<div class="contextual">
|
<div class="contextual">
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<div id="comments" style="margin-bottom:16px;">
|
<div id="comments" style="margin-bottom:16px;">
|
||||||
<h3 class="icon22 icon22-comment"><%= l(:label_comment_plural) %></h3>
|
<h3 class="comments"><%= l(:label_comment_plural) %></h3>
|
||||||
<% @comments.each do |comment| %>
|
<% @comments.each do |comment| %>
|
||||||
<% next if comment.new_record? %>
|
<% next if comment.new_record? %>
|
||||||
<div class="contextual">
|
<div class="contextual">
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<div id="roadmap">
|
<div id="roadmap">
|
||||||
<% @versions.each do |version| %>
|
<% @versions.each do |version| %>
|
||||||
<%= tag 'a', :name => version.name %>
|
<%= tag 'a', :name => version.name %>
|
||||||
<h3 class="icon22 icon22-package"><%= link_to_version version %></h3>
|
<h3 class="version"><%= link_to_version version %></h3>
|
||||||
<%= render :partial => 'versions/overview', :locals => {:version => version} %>
|
<%= render :partial => 'versions/overview', :locals => {:version => version} %>
|
||||||
<%= render(:partial => "wiki/content", :locals => {:content => version.wiki_page.content}) if version.wiki_page %>
|
<%= render(:partial => "wiki/content", :locals => {:content => version.wiki_page.content}) if version.wiki_page %>
|
||||||
|
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<% if User.current.allowed_to?(:view_issues, @project) %>
|
<% if User.current.allowed_to?(:view_issues, @project) %>
|
||||||
<div class="box">
|
<div class="issues box">
|
||||||
<h3 class="icon22 icon22-tracker"><%=l(:label_issue_tracking)%></h3>
|
<h3><%=l(:label_issue_tracking)%></h3>
|
||||||
<ul>
|
<ul>
|
||||||
<% for tracker in @trackers %>
|
<% for tracker in @trackers %>
|
||||||
<li><%= link_to tracker.name, :controller => 'issues', :action => 'index', :project_id => @project,
|
<li><%= link_to tracker.name, :controller => 'issues', :action => 'index', :project_id => @project,
|
||||||
|
@ -36,8 +36,8 @@
|
||||||
|
|
||||||
<div class="splitcontentright">
|
<div class="splitcontentright">
|
||||||
<% if @users_by_role.any? %>
|
<% if @users_by_role.any? %>
|
||||||
<div class="box">
|
<div class="members box">
|
||||||
<h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3>
|
<h3><%=l(:label_member_plural)%></h3>
|
||||||
<p><% @users_by_role.keys.sort.each do |role| %>
|
<p><% @users_by_role.keys.sort.each do |role| %>
|
||||||
<%=h role %>: <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ") %><br />
|
<%=h role %>: <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ") %><br />
|
||||||
<% end %></p>
|
<% end %></p>
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% if @news.any? && authorize_for('news', 'index') %>
|
<% if @news.any? && authorize_for('news', 'index') %>
|
||||||
<div class="box">
|
<div class="news box">
|
||||||
<h3><%=l(:label_news_latest)%></h3>
|
<h3><%=l(:label_news_latest)%></h3>
|
||||||
<%= render :partial => 'news/news', :collection => @news %>
|
<%= render :partial => 'news/news', :collection => @news %>
|
||||||
<p><%= link_to l(:label_news_view_all), :controller => 'news', :action => 'index', :project_id => @project %></p>
|
<p><%= link_to l(:label_news_view_all), :controller => 'news', :action => 'index', :project_id => @project %></p>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="splitcontentleft">
|
<div class="splitcontentleft">
|
||||||
<%= textilizable Setting.welcome_text %>
|
<%= textilizable Setting.welcome_text %>
|
||||||
<% if @news.any? %>
|
<% if @news.any? %>
|
||||||
<div class="box">
|
<div class="news box">
|
||||||
<h3><%=l(:label_news_latest)%></h3>
|
<h3><%=l(:label_news_latest)%></h3>
|
||||||
<%= render :partial => 'news/news', :collection => @news %>
|
<%= render :partial => 'news/news', :collection => @news %>
|
||||||
<%= link_to l(:label_news_view_all), :controller => 'news' %>
|
<%= link_to l(:label_news_view_all), :controller => 'news' %>
|
||||||
|
@ -14,8 +14,8 @@
|
||||||
|
|
||||||
<div class="splitcontentright">
|
<div class="splitcontentright">
|
||||||
<% if @projects.any? %>
|
<% if @projects.any? %>
|
||||||
<div class="box">
|
<div class="projects box">
|
||||||
<h3 class="icon22 icon22-projects"><%=l(:label_project_latest)%></h3>
|
<h3><%=l(:label_project_latest)%></h3>
|
||||||
<ul>
|
<ul>
|
||||||
<% for project in @projects %>
|
<% for project in @projects %>
|
||||||
<li>
|
<li>
|
||||||
|
|
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 432 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 985 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 926 B |
Before Width: | Height: | Size: 679 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 991 B |
Before Width: | Height: | Size: 772 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 950 B |
Before Width: | Height: | Size: 646 B |
Before Width: | Height: | Size: 530 B After Width: | Height: | Size: 853 B |
|
@ -181,8 +181,17 @@ table.attributes { width: 100% }
|
||||||
table.attributes th { vertical-align: top; text-align: left; }
|
table.attributes th { vertical-align: top; text-align: left; }
|
||||||
table.attributes td { vertical-align: top; }
|
table.attributes td { vertical-align: top; }
|
||||||
|
|
||||||
|
table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
|
||||||
|
|
||||||
td.center {text-align:center;}
|
td.center {text-align:center;}
|
||||||
|
|
||||||
|
h3.version { background: url(../images/package.png) no-repeat 0% 50%; padding-left: 20px; }
|
||||||
|
|
||||||
|
div.issues h3 { background: url(../images/ticket.png) no-repeat 0% 50%; padding-left: 20px; }
|
||||||
|
div.members h3 { background: url(../images/group.png) no-repeat 0% 50%; padding-left: 20px; }
|
||||||
|
div.news h3 { background: url(../images/news.png) no-repeat 0% 50%; padding-left: 20px; }
|
||||||
|
div.projects h3 { background: url(../images/projects.png) no-repeat 0% 50%; padding-left: 20px; }
|
||||||
|
|
||||||
.highlight { background-color: #FCFD8D;}
|
.highlight { background-color: #FCFD8D;}
|
||||||
.highlight.token-1 { background-color: #faa;}
|
.highlight.token-1 { background-color: #faa;}
|
||||||
.highlight.token-2 { background-color: #afa;}
|
.highlight.token-2 { background-color: #afa;}
|
||||||
|
@ -730,14 +739,6 @@ padding-top: 2px;
|
||||||
padding-bottom: 3px;
|
padding-bottom: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon22 {
|
|
||||||
background-position: 0% 40%;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
padding-left: 26px;
|
|
||||||
line-height: 22px;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon-add { background-image: url(../images/add.png); }
|
.icon-add { background-image: url(../images/add.png); }
|
||||||
.icon-edit { background-image: url(../images/edit.png); }
|
.icon-edit { background-image: url(../images/edit.png); }
|
||||||
.icon-copy { background-image: url(../images/copy.png); }
|
.icon-copy { background-image: url(../images/copy.png); }
|
||||||
|
@ -789,21 +790,6 @@ vertical-align: middle;
|
||||||
.icon-file.application-zip { background-image: url(../images/files/zip.png); }
|
.icon-file.application-zip { background-image: url(../images/files/zip.png); }
|
||||||
.icon-file.application-x-gzip { background-image: url(../images/files/zip.png); }
|
.icon-file.application-x-gzip { background-image: url(../images/files/zip.png); }
|
||||||
|
|
||||||
.icon22-projects { background-image: url(../images/22x22/projects.png); }
|
|
||||||
.icon22-users { background-image: url(../images/22x22/users.png); }
|
|
||||||
.icon22-groups { background-image: url(../images/22x22/groups.png); }
|
|
||||||
.icon22-tracker { background-image: url(../images/22x22/tracker.png); }
|
|
||||||
.icon22-role { background-image: url(../images/22x22/role.png); }
|
|
||||||
.icon22-workflow { background-image: url(../images/22x22/workflow.png); }
|
|
||||||
.icon22-options { background-image: url(../images/22x22/options.png); }
|
|
||||||
.icon22-notifications { background-image: url(../images/22x22/notifications.png); }
|
|
||||||
.icon22-authent { background-image: url(../images/22x22/authent.png); }
|
|
||||||
.icon22-info { background-image: url(../images/22x22/info.png); }
|
|
||||||
.icon22-comment { background-image: url(../images/22x22/comment.png); }
|
|
||||||
.icon22-package { background-image: url(../images/22x22/package.png); }
|
|
||||||
.icon22-settings { background-image: url(../images/22x22/settings.png); }
|
|
||||||
.icon22-plugin { background-image: url(../images/22x22/plugin.png); }
|
|
||||||
|
|
||||||
img.gravatar {
|
img.gravatar {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
border: solid 1px #d5d5d5;
|
border: solid 1px #d5d5d5;
|
||||||
|
|