Skip to content
Snippets Groups Projects
Unverified Commit 436e9646 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Nicer icons for enabled/disabled stuff

parent b07c02eb
No related branches found
No related tags found
No related merge requests found
/** COLORS **/
.cgray { color: gray }
.clgray { color: #BBB }
.cred { color: #D12F19 }
.cgreen { color: #4a2 }
.cblue { color: #29A }
Loading
Loading
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
 
Loading
Loading
Loading
Loading
@@ -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
Loading
Loading
%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
 
Loading
Loading
Loading
Loading
@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment