This commit sets the focus outline offset in action and icon buttons
to 0, following the discussions at CZO concerning the visuals and
jagged corners in some cases when the outline offset was applied.
This commit adds the same styles to the data export loader as we have
for the users table loader, ensuring that the spinner is sized
correctly and maintains consistency across the tables we have in
settings panel.
This commit is a follow-up to 18b2427937,
which removed the `alert-error` class from the Bootstrap CSS, while the
`web/src/ui_report.ts` module still used this styling for the error
banners.
This commit adds the `alert-error` class back to the Bootstrap CSS,
as a temporary solution until these alerts are migrated to the new
banner component system.
The instructions for the desktop and mobile apps for this section
are for when the user has already logged into an initial Zulip
organization, so we update the section header to be "Log in to a
new organization" instead of "Log in for the first time".
For both apps, if the user has not logged in to any Zulip
organization, then the apps default to the log in prompts, so
there is no need to add a set of instructions for that case.
Follow-up to feedback in #34869.
This commit fixes the use of `/json/...` by replacing
it with the correct `/api/v1/...`. Also removes
unnecessary `login_user` call when using `api_patch`.
Since `tus-js-client` caches the uploaded file data, uploading
the same file doesn't trigger our backend hooks and thus we
don't know which file user has selected.
To fix it, we removed the cached file data once it has been
successfully uploaded.
Deletes the mobile tab of the "Forward message" section as that is
not a named feature in the mobile app. Adds a tip about setting a
different topic if the user is in the channel view of the mobile
app.
Part of #34748.
Also, updates the options in 'Filter by topic status'
for the web app as "Unmuted topics" has been changed
to "Standard view".
Deletes static/images/help/mobile-expand-more.svg,
static/images/help/mobile-expand-less.svg, and
static/images/help/mobile-inbox-icon.svg as they are
no longer used.
Part of #34748.
Adds mobile-camera and mobile-image to shared icons.
Deletes static/images/help/mobile-camera-icon.svg,
static/images/help/mobile-image-icon.svg, and
static/images/help/mobile-paperclip.svg as they are no
longer used.
Part of #34748.
Adds mobile-menu icon to shared icons.
Adds "mobile-help" class for CSS rule that updates the icon color
in the help documentation when describing the Flutter app.
Part of #34748.
Adds a section to "View Zulip version" article for viewing the
mobile app version, and adds the mobile app installation guide
to the related articles section.
Part of #34748.
This commit fixes the use of `/json/streams/...` by replacing
it with the correct `/api/v1/streams/...`. Also removes
unnecessary `login_user` call when using `api_patch`.
This commit adds the `banner-wrapper` class to the parent container of the
banner.
Added `margin-bottom: 10px` to the banner to improve its appearance.
Placed the event listener at the correct location with the $container
element so that it binds only once. Previously, it was being bound
every time the settings page was loaded, causing multiple event listeners
to be attached to the same element.
Additionally, the banner was not rendering when opening
Org settings > DEFAULT USER SETTINGS directly,
and this has been fixed by ensuring the banner is rendered correctly.