mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 07:36:41 +10:00
Nicer icons for enabled/disabled stuff
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
/** COLORS **/
|
||||
.cgray { color: gray }
|
||||
.clgray { color: #BBB }
|
||||
.cred { color: #D12F19 }
|
||||
.cgreen { color: #4a2 }
|
||||
.cblue { color: #29A }
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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,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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user