css: Remove focus outline on simplebar wrapper elements.

This removes the focus outline on `simplebar-content-wrapper` in
the left sidebar and other places in the app when focused since
it doesn't look visually nice.
This commit is contained in:
Aman Agrawal
2023-02-07 13:37:33 +00:00
committed by Tim Abbott
parent db4bae8050
commit 7a8ddf90cd

View File

@@ -3147,3 +3147,9 @@ select.invite-as {
}
}
}
.simplebar-content-wrapper {
/* `simplebar-content-wrapper` has `tabindex=0` set, which makes it focusable
but we don't want it to have an outline when focused anywhere in the app. */
outline: none;
}