Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/page_bundles/boards.scss')
-rw-r--r--app/assets/stylesheets/page_bundles/boards.scss23
1 files changed, 10 insertions, 13 deletions
diff --git a/app/assets/stylesheets/page_bundles/boards.scss b/app/assets/stylesheets/page_bundles/boards.scss
index 428bd90ddd7..10183f774b1 100644
--- a/app/assets/stylesheets/page_bundles/boards.scss
+++ b/app/assets/stylesheets/page_bundles/boards.scss
@@ -153,16 +153,16 @@
// pseudo-element that is the same size as our element, then
// animate opacity/transform to give a soothing single pulse
.board-column-highlighted::after {
+ @include gl-focus;
content: '';
position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
+ top: -1px;
+ bottom: -1px;
+ left: -1px;
+ right: -1px;
pointer-events: none;
opacity: 0;
- z-index: -1;
- box-shadow: 0 0 6px 3px $blue-200;
+ border-radius: $border-radius-default;
animation-name: board-column-flash-border;
animation-duration: 1.2s;
animation-fill-mode: forwards;
@@ -173,18 +173,11 @@
0%,
100% {
opacity: 0;
- transform: scale(0.98);
}
25%,
75% {
opacity: 1;
- transform: scale(0.99);
- }
-
- 50% {
- opacity: 1;
- transform: scale(1);
}
}
@@ -476,6 +469,10 @@
.gl-drawer-header {
align-items: flex-start;
}
+
+ .labels-select-wrapper.is-embedded .labels-select-wrapper.is-embedded {
+ width: auto;
+ }
}
.board-header-collapsed-info-icon:hover {