From f258f4f742ec9e172ecf4f9482e05fd2deee2b04 Mon Sep 17 00:00:00 2001 From: dimitrieh Date: Fri, 27 Jan 2017 16:45:43 +0100 Subject: Remove hover animation from row elements --- app/assets/stylesheets/framework/animations.scss | 12 ++++++++---- .../26863-Remove-hover-animation-from-row-elements.yml | 4 ++++ 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 changelogs/unreleased/26863-Remove-hover-animation-from-row-elements.yml diff --git a/app/assets/stylesheets/framework/animations.scss b/app/assets/stylesheets/framework/animations.scss index 8d38fc78a19..b1003ecf420 100644 --- a/app/assets/stylesheets/framework/animations.scss +++ b/app/assets/stylesheets/framework/animations.scss @@ -116,11 +116,15 @@ a { @include transition(background-color, color, border); } -.tree-table td, -.well-list > li { - @include transition(background-color, border-color); -} +// .tree-table td, +// .well-list > li { +// @include transition(background-color, border-color); +// } .stage-nav-item { @include transition(background-color, box-shadow); } + +.nav-sidebar a { + transition: none; +} diff --git a/changelogs/unreleased/26863-Remove-hover-animation-from-row-elements.yml b/changelogs/unreleased/26863-Remove-hover-animation-from-row-elements.yml new file mode 100644 index 00000000000..8dfabf87c2a --- /dev/null +++ b/changelogs/unreleased/26863-Remove-hover-animation-from-row-elements.yml @@ -0,0 +1,4 @@ +--- +title: Remove hover animation from row elements +merge_request: +author: -- cgit v1.2.1 From f8efb3ba7d913562c6917b32c5523e9877a2f4b5 Mon Sep 17 00:00:00 2001 From: dimitrieh Date: Fri, 27 Jan 2017 16:46:28 +0100 Subject: removed commented out scss --- app/assets/stylesheets/framework/animations.scss | 5 ----- 1 file changed, 5 deletions(-) diff --git a/app/assets/stylesheets/framework/animations.scss b/app/assets/stylesheets/framework/animations.scss index b1003ecf420..a5f15f4836d 100644 --- a/app/assets/stylesheets/framework/animations.scss +++ b/app/assets/stylesheets/framework/animations.scss @@ -116,11 +116,6 @@ a { @include transition(background-color, color, border); } -// .tree-table td, -// .well-list > li { -// @include transition(background-color, border-color); -// } - .stage-nav-item { @include transition(background-color, box-shadow); } -- cgit v1.2.1 From 049d603e1b581ddacc9522814c8827e2453c50a7 Mon Sep 17 00:00:00 2001 From: dimitrieh Date: Mon, 6 Feb 2017 13:00:31 +0100 Subject: Removed additional dropdown list animations --- app/assets/stylesheets/framework/animations.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/framework/animations.scss b/app/assets/stylesheets/framework/animations.scss index a5f15f4836d..be90c82dda7 100644 --- a/app/assets/stylesheets/framework/animations.scss +++ b/app/assets/stylesheets/framework/animations.scss @@ -120,6 +120,9 @@ a { @include transition(background-color, box-shadow); } -.nav-sidebar a { +.nav-sidebar a, +.dropdown-menu a, +.dropdown-menu button, +.dropdown-menu-nav a { transition: none; } -- cgit v1.2.1