Commit 705521f3e023db6eccda916a31825a65810f62a2
Exists in
spb-stable
and in
3 other branches
Merge branch 'ui_fixes' into 'master'
UI Fixes
Showing
9 changed files
with
23 additions
and
16 deletions
Show diff stats
app/assets/stylesheets/generic/typography.scss
app/assets/stylesheets/highlight/dark.scss
app/assets/stylesheets/highlight/monokai.scss
app/assets/stylesheets/highlight/solarized_dark.scss
app/assets/stylesheets/sections/issues.scss
... | ... | @@ -60,7 +60,6 @@ input.check_all_issues { |
60 | 60 | .btn.close_issue { |
61 | 61 | color: #B94A48; |
62 | 62 | font-weight: bold; |
63 | - @include shade; | |
64 | 63 | &:hover { |
65 | 64 | color: #B94A48; |
66 | 65 | } |
... | ... | @@ -68,7 +67,6 @@ input.check_all_issues { |
68 | 67 | .btn.reopen_issue { |
69 | 68 | color: #468847; |
70 | 69 | font-weight: bold; |
71 | - @include shade; | |
72 | 70 | &:hover { |
73 | 71 | color: #468847; |
74 | 72 | } | ... | ... |
app/assets/stylesheets/sections/notes.scss
app/views/projects/protected_branches/index.html.haml
... | ... | @@ -3,7 +3,7 @@ |
3 | 3 | .col-md-3 |
4 | 4 | = render "projects/branches/filter" |
5 | 5 | .col-md-9 |
6 | - .alert.alert-info | |
6 | + .bs-callout.bs-callout-info | |
7 | 7 | %p Protected branches designed to prevent push for all except #{link_to "masters", help_permissions_path, class: "vlink"}. |
8 | 8 | %p This ability allows: |
9 | 9 | %ul |
... | ... | @@ -12,18 +12,18 @@ |
12 | 12 | %p Read more about project permissions #{link_to "here", help_permissions_path, class: "underlined_link"} |
13 | 13 | |
14 | 14 | - if can? current_user, :admin_project, @project |
15 | - = form_for [@project, @protected_branch] do |f| | |
15 | + = form_for [@project, @protected_branch], html: { class: 'form-horizontal' } do |f| | |
16 | 16 | -if @protected_branch.errors.any? |
17 | 17 | .alert.alert-danger |
18 | 18 | %ul |
19 | 19 | - @protected_branch.errors.full_messages.each do |msg| |
20 | 20 | %li= msg |
21 | 21 | |
22 | - .entry.clearfix | |
23 | - = f.label :name, "Branch" | |
24 | - .col-md-3 | |
25 | - = f.select(:name, @project.open_branches.map { |br| [br.name, br.name] } , {include_blank: "Select branch"}, {class: "select2 span3"}) | |
26 | - | |
22 | + .form-group | |
23 | + = f.label :name, "Branch", class: 'control-label' | |
24 | + .col-sm-10 | |
25 | + = f.select(:name, @project.open_branches.map { |br| [br.name, br.name] } , {include_blank: "Select branch"}, {class: "select2"}) | |
26 | + .form-actions | |
27 | 27 | = f.submit 'Protect', class: "btn-create btn" |
28 | 28 | - unless @branches.empty? |
29 | 29 | %h5 Already Protected: | ... | ... |
app/views/search/results/_blob.html.haml
... | ... | @@ -6,5 +6,4 @@ |
6 | 6 | %strong |
7 | 7 | = blob.filename |
8 | 8 | .file-content.code.term |
9 | - %div{class: user_color_scheme_class} | |
10 | - = raw blob.colorize( formatter: :gitlab, options: { first_line_number: blob.startline } ) | |
9 | + = render 'shared/file_hljs', blob: blob, first_line_number: blob.startline | ... | ... |
app/views/shared/_file_hljs.html.haml
1 | 1 | %div.highlighted-data{class: user_color_scheme_class} |
2 | 2 | .line-numbers |
3 | 3 | - blob.data.lines.size.times do |index| |
4 | - - i = index + 1 | |
4 | + - offset = defined?(first_line_number) ? first_line_number : 1 | |
5 | + - i = index + offset | |
5 | 6 | = link_to "#L#{i}", id: "L#{i}", rel: "#L#{i}" do |
6 | 7 | %i.icon-link |
7 | 8 | = i | ... | ... |