Commit c44aad85 authored by Vitaly Slobodin's avatar Vitaly Slobodin

Merge branch 'toon-show-latest-button' into 'master'

Move "Show latest version" button to the left

See merge request gitlab-org/gitlab!65338
parents f64f70e6 d1c4e90e
...@@ -99,7 +99,7 @@ export default { ...@@ -99,7 +99,7 @@ export default {
v-gl-tooltip.hover v-gl-tooltip.hover
variant="default" variant="default"
icon="file-tree" icon="file-tree"
class="gl-mr-3 js-toggle-tree-list" class="gl-mr-3 js-toggle-tree-list btn-icon"
:title="toggleFileBrowserTitle" :title="toggleFileBrowserTitle"
:aria-label="toggleFileBrowserTitle" :aria-label="toggleFileBrowserTitle"
:selected="showTreeList" :selected="showTreeList"
...@@ -109,7 +109,7 @@ export default { ...@@ -109,7 +109,7 @@ export default {
{{ __('Viewing commit') }} {{ __('Viewing commit') }}
<gl-link :href="commit.commit_url" class="monospace">{{ commit.short_id }}</gl-link> <gl-link :href="commit.commit_url" class="monospace">{{ commit.short_id }}</gl-link>
</div> </div>
<div v-if="hasNeighborCommits" class="commit-nav-buttons ml-3"> <div v-if="hasNeighborCommits" class="commit-nav-buttons">
<gl-button-group> <gl-button-group>
<gl-button <gl-button
:href="previousCommitUrl" :href="previousCommitUrl"
...@@ -160,20 +160,21 @@ export default { ...@@ -160,20 +160,21 @@ export default {
/> />
</template> </template>
</gl-sprintf> </gl-sprintf>
<gl-button
v-if="commit || startVersion"
:href="latestVersionPath"
variant="default"
class="js-latest-version"
:class="{ 'gl-ml-3': commit && !hasNeighborCommits }"
>
{{ __('Show latest version') }}
</gl-button>
<div v-if="hasChanges" class="inline-parallel-buttons d-none d-md-flex ml-auto"> <div v-if="hasChanges" class="inline-parallel-buttons d-none d-md-flex ml-auto">
<diff-stats <diff-stats
:diff-files-count-text="diffFilesCountText" :diff-files-count-text="diffFilesCountText"
:added-lines="addedLines" :added-lines="addedLines"
:removed-lines="removedLines" :removed-lines="removedLines"
/> />
<gl-button
v-if="commit || startVersion"
:href="latestVersionPath"
variant="default"
class="gl-mr-3 js-latest-version"
>
{{ __('Show latest version') }}
</gl-button>
<gl-button <gl-button
v-show="whichCollapsedTypes.any" v-show="whichCollapsedTypes.any"
variant="default" variant="default"
......
...@@ -183,6 +183,8 @@ ...@@ -183,6 +183,8 @@
} }
.commit-nav-buttons { .commit-nav-buttons {
margin: 0 0.5rem;
a.btn, a.btn,
button { button {
// See: https://gitlab.com/gitlab-org/gitlab-ui/-/issues/730 // See: https://gitlab.com/gitlab-org/gitlab-ui/-/issues/730
......
...@@ -706,7 +706,7 @@ $tabs-holder-z-index: 250; ...@@ -706,7 +706,7 @@ $tabs-holder-z-index: 250;
.mr-version-dropdown, .mr-version-dropdown,
.mr-version-compare-dropdown { .mr-version-compare-dropdown {
margin: 0 7px; margin: 0 0.5rem;
} }
.dropdown-title { .dropdown-title {
...@@ -715,7 +715,7 @@ $tabs-holder-z-index: 250; ...@@ -715,7 +715,7 @@ $tabs-holder-z-index: 250;
// Shortening button height by 1px to make compare-versions // Shortening button height by 1px to make compare-versions
// header 56px and fit into our 8px design grid // header 56px and fit into our 8px design grid
button { .btn {
height: 34px; height: 34px;
} }
......
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