Commit b084dceb authored by Phil Hughes's avatar Phil Hughes

alignment updates

added tooltip to more actions
parent 664003f5
...@@ -100,7 +100,7 @@ export default { ...@@ -100,7 +100,7 @@ export default {
@dblclick="fileAction" @dblclick="fileAction"
@click="openFileInEditor" @click="openFileInEditor"
> >
<span class="multi-file-commit-list-file-path"> <span class="multi-file-commit-list-file-path d-flex align-items-center">
<icon <icon
:name="iconName" :name="iconName"
:size="16" :size="16"
......
...@@ -32,7 +32,7 @@ export default { ...@@ -32,7 +32,7 @@ export default {
:aria-label="__('Stage changes')" :aria-label="__('Stage changes')"
:title="__('Stage changes')" :title="__('Stage changes')"
type="button" type="button"
class="btn btn-blank append-right-5" class="btn btn-blank append-right-5 d-flex align-items-center"
data-container="body" data-container="body"
@click.stop="stageChange(path)" @click.stop="stageChange(path)"
> >
...@@ -43,8 +43,9 @@ export default { ...@@ -43,8 +43,9 @@ export default {
</button> </button>
<button <button
v-tooltip v-tooltip
:title="__('More actions')"
type="button" type="button"
class="btn btn-blank" class="btn btn-blank d-flex align-items-center"
data-container="body" data-container="body"
data-toggle="dropdown" data-toggle="dropdown"
> >
......
...@@ -32,7 +32,7 @@ export default { ...@@ -32,7 +32,7 @@ export default {
:aria-label="__('Unstage changes')" :aria-label="__('Unstage changes')"
:title="__('Unstage changes')" :title="__('Unstage changes')"
type="button" type="button"
class="btn btn-blank" class="btn btn-blank d-flex align-items-center"
data-container="body" data-container="body"
@click="unstageChange(path)" @click="unstageChange(path)"
> >
......
...@@ -621,9 +621,13 @@ ...@@ -621,9 +621,13 @@
} }
.multi-file-discard-btn { .multi-file-discard-btn {
top: 0; top: 4px;
right: 8px; right: 8px;
bottom: 0; bottom: 4px;
svg {
top: 0;
}
} }
.multi-file-commit-form { .multi-file-commit-form {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment