Nicer icons for enabled/disabled stuff

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets
2013-11-20 14:05:42 +02:00
parent b07c02eb13
commit 436e96467d
5 changed files with 7 additions and 15 deletions
@@ -1,5 +1,6 @@
/** COLORS **/
.cgray { color: gray }
.clgray { color: #BBB }
.cred { color: #D12F19 }
.cgreen { color: #4a2 }
.cblue { color: #29A }
+2 -2
View File
@@ -1,9 +1,9 @@
module IconsHelper
def boolean_to_icon(value)
if value.to_s == "true"
content_tag :i, nil, class: 'icon-circle cgreen'
content_tag :i, nil, class: 'icon-ok cgreen'
else
content_tag :i, nil, class: 'icon-circle cgray'
content_tag :i, nil, class: 'icon-off clgray'
end
end
+1 -1
View File
@@ -25,7 +25,7 @@ class HipchatService < Service
end
def description
'Simple web-based real-time group chat'
'Private group chat and IM'
end
def to_param
+1 -6
View File
@@ -1,11 +1,6 @@
%h3.page-title
- if @service.activated?
%span.cgreen
%i.icon-circle
- else
%span.cgray
%i.icon-circle-blank
= @service.title
= boolean_to_icon @service.activated?
%p= @service.description
+2 -6
View File
@@ -6,12 +6,8 @@
- @services.each do |service|
%li
%h4
- if service.activated?
%span.cgreen
%i.icon-circle
- else
%span.cgray
%i.icon-circle-blank
= link_to edit_project_service_path(@project, service.to_param) do
= service.title
.pull-right
= boolean_to_icon service.activated?
%p= service.description