alignment updates
added tooltip to more actions
This commit is contained in:
parent
664003f509
commit
b084dceb79
4 changed files with 11 additions and 6 deletions
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
>
|
||||
|
|
|
@ -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)"
|
||||
>
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue