Fix width on comment notifications dropdown

- Other languages' word can break the dropdown's layout
pull/7509/head
Krzysztof Jeziorny 2021-06-02 13:45:29 +02:00 zatwierdzone przez LB Johnston
rodzic 592408ac3d
commit cf064f2b99
4 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -34,6 +34,7 @@ Changelog
* Fix: Screen readers can now access login screen field labels (Amy Chan)
* Fix: Admin breadcrumbs home icon now shows for users with access to a subtree only (Stefan Hammer)
* Fix: Add handling of invalid inline styles submitted to `RichText` so `ConfigException` is not thrown (Alex Tomkins)
* Fix: Ensure comment notifications dropdown handles longer translations without overflowing content (Krzysztof Jeziorny)
2.14.1 (12.08.2021)

Wyświetl plik

@ -536,6 +536,7 @@ Contributors
* Onkar Apte
* Justin Slay
* Desai Akshata
* Krzysztof Jeziorny
Translators
===========

Wyświetl plik

@ -36,7 +36,7 @@
background-color: $color-text-base;
padding: 20px;
border-radius: 6px;
width: 260px;
min-width: 260px;
box-sizing: border-box;
&__title {

Wyświetl plik

@ -49,6 +49,7 @@ Bug fixes
* Screen readers can now access login screen field labels (Amy Chan)
* Admin breadcrumbs home icon now shows for users with access to a subtree only (Stefan Hammer)
* Add handling of invalid inline styles submitted to ``RichText`` so ``ConfigException`` is not thrown (Alex Tomkins)
* Ensure comment notifications dropdown handles longer translations without overflowing content (Krzysztof Jeziorny)
Upgrade considerations
======================