2013-07-31 10:39:57 -04:00
|
|
|
%h3.page-title
|
|
|
|
My appearance settings
|
|
|
|
%p.light
|
|
|
|
Appearance settings saved to your profile and available across all devices
|
|
|
|
%hr
|
|
|
|
|
2012-12-02 06:29:24 -05:00
|
|
|
= form_for @user, url: profile_path, remote: true, method: :put do |f|
|
2012-11-21 15:01:40 -05:00
|
|
|
%fieldset.application-theme
|
|
|
|
%legend
|
|
|
|
Application theme
|
2012-08-13 01:52:10 -04:00
|
|
|
.themes_opts
|
2012-06-03 18:37:27 -04:00
|
|
|
= label_tag do
|
2012-11-20 23:14:05 -05:00
|
|
|
.prev.default
|
2012-04-10 01:51:08 -04:00
|
|
|
= f.radio_button :theme_id, 1
|
|
|
|
Default
|
2012-03-01 14:23:50 -05:00
|
|
|
|
2012-06-03 18:37:27 -04:00
|
|
|
= label_tag do
|
2012-11-20 23:14:05 -05:00
|
|
|
.prev.classic
|
2012-04-10 01:51:08 -04:00
|
|
|
= f.radio_button :theme_id, 2
|
|
|
|
Classic
|
2012-06-11 13:52:32 -04:00
|
|
|
|
|
|
|
= label_tag do
|
2012-11-20 23:14:05 -05:00
|
|
|
.prev.modern
|
2012-06-11 13:52:32 -04:00
|
|
|
= f.radio_button :theme_id, 3
|
|
|
|
Modern
|
2012-11-20 23:14:05 -05:00
|
|
|
|
|
|
|
= label_tag do
|
|
|
|
.prev.gray
|
|
|
|
= f.radio_button :theme_id, 4
|
2013-07-02 07:06:25 -04:00
|
|
|
Gray
|
2012-11-20 23:14:05 -05:00
|
|
|
|
|
|
|
= label_tag do
|
|
|
|
.prev.violet
|
|
|
|
= f.radio_button :theme_id, 5
|
|
|
|
Violet
|
2012-04-10 01:51:08 -04:00
|
|
|
%br
|
2012-08-13 01:52:10 -04:00
|
|
|
.clearfix
|
|
|
|
|
2012-11-21 15:01:40 -05:00
|
|
|
%fieldset.code-preview-theme
|
|
|
|
%legend
|
|
|
|
Code preview theme
|
2012-11-20 23:14:05 -05:00
|
|
|
.code_highlight_opts
|
2013-06-03 12:34:07 -04:00
|
|
|
- color_schemes.each do |color_scheme_id, color_scheme|
|
|
|
|
= label_tag do
|
|
|
|
.prev
|
|
|
|
= image_tag "#{color_scheme}-scheme-preview.png"
|
|
|
|
= f.radio_button :color_scheme_id, color_scheme_id
|
|
|
|
= color_scheme.gsub(/[-_]+/, ' ').humanize
|