From 721215973a5d317ed587c9ee9e63b6fb97afacf8 Mon Sep 17 00:00:00 2001 From: Terry Smith <52763493+tshfx@users.noreply.github.com> Date: Mon, 15 Jul 2019 23:36:57 -0300 Subject: Re enable the setMouseUserState styles. (#6860) Typo --- ui/app/css/itcss/generic/index.scss | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ui/app/css/itcss/generic/index.scss') diff --git a/ui/app/css/itcss/generic/index.scss b/ui/app/css/itcss/generic/index.scss index 8b282aa1e..e0cc881cb 100644 --- a/ui/app/css/itcss/generic/index.scss +++ b/ui/app/css/itcss/generic/index.scss @@ -43,6 +43,12 @@ textarea:focus { outline: none; } +.mouse-user-styles { + button:focus { + outline: none; + } +} + /* stylelint-disable */ #app-content { overflow-x: hidden; -- cgit From 33071e3014d9b207c0264596a4b7c203982a7bc1 Mon Sep 17 00:00:00 2001 From: Terry Smith <52763493+tshfx@users.noreply.github.com> Date: Tue, 16 Jul 2019 22:28:01 -0300 Subject: Targets base inputs and only prevents outline if user uses a mouse (#6871) --- ui/app/css/itcss/generic/index.scss | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'ui/app/css/itcss/generic/index.scss') diff --git a/ui/app/css/itcss/generic/index.scss b/ui/app/css/itcss/generic/index.scss index e0cc881cb..771008205 100644 --- a/ui/app/css/itcss/generic/index.scss +++ b/ui/app/css/itcss/generic/index.scss @@ -38,13 +38,15 @@ html { display: flex; } -input:focus, -textarea:focus { - outline: none; -} - .mouse-user-styles { - button:focus { + button:focus, + input:focus, + textarea:focus, + .unit-input__input, + .account-list-item__account-primary-balance, + .account-list-item__input, + .currency-display__input + { outline: none; } } -- cgit From 9d5be5d29fcdab1273e30810f87de4624b8622a1 Mon Sep 17 00:00:00 2001 From: Dan J Miller Date: Fri, 2 Aug 2019 18:01:26 -0230 Subject: New notification fixes (#6955) * Replace use of backup-notification with use of home notification * Pin notifications relative to window * Remove unneeded isRequired condition on some home.component properties * Refactor rendering of home notifications * UX for multiple notifications * Adds dismissal to provider request notification. * Fix test failures The e2e tests have been updated to reference `home-notification` classnames instead of the removed `background-notification`. The active tab proptypes and default values were updated as well. --- ui/app/css/itcss/generic/index.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ui/app/css/itcss/generic/index.scss') diff --git a/ui/app/css/itcss/generic/index.scss b/ui/app/css/itcss/generic/index.scss index 771008205..aaf6c7c0e 100644 --- a/ui/app/css/itcss/generic/index.scss +++ b/ui/app/css/itcss/generic/index.scss @@ -130,3 +130,14 @@ input.form-control { overflow: hidden; text-overflow: ellipsis; } + +.pinned-to-bottom { + position: absolute; + bottom: 0px; +} + +.pinned-to-bottom-right { + position: absolute; + bottom: 0px; + right: 0; +} -- cgit