]> Untitled Git - lemmy-ui.git/commitdiff
Merge remote-tracking branch 'lemmy/main' into fix/a11y-fixes-2
authorJay Sitter <jay@jaysitter.com>
Sun, 25 Jun 2023 05:05:36 +0000 (01:05 -0400)
committerJay Sitter <jay@jaysitter.com>
Sun, 25 Jun 2023 05:05:36 +0000 (01:05 -0400)
* lemmy/main: (38 commits)
  chore: Empty commit to re-trigger Woodpecker
  fix(a11y): Fix non-list item being inside ul list in navbar
  fix: Fix non-unique ID attribute on re-used element
  fix: Fix another class
  fix: Fix some Bootstrap 5 font classes
  fix: Fix some emoji escape logic
  fix: Button doesn't need tabindex
  fix: Fix incorrect function reference
  fix: Emoji picker can be closed with escape key, other a11y fixes
  fix: Fix some a11y issues on jump to content button
  fix: Clarify a comment
  fix: Fix merge error
  Remove federation worker count
  fix: Add triangle alert icon to language warning
  added litely-compact
  changed where custom compact code goes
  added darkly-compact - issue 552
  Refactor first load handling
  Fix issue when navigating awat from settings
  Give function better name
  ...

1  2 
src/assets/css/main.css
src/shared/components/common/emoji-picker.tsx
src/shared/components/common/image-upload-form.tsx

Simple merge
index 8ece39e93b3ba08fe93a3f311550db6c85715816,283a87ede9fad8a17ae165eb5b96484fdb3a84dd..e8005ccc8d4bc04d216b4c6b428acc618bf9b4e0
@@@ -33,15 -33,10 +33,12 @@@ export class ImageUploadForm extends Co
    render() {
      return (
        <form className="image-upload-form d-inline">
-         <label
-           htmlFor={this.id}
-           className="pointer text-muted small font-weight-bold"
-         >
+         <label htmlFor={this.id} className="pointer text-muted small fw-bold">
            {this.props.imageSrc ? (
              <span className="d-inline-block position-relative">
 +              {/* TODO: Create "Current Iamge" translation for alt text */}
                <img
 +                alt=""
                  src={this.props.imageSrc}
                  height={this.props.rounded ? 60 : ""}
                  width={this.props.rounded ? 60 : ""}