- 05 Feb, 2022 5 commits
- 04 Feb, 2022 5 commits
-
-
J. Ryan Stinnett authored
-
David Baker authored
Log in/outbound RTP stats so we can see ifn we're sending & receiving video, and log when we successfully play the video element.
-
Šimon Brandner authored
-
Michael Telatynski authored
Co-authored-by:
Aaron Raimist <aaron@raim.ist>
-
Šimon Brandner authored
-
- 03 Feb, 2022 6 commits
-
-
Šimon Brandner authored
-
Germain authored
-
Michael Telatynski authored
-
Michael Telatynski authored
-
David Baker authored
* Handle virtual rooms when showing a notification * This should be using sharedInstance() Co-authored-by:
Andrew Morgan <andrew@amorgan.xyz>
-
Michael Telatynski authored
-
- 02 Feb, 2022 9 commits
-
-
Germain authored
-
Michael Telatynski authored
-
Kerry authored
* use jest@27.4.0, replace jest-environment-jsdom-sixteen with jest-environment-jsdom Signed-off-by:
Kerry Archibald <kerrya@element.io> * polyfill setImmediate Signed-off-by:
Kerry Archibald <kerrya@element.io> * remove done from async test cases * useRealTimers in test relying on promise flushing Signed-off-by:
Kerry Archibald <kerrya@element.io> * remove jest environment file Signed-off-by:
Kerry Archibald <kerrya@element.io> * replace ts-jest mocked with jest utils mocked Signed-off-by:
Kerry Archibald <kerrya@element.io>
-
Andy Balaam authored
-
Andy Balaam authored
-
Kerry authored
* make Login-test tsx, fix leaks Signed-off-by:
Kerry Archibald <kerrya@element.io> * missed lint Signed-off-by:
Kerry Archibald <kerrya@element.io>
-
Michael Telatynski authored
-
Andy Balaam authored
* Render a CollapsibleButton's children (needed by UploadButton) * Make UploadButton ready to live inside an overflow menu * Always show overflow menu in composer: main buttons are emoji and attach * Re-order composer buttons as per design * Re-word composer button captions to be simple nouns * Don't rotate More options button when clicked * Move the composer menu and dialogs 16px in from right * Reduce shadow on composer More menu * From review: remove else clause * From review: take input out of button * Update test snapshots * Update snapshots
-
Michael Telatynski authored
-
- 01 Feb, 2022 15 commits
-
-
Šimon Brandner authored
-
Eric Eastwood authored
Fix https://github.com/vector-im/element-web/issues/20801 Regressed in https://github.com/matrix-org/matrix-react-sdk/pull/7339 Relevant styles were first added in https://github.com/matrix-org/matrix-react-sdk/pull/4858 (context behind why the original styles were added) --- ## Cause Battling CSS specificity between the default and compact styles, https://specificity.keegan.st/ Known good (On `app.element.io` (expected)): ```css // 0 3 0 .mx_IconizedContextMenu .mx_IconizedContextMenu_optionList .mx_AccessibleButton { padding-top: 12px; padding-bottom: 12px; } // Compact styles override our default rules because they come // after the other styles (source order) and have the same specificity // 0 3 0 .mx_IconizedContextMenu.mx_IconizedContextMenu_compact .mx_IconizedContextMenu_optionList > * { padding: 8px 16px 8px 11px; } ``` Bad (On `develop` (broken)): ```css // Default rules always override because they have higher specificity. // The `:not()` selector doesn't add any extra specificity but the selectors inside the `:not(...)` do. // 0 4 0 .mx_IconizedContextMenu .mx_IconizedContextMenu_optionList .mx_AccessibleButton:not(.mx_AccessibleButton_hasKind) { padding-top: 12px; padding-bottom: 12px; } // 0 3 0 .mx_IconizedContextMenu.mx_IconizedContextMenu_compact .mx_IconizedContextMenu_optionList > * { padding: 8px 16px 8px 11px; } ```
-
RiotRobot authored
-
RiotRobot authored
-
RiotRobot authored
-
RiotRobot authored
-
Michael Telatynski authored
-
David Baker authored
* Fix the sticker picker Don't stop user widgets on room change: they're not room-specific. Fixes https://github.com/vector-im/element-web/issues/20797 * Use 'userWidget' prop rather than roomId being defined
-
David Baker authored
Co-authored-by:
Michael Telatynski <7t3chguy@gmail.com>
-
David Baker authored
Co-authored-by:
David Baker <dave@matrix.org> Co-authored-by:
Michael Telatynski <7t3chguy@gmail.com>
-
David Baker authored
* Fix the sticker picker Don't stop user widgets on room change: they're not room-specific. Fixes https://github.com/vector-im/element-web/issues/20797 * Use 'userWidget' prop rather than roomId being defined
-
Michael Telatynski authored
-
Michael Telatynski authored
-
Germain authored
-
Michael Telatynski authored
Co-authored-by:
David Baker <dave@matrix.org>
-