summaryrefslogtreecommitdiff
path: root/app/views/profile/design.html.haml
blob: d70483a25d8428f00b8fd097c1f426a06499e51b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
= form_for @user, url: profile_update_path, remote: true, method: :put do |f|
  %div
    %h3.page_title Application theme
    %br
    .themes_opts
      = label_tag do
        .prev
          = image_tag "gitlab_default.png"
        = f.radio_button :theme_id, 1
        Default

      = label_tag do
        .prev
          = image_tag "gitlab_classic.png"
        = f.radio_button :theme_id, 2
        Classic

      = label_tag do
        .prev
          = image_tag "gitlab_modern.png"
        = f.radio_button :theme_id, 3
        Modern
    %br
    .clearfix

  %h3.page_title Code review
  %br
  .themes_opts
    = 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

:javascript
  $(function(){
    $(".edit_user input").bind("click", function() {
      $(".edit_user").submit();
    });
  })