summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-06-13 09:44:14 +0100
committerPhil Hughes <me@iamphill.com>2018-06-14 15:42:55 +0100
commit30ef25452182cb9a956f895595cf0cd4afc51c57 (patch)
tree33035fb1bbf6cd12130b2f925e887c176374c280 /app
parent2d5e47bfc3c6c9a77dbb61694cd65c18f45a11cc (diff)
downloadgitlab-ce-30ef25452182cb9a956f895595cf0cd4afc51c57.tar.gz
fixed hover styling caused by dropdown
fixed karma specs added CHANGELOG item
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/ide/components/commit_sidebar/list.vue2
-rw-r--r--app/assets/javascripts/ide/components/commit_sidebar/list_item.vue19
-rw-r--r--app/assets/stylesheets/pages/repo.scss39
3 files changed, 28 insertions, 32 deletions
diff --git a/app/assets/javascripts/ide/components/commit_sidebar/list.vue b/app/assets/javascripts/ide/components/commit_sidebar/list.vue
index 72c02d1584f..62bff60cbd8 100644
--- a/app/assets/javascripts/ide/components/commit_sidebar/list.vue
+++ b/app/assets/javascripts/ide/components/commit_sidebar/list.vue
@@ -94,7 +94,7 @@ export default {
v-show="fileList.length"
v-tooltip
type="button"
- class="ide-staged-action-btn p-0 order-1 align-items-center rounded-right border-left-0"
+ class="btn btn-default ide-staged-action-btn p-0 order-1 align-items-center"
:class="{
'd-flex': fileList.length
}"
diff --git a/app/assets/javascripts/ide/components/commit_sidebar/list_item.vue b/app/assets/javascripts/ide/components/commit_sidebar/list_item.vue
index 040e2ea5375..5390b21cb57 100644
--- a/app/assets/javascripts/ide/components/commit_sidebar/list_item.vue
+++ b/app/assets/javascripts/ide/components/commit_sidebar/list_item.vue
@@ -54,6 +54,9 @@ export default {
isActive() {
return this.activeFileKey === this.fullKey;
},
+ tooltipTitle() {
+ return this.file.path === this.file.name ? '' : this.file.path;
+ },
},
methods: {
...mapActions([
@@ -85,17 +88,15 @@ export default {
</script>
<template>
- <div
- :class="{
- 'is-active': isActive
- }"
- class="multi-file-commit-list-item"
- >
+ <div class="multi-file-commit-list-item position-relative">
<button
v-tooltip
- :title="file.path"
+ :title="tooltipTitle"
+ :class="{
+ 'is-active': isActive
+ }"
type="button"
- class="multi-file-commit-list-path"
+ class="multi-file-commit-list-path w-100 border-0 ml-0 mr-0"
@dblclick="fileAction"
@click="openFileInEditor"
>
@@ -108,9 +109,9 @@ export default {
</span>
</button>
<component
- class="d-flex ml-auto"
:is="actionComponent"
:path="file.path"
+ class="d-flex position-absolute"
/>
</div>
</template>
diff --git a/app/assets/stylesheets/pages/repo.scss b/app/assets/stylesheets/pages/repo.scss
index 0b0a435b6f4..36a514a5055 100644
--- a/app/assets/stylesheets/pages/repo.scss
+++ b/app/assets/stylesheets/pages/repo.scss
@@ -540,27 +540,12 @@
margin-right: -$grid-size;
min-height: 60px;
- .multi-file-commit-list-item {
- margin-left: 0;
- margin-right: 0;
- }
-
&.form-text.text-muted {
margin-left: 0;
right: 0;
}
}
-.multi-file-commit-list-item {
- &.is-active {
- background-color: $white-normal;
- }
-
- .multi-file-discard-btn {
- margin-top: -2px;
- }
-}
-
.multi-file-addition,
.multi-file-addition-solid {
color: $green-500;
@@ -590,7 +575,7 @@
}
}
-.multi-file-commit-list-item,
+.multi-file-commit-list-path,
.ide-file-list .file {
display: flex;
align-items: center;
@@ -607,11 +592,9 @@
}
.multi-file-commit-list-path {
- padding: 0;
- background: none;
- border: 0;
- text-align: left;
- width: 100%;
+ &.is-active {
+ background-color: $white-normal;
+ }
&:hover,
&:focus {
@@ -637,6 +620,12 @@
}
}
+.multi-file-discard-btn {
+ top: 0;
+ right: 8px;
+ bottom: 0;
+}
+
.multi-file-commit-form {
position: relative;
background-color: $white-light;
@@ -832,7 +821,13 @@
.ide-staged-action-btn {
width: 22px;
- border: 1px solid $white-dark;
+ margin-left: -1px;
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+
+ > svg {
+ top: 0;
+ }
}
.ide-commit-file-count {