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
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-10 21:59:51 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-10 21:59:51 +0400
commitde55d7aa577e52315866f605a08c43e547877eec (patch)
tree37fa92432f1f1ea8d86eb1a9bf79fd415d3a7e48 /app
parent1c23333f344205f97fc909af724ed88c2ee45c2b (diff)
issue-box content can be shown on sm devices easily
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/issues/_issue_context.html.haml4
-rw-r--r--app/views/projects/merge_requests/show/_context.html.haml4
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/projects/issues/_issue_context.html.haml b/app/views/projects/issues/_issue_context.html.haml
index 425dcb45ddf..d7987f43fbb 100644
--- a/app/views/projects/issues/_issue_context.html.haml
+++ b/app/views/projects/issues/_issue_context.html.haml
@@ -1,6 +1,6 @@
= form_for [@project, @issue], remote: true, html: {class: 'edit-issue inline-update'} do |f|
.row
- .col-md-6
+ .col-sm-6
%strong.append-right-10
Assignee:
@@ -11,7 +11,7 @@
- else
None
- .col-md-6.text-right
+ .col-sm-6.text-right
%strong.append-right-10
Milestone:
- if can?(current_user, :modify_issue, @issue)
diff --git a/app/views/projects/merge_requests/show/_context.html.haml b/app/views/projects/merge_requests/show/_context.html.haml
index 5c6734fd24b..ab00b34242a 100644
--- a/app/views/projects/merge_requests/show/_context.html.haml
+++ b/app/views/projects/merge_requests/show/_context.html.haml
@@ -1,6 +1,6 @@
= form_for [@project, @merge_request], remote: true, html: {class: 'edit-merge_request inline-update'} do |f|
.row
- .col-md-6
+ .col-sm-6
%strong.append-right-10
Assignee:
@@ -11,7 +11,7 @@
- else
None
- .col-md-6.text-right
+ .col-sm-6.text-right
%strong.append-right-10
Milestone:
- if can?(current_user, :modify_merge_request, @merge_request)