Commit 36fd4de8251cb265244320e67d3d5a3420712a85
1 parent
8b1d44f7
Exists in
master
and in
4 other branches
Replace page_title with page-title. Correct margin for some blocks/layouts
Showing
87 changed files
with
96 additions
and
110 deletions
Show diff stats
app/assets/stylesheets/common.scss
... | ... | @@ -23,12 +23,8 @@ body { |
23 | 23 | |
24 | 24 | .help li { color:$style_color; } |
25 | 25 | |
26 | -.back_link { | |
27 | - text-decoration: underline; | |
26 | +.back-link { | |
28 | 27 | font-size: 14px; |
29 | - font-weight: bold; | |
30 | - padding: 10px 0; | |
31 | - padding-bottom: 0; | |
32 | 28 | } |
33 | 29 | |
34 | 30 | table a code { |
... | ... | @@ -412,7 +408,7 @@ img.emoji { |
412 | 408 | } |
413 | 409 | |
414 | 410 | .navless-container { |
415 | - margin-top: 30px; | |
411 | + margin-top: 20px; | |
416 | 412 | } |
417 | 413 | |
418 | 414 | .description-block { | ... | ... |
app/assets/stylesheets/gitlab_bootstrap/blocks.scss
app/assets/stylesheets/gitlab_bootstrap/typography.scss
... | ... | @@ -7,11 +7,12 @@ h1, h2, h3, h4, h5, h6 { margin: 0; } |
7 | 7 | h3, h4, h5, h6 { line-height: 36px; } |
8 | 8 | h5 { font-size: 14px; } |
9 | 9 | |
10 | -h3.page_title { | |
10 | +h3.page-title { | |
11 | 11 | color: #456; |
12 | 12 | font-size: 20px; |
13 | 13 | font-weight: normal; |
14 | 14 | line-height: 28px; |
15 | + margin-bottom: 15px; | |
15 | 16 | } |
16 | 17 | |
17 | 18 | h6 { | ... | ... |
app/assets/stylesheets/sections/nav.scss
app/assets/stylesheets/sections/projects.scss
app/assets/stylesheets/sections/votes.scss
app/assets/stylesheets/sections/wiki.scss
app/views/admin/background_jobs/show.html.haml
app/views/admin/groups/edit.html.haml
app/views/admin/groups/index.html.haml
app/views/admin/groups/new.html.haml
app/views/admin/groups/show.html.haml
app/views/admin/projects/index.html.haml
app/views/admin/projects/show.html.haml
app/views/admin/users/edit.html.haml
app/views/admin/users/index.html.haml
app/views/admin/users/new.html.haml
app/views/admin/users/show.html.haml
app/views/dashboard/issues.html.haml
app/views/dashboard/merge_requests.html.haml
app/views/devise/passwords/new.html.haml
1 | 1 | = form_for(resource, as: resource_name, url: password_path(resource_name), html: { class: "login-box", method: :post }) do |f| |
2 | - %h3.page_title Reset password | |
2 | + %h3.page-title Reset password | |
3 | 3 | %br |
4 | 4 | = devise_error_messages! |
5 | 5 | = f.email_field :email, placeholder: "Email", class: "text" | ... | ... |
app/views/devise/registrations/new.html.haml
app/views/devise/sessions/new.html.haml
app/views/errors/access_denied.html.haml
app/views/errors/encoding.html.haml
app/views/errors/git_not_found.html.haml
app/views/errors/not_found.html.haml
app/views/groups/_filter.html.haml
1 | 1 | = form_tag group_filter_path(entity), method: 'get' do |
2 | - %fieldset.dashboard-search-filter | |
3 | - = search_field_tag "search", params[:search], { placeholder: 'Search', class: 'search-text-input' } | |
4 | - = button_tag type: 'submit', class: 'btn' do | |
5 | - %i.icon-search | |
6 | - | |
7 | 2 | %fieldset |
8 | - %legend Status: | |
9 | 3 | %ul.nav.nav-pills.nav-stacked |
10 | 4 | %li{class: ("active" if !params[:status])} |
11 | 5 | = link_to group_filter_path(entity, status: nil) do | ... | ... |
app/views/groups/issues.html.haml
app/views/groups/merge_requests.html.haml
app/views/help/api.html.haml
app/views/help/index.html.haml
app/views/help/markdown.html.haml
app/views/help/permissions.html.haml
app/views/help/public_access.html.haml
app/views/help/raketasks.html.haml
app/views/help/ssh.html.haml
app/views/help/system_hooks.html.haml
app/views/help/web_hooks.html.haml
app/views/help/workflow.html.haml
app/views/layouts/_page_title.html.haml
app/views/profiles/keys/index.html.haml
app/views/profiles/keys/new.html.haml
app/views/profiles/notifications/show.html.haml
app/views/profiles/show.html.haml
app/views/projects/commit/_commit_box.html.haml
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 | %li= link_to "Plain Diff", project_commit_path(@project, @commit, format: :diff) |
16 | 16 | = link_to project_tree_path(@project, @commit), class: "btn btn-primary grouped" do |
17 | 17 | %span Browse Code » |
18 | - %h3.commit-title.page_title | |
18 | + %h3.commit-title.page-title | |
19 | 19 | = gfm escape_once(@commit.title) |
20 | 20 | - if @commit.description.present? |
21 | 21 | %pre.commit-description | ... | ... |
app/views/projects/compare/index.html.haml
app/views/projects/compare/show.html.haml
app/views/projects/deploy_keys/new.html.haml
app/views/projects/deploy_keys/show.html.haml
app/views/projects/graphs/show.html.haml
1 | 1 | .loading-graph |
2 | 2 | %center |
3 | 3 | .loading |
4 | - %h3.page_title Building repository graph. Please wait a moment. | |
4 | + %h3.page-title Building repository graph. Please wait a moment. | |
5 | 5 | |
6 | 6 | .stat-graph |
7 | 7 | .header.clearfix |
... | ... | @@ -10,7 +10,7 @@ |
10 | 10 | %option{:value => "commits"} Commits |
11 | 11 | %option{:value => "additions"} Additions |
12 | 12 | %option{:value => "deletions"} Deletions |
13 | - %h3#date_header.page_title | |
13 | + %h3#date_header.page-title | |
14 | 14 | %input#brush_change{:type => "hidden"} |
15 | 15 | .graphs |
16 | 16 | #contributors-master | ... | ... |
app/views/projects/issues/_form.html.haml
app/views/projects/issues/index.html.haml
1 | 1 | = render "head" |
2 | 2 | .issues_content |
3 | - %h3.page_title | |
3 | + %h3.page-title | |
4 | 4 | Issues |
5 | 5 | %span (<span class=issue_counter>#{@issues.total_count}</span>) |
6 | 6 | .pull-right |
... | ... | @@ -16,8 +16,6 @@ |
16 | 16 | = hidden_field_tag :label_name, params[:label_name], id: 'search_label_name' |
17 | 17 | = search_field_tag :issue_search, nil, { placeholder: 'Search', class: 'issue_search input-xlarge append-right-10 search-text-input' } |
18 | 18 | |
19 | - .clearfix | |
20 | - | |
21 | 19 | .row |
22 | 20 | .span3 |
23 | 21 | = render 'filter', entity: 'issue' | ... | ... |
app/views/projects/issues/show.html.haml
1 | -%h3.page_title | |
1 | +%h3.page-title | |
2 | 2 | Issue ##{@issue.id} |
3 | 3 | |
4 | 4 | %small |
... | ... | @@ -22,7 +22,7 @@ |
22 | 22 | .pull-right |
23 | 23 | .span3#votes= render 'votes/votes_block', votable: @issue |
24 | 24 | |
25 | -.back_link | |
25 | +.back-link | |
26 | 26 | = link_to project_issues_path(@project) do |
27 | 27 | ← To issues list |
28 | 28 | ... | ... |
app/views/projects/labels/index.html.haml
app/views/projects/merge_requests/edit.html.haml
app/views/projects/merge_requests/index.html.haml
app/views/projects/merge_requests/new.html.haml
app/views/projects/merge_requests/show/_mr_title.html.haml
1 | -%h3.page_title | |
1 | +%h3.page-title | |
2 | 2 | = "Merge Request ##{@merge_request.id}:" |
3 | 3 | |
4 | 4 | %span.label-branch= @merge_request.source_branch |
... | ... | @@ -26,6 +26,6 @@ |
26 | 26 | .pull-right |
27 | 27 | .span3#votes= render 'votes/votes_block', votable: @merge_request |
28 | 28 | |
29 | -.back_link | |
29 | +.back-link | |
30 | 30 | = link_to project_merge_requests_path(@project) do |
31 | 31 | ← To merge requests | ... | ... |
app/views/projects/milestones/_form.html.haml
1 | -%h3.page_title= @milestone.new_record? ? "New Milestone" : "Edit Milestone ##{@milestone.id}" | |
2 | -.back_link | |
1 | +%h3.page-title= @milestone.new_record? ? "New Milestone" : "Edit Milestone ##{@milestone.id}" | |
2 | +.back-link | |
3 | 3 | = link_to project_milestones_path(@project) do |
4 | 4 | ← To milestones |
5 | 5 | ... | ... |
app/views/projects/milestones/index.html.haml
app/views/projects/milestones/show.html.haml
app/views/projects/network/_head.html.haml
app/views/projects/services/_form.html.haml
app/views/projects/services/index.html.haml
app/views/projects/show.html.haml
app/views/projects/snippets/_form.html.haml
app/views/projects/snippets/index.html.haml
app/views/projects/snippets/show.html.haml
app/views/projects/team_members/_form.html.haml
app/views/projects/team_members/import.html.haml
app/views/projects/team_members/index.html.haml
app/views/projects/wikis/_form.html.haml
app/views/projects/wikis/_new.html.haml
app/views/projects/wikis/edit.html.haml
app/views/projects/wikis/empty.html.haml
app/views/projects/wikis/git_access.html.haml
app/views/projects/wikis/history.html.haml
app/views/projects/wikis/pages.html.haml
app/views/projects/wikis/show.html.haml
app/views/public/projects/index.html.haml
app/views/snippets/_form.html.haml
app/views/snippets/current_user_index.html.haml
app/views/snippets/index.html.haml
app/views/snippets/show.html.haml
app/views/snippets/user_index.html.haml