mobile fixes: close charlist on char select, hide L/R panel locks, larger charlist back button
| @@ -10,6 +10,15 @@ | |||
| 10 | flex-basis: 100%; | 10 | flex-basis: 100%; |
| 11 | } | 11 | } |
| 12 | 12 | ||
| 13 | #rm_button_panel_pin_div, | ||
| 14 | #lm_button_panel_pin_div{ | ||
| 15 | display: none; | ||
| 16 | } | ||
| 17 | |||
| 18 | #rm_button_characters { | ||
| 19 | font-size: 3em; | ||
| 20 | } | ||
| 21 | |||
| 13 | 22 | ||
| 14 | #send_form.compact #leftSendForm, | 23 | #send_form.compact #leftSendForm, |
| 15 | #send_form.compact #rightSendForm { | 24 | #send_form.compact #rightSendForm { |
| @@ -812,6 +812,10 @@ export async function selectCharacterById(id, { switchMenu = true } = {}) { | |||
| 812 | await unshallowCharacter(this_chid); | 812 | await unshallowCharacter(this_chid); |
| 813 | select_selected_character(this_chid, { switchMenu }); | 813 | select_selected_character(this_chid, { switchMenu }); |
| 814 | } | 814 | } |
| 815 | |||
| 816 | if (isMobile()) { | ||
| 817 | $('#rightNavDrawerIcon').trigger('click'); | ||
| 818 | } | ||
| 815 | } | 819 | } |
| 816 | 820 | ||
| 817 | function getBackBlock() { | 821 | function getBackBlock() { |