alignment updates

added tooltip to more actions
This commit is contained in:
Phil Hughes 2018-06-13 16:20:43 +01:00
parent 664003f509
commit b084dceb79
No known key found for this signature in database
GPG Key ID: 32245528C52E0F9F
4 changed files with 11 additions and 6 deletions

View File

@ -100,7 +100,7 @@ export default {
@dblclick="fileAction"
@click="openFileInEditor"
>
<span class="multi-file-commit-list-file-path">
<span class="multi-file-commit-list-file-path d-flex align-items-center">
<icon
:name="iconName"
:size="16"

View File

@ -32,7 +32,7 @@ export default {
:aria-label="__('Stage changes')"
:title="__('Stage changes')"
type="button"
class="btn btn-blank append-right-5"
class="btn btn-blank append-right-5 d-flex align-items-center"
data-container="body"
@click.stop="stageChange(path)"
>
@ -43,8 +43,9 @@ export default {
</button>
<button
v-tooltip
:title="__('More actions')"
type="button"
class="btn btn-blank"
class="btn btn-blank d-flex align-items-center"
data-container="body"
data-toggle="dropdown"
>

View File

@ -32,7 +32,7 @@ export default {
:aria-label="__('Unstage changes')"
:title="__('Unstage changes')"
type="button"
class="btn btn-blank"
class="btn btn-blank d-flex align-items-center"
data-container="body"
@click="unstageChange(path)"
>

View File

@ -621,9 +621,13 @@
}
.multi-file-discard-btn {
top: 0;
top: 4px;
right: 8px;
bottom: 0;
bottom: 4px;
svg {
top: 0;
}
}
.multi-file-commit-form {