Switch from 48px weight 600 material symbol icons to 24px weight 400 icons (#28064)

This commit is contained in:
Claire 2024-01-12 21:16:48 +01:00 committed by GitHub
parent 1070804a1a
commit 6bbcd9348e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
250 changed files with 649 additions and 313 deletions

View file

@ -6,8 +6,8 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { connect } from 'react-redux';
import AddIcon from '@material-symbols/svg-600/outlined/add.svg?react';
import CloseIcon from '@material-symbols/svg-600/outlined/close.svg?react';
import AddIcon from 'mastodon/../material-icons/400-24px/add.svg?react';
import CloseIcon from 'mastodon/../material-icons/400-24px/close.svg?react';
import { removeFromListEditor, addToListEditor } from '../../../actions/lists';
import { Avatar } from '../../../components/avatar';

View file

@ -5,7 +5,7 @@ import { defineMessages, injectIntl } from 'react-intl';
import { connect } from 'react-redux';
import CheckIcon from '@material-symbols/svg-600/outlined/check.svg?react';
import CheckIcon from 'mastodon/../material-icons/400-24px/check.svg?react';
import { changeListEditorTitle, submitListEditor } from '../../../actions/lists';
import { IconButton } from '../../../components/icon_button';

View file

@ -7,9 +7,8 @@ import classNames from 'classnames';
import { connect } from 'react-redux';
import CancelIcon from '@material-symbols/svg-600/outlined/cancel.svg?react';
import SearchIcon from '@material-symbols/svg-600/outlined/search.svg?react';
import CancelIcon from 'mastodon/../material-icons/400-24px/cancel.svg?react';
import SearchIcon from 'mastodon/../material-icons/400-24px/search.svg?react';
import { Icon } from 'mastodon/components/icon';
import { fetchListSuggestions, clearListSuggestions, changeListSuggestions } from '../../../actions/lists';