modals: Make settings page selectors more specific.

The `#settings_page .right.show` selector was breaking the Emoji style inputs in Display settings on mobile responsive view.

Fixes #7624.
This commit is contained in:
Cynthia Lin 2017-12-08 15:41:43 -08:00 committed by showell
parent 799e4adf42
commit 9bf0c96e9f
1 changed files with 3 additions and 3 deletions

View File

@ -989,7 +989,7 @@ form#add_new_subscription {
#subscription_overlay .left,
#subscription_overlay .right,
#settings_page .left,
#settings_page .right {
#settings_page .content-wrapper.right {
position: absolute;
display: block;
margin: 0;
@ -1008,7 +1008,7 @@ form#add_new_subscription {
}
#subscription_overlay .right,
#settings_page .right {
#settings_page .content-wrapper.right {
position: absolute;
left: 101%;
@ -1022,7 +1022,7 @@ form#add_new_subscription {
}
#subscription_overlay .right.show,
#settings_page .right.show {
#settings_page .content-wrapper.right.show {
left: 0%;
}