Skip to content

Commit

Permalink
Fix double icons in list modal
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Dec 26, 2024
1 parent 8aba286 commit d5b42ff
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.1.2rc6: 2024-12-26

* Fix double icons in list modal

### 2.1.2rc5: 2024-12-25

* Fix back button background on mobile
Expand Down
7 changes: 4 additions & 3 deletions layout-multiple-columns.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @[email protected]
2.1.2rc5 */
2.1.2rc6 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -3360,8 +3360,9 @@ body .compose-form .compose-form__uploads {
.layout-multiple-columns .account__domain-pill__popout__parts > div:nth-child(2) path,
.layout-multiple-columns .column-header__button .icon-sliders > path,
.compose-form .icon-close > path,
.layout-single-column .item-list .lists__item__title path,
.layout-single-column .lists__item .icon-button.active path {
.layout-multiple-columns .item-list .lists__item__title path,
.layout-multiple-columns .lists__item .icon-button.active path,
.layout-multiple-columns .dialog-modal__content .lists__item path {
display: none;
}

Expand Down
5 changes: 3 additions & 2 deletions layout-single-column.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Mastodon Bird UI by @[email protected]
2.1.2rc5 */
2.1.2rc6 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -3664,7 +3664,8 @@ body .compose-form .compose-form__uploads {
.layout-single-column .column-header__button .icon-sliders > path,
.compose-form .icon-close > path,
.layout-single-column .item-list .lists__item__title path,
.layout-single-column .lists__item .icon-button.active path {
.layout-single-column .lists__item .icon-button.active path,
.layout-single-column .dialog-modal__content .lists__item path {
display: none;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastodon-bird-ui",
"version": "2.1.2rc5",
"version": "2.1.2rc6",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit d5b42ff

Please sign in to comment.