Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/profile/design.html.haml')
-rw-r--r--app/views/profile/design.html.haml22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/views/profile/design.html.haml b/app/views/profile/design.html.haml
new file mode 100644
index 00000000000..4a0f758d31f
--- /dev/null
+++ b/app/views/profile/design.html.haml
@@ -0,0 +1,22 @@
+.ui-box.width-100p
+ %h3 Design
+ = form_for @user, :url => profile_update_path, :method => :put do |f|
+ .data
+ .left.dark_scheme_box
+ %label{:for => "user_dark_scheme_false"}
+ = image_tag "white.png", :width => 310, :height => 212
+ %center
+ %h4
+ = f.radio_button :dark_scheme, false
+ White code preview
+ .right.dark_scheme_box
+ %label{:for => "user_dark_scheme_true"}
+ = image_tag "dark.png", :width => 310, :height => 212
+ %center
+ %h4
+ = f.radio_button :dark_scheme, true
+ Dark code preview
+ .clear
+ .buttons
+ = f.submit 'Save', :class => "grey-button"
+