mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-22 19:16:39 +10:00
Increase input padding and fit issue form in laptop screen
This commit is contained in:
@@ -189,3 +189,11 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.alert {
|
||||
a {
|
||||
@extend .alert-link;
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -93,8 +93,8 @@ $font-size-base: $gl-font-size;
|
||||
//
|
||||
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
||||
|
||||
// $padding-base-vertical: 6px
|
||||
// $padding-base-horizontal: 12px
|
||||
$padding-base-vertical: 8px;
|
||||
$padding-base-horizontal: 14px;
|
||||
|
||||
// $padding-large-vertical: 10px
|
||||
// $padding-large-horizontal: 16px
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
*/
|
||||
.issue-form, .merge-request-form, .wiki-form {
|
||||
.description {
|
||||
height: 20em;
|
||||
height: 18em;
|
||||
border-top-left-radius: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
.select2-choice {
|
||||
background: #FFF;
|
||||
border-color: #BBB;
|
||||
padding: 6px 12px;
|
||||
padding: 8px 14px;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
height: auto;
|
||||
@@ -20,7 +20,7 @@
|
||||
}
|
||||
|
||||
.select2-container-multi .select2-choices .select2-search-field input {
|
||||
padding: 6px 12px;
|
||||
padding: 8px 14px;
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
height: auto;
|
||||
|
||||
@@ -99,11 +99,6 @@
|
||||
margin-right: 45px;
|
||||
}
|
||||
|
||||
.btn,
|
||||
.form-control {
|
||||
padding: 6px 9px;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
cursor: auto;
|
||||
@extend .monospace;
|
||||
|
||||
@@ -50,6 +50,7 @@
|
||||
= f.select(:milestone_id, milestone_options(issuable),
|
||||
{ include_blank: 'Select milestone' }, { class: 'select2' })
|
||||
- else
|
||||
.prepend-top-10
|
||||
%span.light No open milestones available.
|
||||
|
||||
- if can? current_user, :admin_milestone, issuable.project
|
||||
@@ -63,6 +64,7 @@
|
||||
= f.collection_select :label_ids, issuable.project.labels.all, :id, :name,
|
||||
{ selected: issuable.label_ids }, multiple: true, class: 'select2'
|
||||
- else
|
||||
.prepend-top-10
|
||||
%span.light No labels yet.
|
||||
|
||||
- if can? current_user, :admin_label, issuable.project
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
- else
|
||||
= link_to title, '#'
|
||||
|
||||
%ul.blob-commit-info.alert.alert-info.hidden-xs
|
||||
%ul.blob-commit-info.well.hidden-xs
|
||||
- blob_commit = @repository.last_commit_for_path(@commit.id, blob.path)
|
||||
= render blob_commit, project: @project
|
||||
|
||||
|
||||
Reference in New Issue
Block a user