}
.icon-check:before {
content: "\f00c";
+ color: @green;
+ font-size: @iconFontSize;
}
.icon-default:before {
position: relative;
}
.icon-delete:before {
content: "\f00d";
+ color: @red;
font-size: @iconFontSize;
}
.icon-compare:before {
}
.icon-plus:before {
content: "\f067";
+ color: @green;
+ font-size: @iconFontSize;
}
.icon-link:before {
content: "\f127";
font-size: @iconSmallFontSize;
}
.icon-move-down:before {
- content: "\f0d7";
+ content: "\f063";
+ color: @darkBlue;
font-size: @iconFontSize;
}
.icon-move-up:before {
- content: "\f0d8";
+ content: "\f062";
+ color: @darkBlue;
font-size: @iconFontSize;
}
.icon-move-left:before {
- content: "\f0d9";
+ content: "\f060";
+ color: @darkBlue;
font-size: @iconFontSize;
}
.icon-move-right:before {
- content: "\f0da";
+ content: "\f061";
+ color: @darkBlue;
font-size: @iconFontSize;
}
.icon-scm:before {
@orange: #f90;
@purple: #9139d4;
+@darkBlue: darken(@blue, 20%);
+
@highlighted: @blue;
@contextBackground: lighten(@purple, 40%);
@contextBorder: lighten(@purple, 30%);
@resolutionFalsePositiveColor: @baseFontColor;
@resolutionRemovedColor: @baseFontColor;
-@qualifierColor: darken(@orange, 30%);
-
/*
<div class="description"><%= h dashboard.description -%></div>
</td>
<td class="shared">
- <%= boolean_icon(dashboard.shared) -%>
+ <% if (dashboard.shared) %><i class="icon-check"></i><% end %>
</td>
<td class="owner">
<%= h(dashboard.user_name || message('dashboard.username.default')) -%>
<div class="description"><%= h dashboard.description -%></div>
</td>
<td class="shared">
- <%= boolean_icon(dashboard.shared, {:id => "dashboard-#{index}-shared"}) -%>
+ <% if (dashboard.shared) %><i class="icon-check" id='<%= "dashboard-#{index}-shared" -%>'></i><% end %>
</td>
<td class="owner">
<%= h(dashboard.user_name || message('dashboard.username.default')) -%>
</td>
<td class="order">
<% if index > 0 %>
- <%= link_to image_tag('blue-up.png'), {:action => :up, :id => dashboard.id, :resource => resource_id}, :method => :post, :id => "up-#{u dashboard.name}" %>
+ <%= link_to '', {:action => :up, :id => dashboard.id, :resource => resource_id}, :method => :post, :id => "up-#{u dashboard.name}", :class => "icon-move-up" %>
<% else %>
<%= image_tag('transparent_16.gif') %>
<% end %>
<% if index < @actives.size-1 %>
- <%= link_to image_tag('blue-down.png'), {:action => :down, :id => dashboard.id, :resource => resource_id}, :method => :post, :id => "down-#{u dashboard.name}" %>
+ <%= link_to '', {:action => :down, :id => dashboard.id, :resource => resource_id}, :method => :post, :id => "down-#{u dashboard.name}", :class => "icon-move-down" %>
<% else %>
<%= image_tag('transparent_16.gif') %>
<% end %>
<div class="admin_page">
<ul style="float: right" class="horizontal">
- <li class="marginleft10 add">
+ <li class="marginleft10">
+ <i class="icon-plus"></i>
<%= link_to message('create'), {:action => :create_form, :resource => (@resource.id if @resource)}, :id => "create-link-dashboard", :class => 'open-modal link-action' %>
</li>
</ul>