diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-06-21 02:01:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 06:01:00 +0000 |
commit | 1c609d972ae76f8779190d7a3621f77a664a6dec (patch) | |
tree | dfcd1d306dfff79e7fabf809c9f1d8aa5fbbbc8e /ext/action-popup.html | |
parent | 051347488237b8dffd2f0e9c93afb36fca255513 (diff) |
Add profile selector to mobile action-popup (#1105)24.6.21.0
Diffstat (limited to 'ext/action-popup.html')
-rw-r--r-- | ext/action-popup.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ext/action-popup.html b/ext/action-popup.html index 64e3c21f..7b3d3275 100644 --- a/ext/action-popup.html +++ b/ext/action-popup.html @@ -33,8 +33,8 @@ <div class="nav-button-container"> <button type="button" class="nav-button action-select-profile" title="Change primary profile" hidden> <span class="icon" data-icon="profile"></span> - <span class="profile-select-container"><select class="profile-select" id="profile-select"> - <optgroup label="Primary Profile" id="profile-select-option-group"></optgroup> + <span class="profile-select-container"><select class="profile-select"> + <optgroup label="Primary Profile" class="profile-select-option-group"></optgroup> </select></span> </button> <a tabindex="0" class="nav-button action-open-settings" title="Settings" data-hotkey='["global:openSettingsPage","title","Settings ({0})"]'> @@ -70,6 +70,13 @@ <span class="toggle-handle"></span> </div> </label> + <a tabindex="0" class="link-group action-select-profile"> + <span class="link-group-icon" data-icon="profile"></span> + <span class="link-group-label">Profile</span> + <span class="profile-select-container"><select class="profile-select"> + <optgroup label="Primary Profile" class="profile-select-option-group"></optgroup> + </select></span> + </a> <a tabindex="0" class="link-group action-open-settings"> <span class="link-group-icon" data-icon="cog"></span> <span class="link-group-label">Settings</span> |