2012-12-02 13:29:24 +02: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
|
|
|
|
.update-feedback.hide
|
|
|
|
%i.icon-ok
|
|
|
|
Saved
|
2012-08-13 08:52:10 +03:00
|
|
|
.themes_opts
|
2012-06-04 01:37:27 +03:00
|
|
|
= label_tag do
|
2012-11-21 07:14:05 +03:00
|
|
|
.prev.default
|
2012-04-10 08:51:08 +03:00
|
|
|
= f.radio_button :theme_id, 1
|
|
|
|
Default
|
2012-03-01 21:23:50 +02:00
|
|
|
|
2012-06-04 01:37:27 +03:00
|
|
|
= label_tag do
|
2012-11-21 07:14:05 +03:00
|
|
|
.prev.classic
|
2012-04-10 08:51:08 +03:00
|
|
|
= f.radio_button :theme_id, 2
|
|
|
|
Classic
|
2012-06-11 20:52:32 +03:00
|
|
|
|
|
|
|
= label_tag do
|
2012-11-21 07:14:05 +03:00
|
|
|
.prev.modern
|
2012-06-11 20:52:32 +03:00
|
|
|
= f.radio_button :theme_id, 3
|
|
|
|
Modern
|
2012-11-21 07:14:05 +03:00
|
|
|
|
|
|
|
= label_tag do
|
|
|
|
.prev.gray
|
|
|
|
= f.radio_button :theme_id, 4
|
|
|
|
SlateGray
|
|
|
|
|
|
|
|
= label_tag do
|
|
|
|
.prev.violet
|
|
|
|
= f.radio_button :theme_id, 5
|
|
|
|
Violet
|
2012-04-10 08:51:08 +03:00
|
|
|
%br
|
2012-08-13 08:52:10 +03:00
|
|
|
.clearfix
|
|
|
|
|
2012-11-21 15:01:40 -05:00
|
|
|
%fieldset.code-preview-theme
|
|
|
|
%legend
|
|
|
|
Code preview theme
|
|
|
|
.update-feedback.hide
|
|
|
|
%i.icon-ok
|
|
|
|
Saved
|
2012-11-21 07:14:05 +03:00
|
|
|
.code_highlight_opts
|
2012-11-21 08:14:05 +03:00
|
|
|
= label_tag do
|
|
|
|
.prev
|
|
|
|
= image_tag "white.png"
|
|
|
|
= f.radio_button :dark_scheme, false
|
|
|
|
White code preview
|
|
|
|
= label_tag do
|
|
|
|
.prev
|
|
|
|
= image_tag "dark.png"
|
|
|
|
= f.radio_button :dark_scheme, true
|
|
|
|
Dark code preview
|