mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
Switch to 24px icons
This commit is contained in:
parent
63c1c17efe
commit
69167fcb46
|
@ -7,7 +7,7 @@ import classNames from 'classnames';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as LinkIcon } from 'mastodon/../material-icons/400-20px/link.svg';
|
||||
import { ReactComponent as LinkIcon } from 'mastodon/../material-icons/400-24px/link.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
const filename = url => url.split('/').pop().split('#')[0].split('?')[0];
|
||||
|
|
|
@ -2,9 +2,9 @@ import PropTypes from 'prop-types';
|
|||
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
import { ReactComponent as GroupsIcon } from 'mastodon/../material-icons/400-20px/group.svg';
|
||||
import { ReactComponent as PersonIcon } from 'mastodon/../material-icons/400-20px/person.svg';
|
||||
import { ReactComponent as SmartToyIcon } from 'mastodon/../material-icons/400-20px/smart_toy.svg';
|
||||
import { ReactComponent as GroupsIcon } from 'mastodon/../material-icons/400-24px/group.svg';
|
||||
import { ReactComponent as PersonIcon } from 'mastodon/../material-icons/400-24px/person.svg';
|
||||
import { ReactComponent as SmartToyIcon } from 'mastodon/../material-icons/400-24px/smart_toy.svg';
|
||||
|
||||
|
||||
export const Badge = ({ icon, label, domain }) => (
|
||||
|
|
|
@ -2,7 +2,7 @@ import { useCallback } from 'react';
|
|||
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
import { ReactComponent as ArrowBackIcon } from 'mastodon/../material-icons/400-20px/arrow_back.svg';
|
||||
import { ReactComponent as ArrowBackIcon } from 'mastodon/../material-icons/400-24px/arrow_back.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { ButtonInTabsBar } from 'mastodon/features/ui/util/columns_context';
|
||||
|
||||
|
|
|
@ -6,12 +6,12 @@ import { FormattedMessage, injectIntl, defineMessages } from 'react-intl';
|
|||
import classNames from 'classnames';
|
||||
import { withRouter } from 'react-router-dom';
|
||||
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-20px/add.svg';
|
||||
import { ReactComponent as ArrowBackIcon } from 'mastodon/../material-icons/400-20px/arrow_back.svg';
|
||||
import { ReactComponent as ChevronLeftIcon } from 'mastodon/../material-icons/400-20px/chevron_left.svg';
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-20px/chevron_right.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as TuneIcon } from 'mastodon/../material-icons/400-20px/tune.svg';
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-24px/add.svg';
|
||||
import { ReactComponent as ArrowBackIcon } from 'mastodon/../material-icons/400-24px/arrow_back.svg';
|
||||
import { ReactComponent as ChevronLeftIcon } from 'mastodon/../material-icons/400-24px/chevron_left.svg';
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-24px/chevron_right.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { ReactComponent as TuneIcon } from 'mastodon/../material-icons/400-24px/tune.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { ButtonInTabsBar, useColumnsContext } from 'mastodon/features/ui/util/columns_context';
|
||||
import { WithRouterPropTypes } from 'mastodon/utils/react_router';
|
||||
|
|
|
@ -7,7 +7,7 @@ import classNames from 'classnames';
|
|||
|
||||
import { useDispatch } from 'react-redux';
|
||||
|
||||
import { ReactComponent as ContentCopyIcon } from 'mastodon/../material-icons/400-20px/content_copy.svg';
|
||||
import { ReactComponent as ContentCopyIcon } from 'mastodon/../material-icons/400-24px/content_copy.svg';
|
||||
import { showAlert } from 'mastodon/actions/alerts';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ import { useCallback, useState } from 'react';
|
|||
|
||||
import { defineMessages, useIntl } from 'react-intl';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { bannerSettings } from 'mastodon/settings';
|
||||
|
||||
import { IconButton } from './icon_button';
|
||||
|
|
|
@ -2,7 +2,7 @@ import { useCallback } from 'react';
|
|||
|
||||
import { defineMessages, useIntl } from 'react-intl';
|
||||
|
||||
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/400-20px/lock_open.svg';
|
||||
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/400-24px/lock_open.svg';
|
||||
|
||||
import { IconButton } from './icon_button';
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import { supportsPassiveEvents } from 'detect-passive-events';
|
||||
import Overlay from 'react-overlays/Overlay';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { CircularProgress } from 'mastodon/components/circular_progress';
|
||||
import { WithRouterPropTypes } from 'mastodon/utils/react_router';
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import { FormattedMessage, injectIntl } from 'react-intl';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as ArrowDropDownIcon } from 'mastodon/../material-icons/400-20px/arrow_drop_down.svg';
|
||||
import { ReactComponent as ArrowDropDownIcon } from 'mastodon/../material-icons/400-24px/arrow_drop_down.svg';
|
||||
import { openModal } from 'mastodon/actions/modal';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import InlineAccount from 'mastodon/components/inline_account';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import classNames from 'classnames';
|
||||
|
||||
import { ReactComponent as CheckBoxOutlineBlankIcon } from 'mastodon/../material-icons/400-20px/check_box_outline_blank.svg';
|
||||
import { ReactComponent as CheckBoxOutlineBlankIcon } from 'mastodon/../material-icons/400-24px/check_box_outline_blank.svg';
|
||||
import { isProduction } from 'mastodon/utils/environment';
|
||||
|
||||
interface SVGPropsWithTitle extends React.SVGProps<SVGSVGElement> {
|
||||
|
|
|
@ -2,7 +2,7 @@ import { useCallback } from 'react';
|
|||
|
||||
import { useIntl, defineMessages } from 'react-intl';
|
||||
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-24px/more_horiz.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
const messages = defineMessages({
|
||||
|
|
|
@ -10,7 +10,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-20px/visibility_off.svg';
|
||||
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-24px/visibility_off.svg';
|
||||
import { Blurhash } from 'mastodon/components/blurhash';
|
||||
|
||||
import { autoPlayGif, displayMedia, useBlurhash } from '../initial_state';
|
||||
|
|
|
@ -5,7 +5,7 @@ import { FormattedMessage } from 'react-intl';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as CancelPresentationIcon } from 'mastodon/../material-icons/400-20px/cancel_presentation.svg';
|
||||
import { ReactComponent as CancelPresentationIcon } from 'mastodon/../material-icons/400-24px/cancel_presentation.svg';
|
||||
import { removePictureInPicture } from 'mastodon/actions/picture_in_picture';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
import escapeTextContentForBrowser from 'escape-html';
|
||||
import spring from 'react-motion/lib/spring';
|
||||
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/check.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import emojify from 'mastodon/features/emoji/emoji';
|
||||
import Motion from 'mastodon/features/ui/util/optional_motion';
|
||||
|
|
|
@ -9,10 +9,10 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
|
||||
import { HotKeys } from 'react-hotkeys';
|
||||
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
|
||||
import { ReactComponent as PushPinIcon } from 'mastodon/../material-icons/400-20px/push_pin.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-20px/reply.svg';
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-24px/alternate_email.svg';
|
||||
import { ReactComponent as PushPinIcon } from 'mastodon/../material-icons/400-24px/push_pin.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-24px/reply.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import PictureInPicturePlaceholder from 'mastodon/components/picture_in_picture_placeholder';
|
||||
import { withOptionalRouter, WithOptionalRouterPropTypes } from 'mastodon/utils/react_router';
|
||||
|
|
|
@ -9,15 +9,15 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as BookmarkIcon } from 'mastodon/../material-icons/400-20px/bookmark-fill.svg';
|
||||
import { ReactComponent as BookmarkBorderIcon } from 'mastodon/../material-icons/400-20px/bookmark.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-20px/reply.svg';
|
||||
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-20px/reply_all.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star-fill.svg';
|
||||
import { ReactComponent as StarBorderIcon } from 'mastodon/../material-icons/400-20px/star.svg';
|
||||
import { ReactComponent as VisibilityIcon } from 'mastodon/../material-icons/400-20px/visibility.svg';
|
||||
import { ReactComponent as BookmarkIcon } from 'mastodon/../material-icons/400-24px/bookmark-fill.svg';
|
||||
import { ReactComponent as BookmarkBorderIcon } from 'mastodon/../material-icons/400-24px/bookmark.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-24px/more_horiz.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-24px/reply.svg';
|
||||
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-24px/reply_all.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star-fill.svg';
|
||||
import { ReactComponent as StarBorderIcon } from 'mastodon/../material-icons/400-24px/star.svg';
|
||||
import { ReactComponent as VisibilityIcon } from 'mastodon/../material-icons/400-24px/visibility.svg';
|
||||
import { ReactComponent as RepeatDisabledIcon } from 'mastodon/../svg-icons/repeat_disabled.svg';
|
||||
import { ReactComponent as RepeatPrivateIcon } from 'mastodon/../svg-icons/repeat_private.svg';
|
||||
import { PERMISSION_MANAGE_USERS, PERMISSION_MANAGE_FEDERATION } from 'mastodon/permissions';
|
||||
|
|
|
@ -9,7 +9,7 @@ import { Link, withRouter } from 'react-router-dom';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-20px/chevron_right.svg';
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-24px/chevron_right.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import PollContainer from 'mastodon/containers/poll_container';
|
||||
import { autoPlayGif, languages as preloadedLanguages } from 'mastodon/initial_state';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/check.svg';
|
||||
|
||||
import { Icon } from './icon';
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import { defineMessages, useIntl } from 'react-intl';
|
||||
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
|
||||
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-20px/lock.svg';
|
||||
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/400-20px/lock_open.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-20px/public.svg';
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-24px/alternate_email.svg';
|
||||
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-24px/lock.svg';
|
||||
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/400-24px/lock_open.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-24px/public.svg';
|
||||
|
||||
import { Icon } from './icon';
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@ import { List as ImmutableList } from 'immutable';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-20px/chevron_right.svg';
|
||||
import { ReactComponent as ExpandMoreIcon } from 'mastodon/../material-icons/400-20px/expand_more.svg';
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-24px/chevron_right.svg';
|
||||
import { ReactComponent as ExpandMoreIcon } from 'mastodon/../material-icons/400-24px/expand_more.svg';
|
||||
import { fetchServer, fetchExtendedDescription, fetchDomainBlocks } from 'mastodon/actions/server';
|
||||
import Column from 'mastodon/components/column';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
|
|
@ -3,8 +3,8 @@ import { FormattedMessage } from 'react-intl';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/check.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
export default class FollowRequestNote extends ImmutablePureComponent {
|
||||
|
|
|
@ -9,12 +9,12 @@ import { NavLink, withRouter } from 'react-router-dom';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
|
||||
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-20px/lock.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
|
||||
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-20px/notifications.svg';
|
||||
import { ReactComponent as NotificationsActiveIcon } from 'mastodon/../material-icons/400-20px/notifications_active-fill.svg';
|
||||
import { ReactComponent as ShareIcon } from 'mastodon/../material-icons/400-20px/share.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/check.svg';
|
||||
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-24px/lock.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-24px/more_horiz.svg';
|
||||
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-24px/notifications.svg';
|
||||
import { ReactComponent as NotificationsActiveIcon } from 'mastodon/../material-icons/400-24px/notifications_active-fill.svg';
|
||||
import { ReactComponent as ShareIcon } from 'mastodon/../material-icons/400-24px/share.svg';
|
||||
import { Avatar } from 'mastodon/components/avatar';
|
||||
import { Badge, AutomatedBadge, GroupBadge } from 'mastodon/components/badge';
|
||||
import { Button } from 'mastodon/components/button';
|
||||
|
|
|
@ -5,9 +5,9 @@ import classNames from 'classnames';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as AudiotrackIcon } from 'mastodon/../material-icons/400-20px/music_note.svg';
|
||||
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/400-20px/play_arrow.svg';
|
||||
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-20px/visibility_off.svg';
|
||||
import { ReactComponent as AudiotrackIcon } from 'mastodon/../material-icons/400-24px/music_note.svg';
|
||||
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/400-24px/play_arrow.svg';
|
||||
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-24px/visibility_off.svg';
|
||||
import { Blurhash } from 'mastodon/components/blurhash';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { autoPlayGif, displayMedia, useBlurhash } from 'mastodon/initial_state';
|
||||
|
|
|
@ -9,12 +9,12 @@ import { is } from 'immutable';
|
|||
|
||||
import { throttle, debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as DownloadIcon } from 'mastodon/../material-icons/400-20px/download.svg';
|
||||
import { ReactComponent as PauseIcon } from 'mastodon/../material-icons/400-20px/pause.svg';
|
||||
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/400-20px/play_arrow-fill.svg';
|
||||
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-20px/visibility_off.svg';
|
||||
import { ReactComponent as VolumeOffIcon } from 'mastodon/../material-icons/400-20px/volume_off-fill.svg';
|
||||
import { ReactComponent as VolumeUpIcon } from 'mastodon/../material-icons/400-20px/volume_up-fill.svg';
|
||||
import { ReactComponent as DownloadIcon } from 'mastodon/../material-icons/400-24px/download.svg';
|
||||
import { ReactComponent as PauseIcon } from 'mastodon/../material-icons/400-24px/pause.svg';
|
||||
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/400-24px/play_arrow-fill.svg';
|
||||
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-24px/visibility_off.svg';
|
||||
import { ReactComponent as VolumeOffIcon } from 'mastodon/../material-icons/400-24px/volume_off-fill.svg';
|
||||
import { ReactComponent as VolumeUpIcon } from 'mastodon/../material-icons/400-24px/volume_up-fill.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { formatTime, getPointerPosition, fileNameFromURL } from 'mastodon/features/video';
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as BlockIcon } from 'mastodon/../material-icons/400-20px/block-fill.svg';
|
||||
import { ReactComponent as BlockIcon } from 'mastodon/../material-icons/400-24px/block-fill.svg';
|
||||
|
||||
import { fetchBlocks, expandBlocks } from '../../actions/blocks';
|
||||
import { LoadingIndicator } from '../../components/loading_indicator';
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as BookmarksIcon } from 'mastodon/../material-icons/400-20px/bookmarks-fill.svg';
|
||||
import { ReactComponent as BookmarksIcon } from 'mastodon/../material-icons/400-24px/bookmarks-fill.svg';
|
||||
import { fetchBookmarkedStatuses, expandBookmarkedStatuses } from 'mastodon/actions/bookmarks';
|
||||
import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns';
|
||||
import ColumnHeader from 'mastodon/components/column_header';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Helmet } from 'react-helmet';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-20px/group.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-24px/group.svg';
|
||||
import { DismissableBanner } from 'mastodon/components/dismissable_banner';
|
||||
import { domain } from 'mastodon/initial_state';
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import { defineMessages, injectIntl } from 'react-intl';
|
|||
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
|
||||
import { ReactComponent as MenuIcon } from 'mastodon/../material-icons/400-20px/menu.svg';
|
||||
import { ReactComponent as MenuIcon } from 'mastodon/../material-icons/400-24px/menu.svg';
|
||||
|
||||
import DropdownMenuContainer from '../../../containers/dropdown_menu_container';
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
|
||||
import { length } from 'stringz';
|
||||
|
||||
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-20px/lock.svg';
|
||||
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-24px/lock.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { WithOptionalRouterPropTypes, withOptionalRouter } from 'mastodon/utils/react_router';
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ import { PureComponent } from 'react';
|
|||
|
||||
import { defineMessages, injectIntl } from 'react-intl';
|
||||
|
||||
import { ReactComponent as InsertChartIcon } from 'mastodon/../material-icons/400-20px/insert_chart.svg';
|
||||
import { ReactComponent as InsertChartIcon } from 'mastodon/../material-icons/400-24px/insert_chart.svg';
|
||||
|
||||
import { IconButton } from '../../../components/icon_button';
|
||||
|
||||
|
|
|
@ -8,8 +8,8 @@ import classNames from 'classnames';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-20px/add.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-24px/add.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import AutosuggestInput from 'mastodon/components/autosuggest_input';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
|
|
@ -9,10 +9,10 @@ import classNames from 'classnames';
|
|||
import { supportsPassiveEvents } from 'detect-passive-events';
|
||||
import Overlay from 'react-overlays/Overlay';
|
||||
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
|
||||
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-20px/lock.svg';
|
||||
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/400-20px/lock_open.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-20px/public.svg';
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-24px/alternate_email.svg';
|
||||
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-24px/lock.svg';
|
||||
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/400-24px/lock_open.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-24px/public.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
import { IconButton } from '../../../components/icon_button';
|
||||
|
|
|
@ -5,7 +5,7 @@ import { defineMessages, injectIntl } from 'react-intl';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import AttachmentList from 'mastodon/components/attachment_list';
|
||||
import { WithOptionalRouterPropTypes, withOptionalRouter } from 'mastodon/utils/react_router';
|
||||
|
||||
|
|
|
@ -8,9 +8,9 @@ import { withRouter } from 'react-router-dom';
|
|||
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
|
||||
import { ReactComponent as CancelIcon } from 'mastodon/../material-icons/400-20px/cancel-fill.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-20px/search.svg';
|
||||
import { ReactComponent as CancelIcon } from 'mastodon/../material-icons/400-24px/cancel-fill.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-24px/search.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { domain, searchEnabled } from 'mastodon/initial_state';
|
||||
import { HASHTAG_REGEX } from 'mastodon/utils/hashtags';
|
||||
|
|
|
@ -5,10 +5,10 @@ import { FormattedMessage } from 'react-intl';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as FindInPageIcon } from 'mastodon/../material-icons/400-20px/find_in_page.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-20px/group.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-20px/search.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-20px/tag.svg';
|
||||
import { ReactComponent as FindInPageIcon } from 'mastodon/../material-icons/400-24px/find_in_page.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-24px/group.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-24px/search.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-24px/tag.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { LoadMore } from 'mastodon/components/load_more';
|
||||
import { SearchSection } from 'mastodon/features/explore/components/search_section';
|
||||
|
|
|
@ -7,9 +7,9 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
|
||||
import spring from 'react-motion/lib/spring';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as EditIcon } from 'mastodon/../material-icons/400-20px/edit.svg';
|
||||
import { ReactComponent as InfoIcon } from 'mastodon/../material-icons/400-20px/info.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { ReactComponent as EditIcon } from 'mastodon/../material-icons/400-24px/edit.svg';
|
||||
import { ReactComponent as InfoIcon } from 'mastodon/../material-icons/400-24px/info.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
import Motion from '../../ui/util/optional_motion';
|
||||
|
|
|
@ -6,7 +6,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as AddPhotoAlternateIcon } from 'mastodon/../material-icons/400-20px/add_photo_alternate.svg';
|
||||
import { ReactComponent as AddPhotoAlternateIcon } from 'mastodon/../material-icons/400-24px/add_photo_alternate.svg';
|
||||
|
||||
import { IconButton } from '../../../components/icon_button';
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import { FormattedMessage } from 'react-intl';
|
|||
|
||||
import spring from 'react-motion/lib/spring';
|
||||
|
||||
import { ReactComponent as UploadFileIcon } from 'mastodon/../material-icons/400-20px/upload_file.svg';
|
||||
import { ReactComponent as UploadFileIcon } from 'mastodon/../material-icons/400-24px/upload_file.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
import Motion from '../../ui/util/optional_motion';
|
||||
|
|
|
@ -11,13 +11,13 @@ import { connect } from 'react-redux';
|
|||
|
||||
import spring from 'react-motion/lib/spring';
|
||||
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-20px/group.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-20px/home-fill.svg';
|
||||
import { ReactComponent as LogoutIcon } from 'mastodon/../material-icons/400-20px/logout.svg';
|
||||
import { ReactComponent as MenuIcon } from 'mastodon/../material-icons/400-20px/menu.svg';
|
||||
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-20px/notifications-fill.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-20px/public.svg';
|
||||
import { ReactComponent as SettingsIcon } from 'mastodon/../material-icons/400-20px/settings-fill.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-24px/group.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-24px/home-fill.svg';
|
||||
import { ReactComponent as LogoutIcon } from 'mastodon/../material-icons/400-24px/logout.svg';
|
||||
import { ReactComponent as MenuIcon } from 'mastodon/../material-icons/400-24px/menu.svg';
|
||||
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-24px/notifications-fill.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-24px/public.svg';
|
||||
import { ReactComponent as SettingsIcon } from 'mastodon/../material-icons/400-24px/settings-fill.svg';
|
||||
import { openModal } from 'mastodon/actions/modal';
|
||||
import Column from 'mastodon/components/column';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
|
|
@ -10,8 +10,8 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
|
||||
import { HotKeys } from 'react-hotkeys';
|
||||
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-20px/reply.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-24px/more_horiz.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-24px/reply.svg';
|
||||
import AttachmentList from 'mastodon/components/attachment_list';
|
||||
import AvatarComposite from 'mastodon/components/avatar_composite';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Helmet } from 'react-helmet';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-24px/alternate_email.svg';
|
||||
import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns';
|
||||
import { mountConversations, unmountConversations, expandConversations } from 'mastodon/actions/conversations';
|
||||
import { connectDirectStream } from 'mastodon/actions/streaming';
|
||||
|
|
|
@ -9,7 +9,7 @@ import { List as ImmutableList } from 'immutable';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-20px/group.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-24px/group.svg';
|
||||
import { addColumn, removeColumn, moveColumn, changeColumnParams } from 'mastodon/actions/columns';
|
||||
import { fetchDirectory, expandDirectory } from 'mastodon/actions/directory';
|
||||
import Column from 'mastodon/components/column';
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as BlockIcon } from 'mastodon/../material-icons/400-20px/block-fill.svg';
|
||||
import { ReactComponent as BlockIcon } from 'mastodon/../material-icons/400-24px/block-fill.svg';
|
||||
|
||||
import { fetchDomainBlocks, expandDomainBlocks } from '../../actions/domain_blocks';
|
||||
import { LoadingIndicator } from '../../components/loading_indicator';
|
||||
|
|
|
@ -8,8 +8,8 @@ import { NavLink, Switch, Route } from 'react-router-dom';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-20px/search.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-20px/tag.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-24px/search.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-24px/tag.svg';
|
||||
import Column from 'mastodon/components/column';
|
||||
import ColumnHeader from 'mastodon/components/column_header';
|
||||
import Search from 'mastodon/features/compose/containers/search_container';
|
||||
|
|
|
@ -9,9 +9,9 @@ import { List as ImmutableList } from 'immutable';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as FindInPageIcon } from 'mastodon/../material-icons/400-20px/find_in_page.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-20px/group.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-20px/tag.svg';
|
||||
import { ReactComponent as FindInPageIcon } from 'mastodon/../material-icons/400-24px/find_in_page.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-24px/group.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-24px/tag.svg';
|
||||
import { submitSearch, expandSearch } from 'mastodon/actions/search';
|
||||
import { ImmutableHashtag as Hashtag } from 'mastodon/components/hashtag';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star-fill.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star-fill.svg';
|
||||
import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns';
|
||||
import { fetchFavouritedStatuses, expandFavouritedStatuses } from 'mastodon/actions/favourites';
|
||||
import ColumnHeader from 'mastodon/components/column_header';
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as RefreshIcon } from 'mastodon/../material-icons/400-20px/refresh.svg';
|
||||
import { ReactComponent as RefreshIcon } from 'mastodon/../material-icons/400-24px/refresh.svg';
|
||||
import { fetchFavourites, expandFavourites } from 'mastodon/actions/interactions';
|
||||
import ColumnHeader from 'mastodon/components/column_header';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import fuzzysort from 'fuzzysort';
|
||||
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-20px/add.svg';
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-24px/add.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { toServerSideType } from 'mastodon/utils/filters';
|
||||
import { loupeIcon, deleteIcon } from 'mastodon/utils/icons';
|
||||
|
|
|
@ -6,7 +6,7 @@ import { useIntl, defineMessages, FormattedMessage } from 'react-intl';
|
|||
import { Helmet } from 'react-helmet';
|
||||
import { NavLink } from 'react-router-dom';
|
||||
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-20px/public.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-24px/public.svg';
|
||||
import { addColumn } from 'mastodon/actions/columns';
|
||||
import { changeSetting } from 'mastodon/actions/settings';
|
||||
import { connectPublicStream, connectCommunityStream } from 'mastodon/actions/streaming';
|
||||
|
|
|
@ -7,8 +7,8 @@ import { Link } from 'react-router-dom';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/check.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
|
||||
import { Avatar } from '../../../components/avatar';
|
||||
import { DisplayName } from '../../../components/display_name';
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-20px/person_add.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-24px/person_add.svg';
|
||||
|
||||
import { fetchFollowRequests, expandFollowRequests } from '../../actions/accounts';
|
||||
import ScrollableList from '../../components/scrollable_list';
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-20px/tag.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-24px/tag.svg';
|
||||
import { expandFollowedHashtags, fetchFollowedHashtags } from 'mastodon/actions/tags';
|
||||
import ColumnHeader from 'mastodon/components/column_header';
|
||||
import Hashtag from 'mastodon/components/hashtag';
|
||||
|
|
|
@ -14,9 +14,9 @@ import spring from 'react-motion/lib/spring';
|
|||
import ReactSwipeableViews from 'react-swipeable-views';
|
||||
|
||||
import elephantUIPlane from 'mastodon/../images/elephant_ui_plane.svg';
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-20px/add.svg';
|
||||
import { ReactComponent as ChevronLeftIcon } from 'mastodon/../material-icons/400-20px/chevron_left.svg';
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-20px/chevron_right.svg';
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-24px/add.svg';
|
||||
import { ReactComponent as ChevronLeftIcon } from 'mastodon/../material-icons/400-24px/chevron_left.svg';
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-24px/chevron_right.svg';
|
||||
import { AnimatedNumber } from 'mastodon/components/animated_number';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
|
|
@ -9,17 +9,17 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
|
||||
import { ReactComponent as BookmarksIcon } from 'mastodon/../material-icons/400-20px/bookmarks-fill.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-20px/group.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-20px/home-fill.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-20px/list_alt.svg';
|
||||
import { ReactComponent as MenuIcon } from 'mastodon/../material-icons/400-20px/menu.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-20px/person_add.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-20px/public.svg';
|
||||
import { ReactComponent as SettingsIcon } from 'mastodon/../material-icons/400-20px/settings-fill.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-20px/tag.svg';
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-24px/alternate_email.svg';
|
||||
import { ReactComponent as BookmarksIcon } from 'mastodon/../material-icons/400-24px/bookmarks-fill.svg';
|
||||
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-24px/group.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-24px/home-fill.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-24px/list_alt.svg';
|
||||
import { ReactComponent as MenuIcon } from 'mastodon/../material-icons/400-24px/menu.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-24px/person_add.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-24px/public.svg';
|
||||
import { ReactComponent as SettingsIcon } from 'mastodon/../material-icons/400-24px/settings-fill.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-24px/tag.svg';
|
||||
import { fetchFollowRequests } from 'mastodon/actions/accounts';
|
||||
import Column from 'mastodon/components/column';
|
||||
import ColumnHeader from 'mastodon/components/column_header';
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { isEqual } from 'lodash';
|
||||
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-20px/tag.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-24px/tag.svg';
|
||||
import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns';
|
||||
import { connectHashtagStream } from 'mastodon/actions/streaming';
|
||||
import { fetchHashtag, followHashtag, unfollowHashtag } from 'mastodon/actions/tags';
|
||||
|
|
|
@ -10,8 +10,8 @@ import { List as ImmutableList } from 'immutable';
|
|||
import { connect } from 'react-redux';
|
||||
import { createSelector } from 'reselect';
|
||||
|
||||
import { ReactComponent as CampaignIcon } from 'mastodon/../material-icons/400-20px/campaign.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-20px/home-fill.svg';
|
||||
import { ReactComponent as CampaignIcon } from 'mastodon/../material-icons/400-24px/campaign.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-24px/home-fill.svg';
|
||||
import { fetchAnnouncements, toggleShowAnnouncements } from 'mastodon/actions/announcements';
|
||||
import { IconWithBadge } from 'mastodon/components/icon_with_badge';
|
||||
import { NotSignedInIndicator } from 'mastodon/components/not_signed_in_indicator';
|
||||
|
|
|
@ -9,10 +9,10 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { throttle, escapeRegExp } from 'lodash';
|
||||
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-20px/person_add.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-20px/reply.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-24px/person_add.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-24px/reply.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star.svg';
|
||||
import { openModal, closeModal } from 'mastodon/actions/modal';
|
||||
import api from 'mastodon/api';
|
||||
import { Button } from 'mastodon/components/button';
|
||||
|
|
|
@ -6,7 +6,7 @@ import { Helmet } from 'react-helmet';
|
|||
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as InfoIcon } from 'mastodon/../material-icons/400-20px/info.svg';
|
||||
import { ReactComponent as InfoIcon } from 'mastodon/../material-icons/400-24px/info.svg';
|
||||
import Column from 'mastodon/components/column';
|
||||
import ColumnHeader from 'mastodon/components/column_header';
|
||||
|
||||
|
|
|
@ -6,9 +6,9 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-20px/add.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-20px/list_alt.svg';
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-24px/add.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-24px/list_alt.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
import { removeFromListAdder, addToListAdder } from '../../../actions/lists';
|
||||
|
|
|
@ -6,8 +6,8 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-20px/add.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-24px/add.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
|
||||
import { removeFromListEditor, addToListEditor } from '../../../actions/lists';
|
||||
import { Avatar } from '../../../components/avatar';
|
||||
|
|
|
@ -5,7 +5,7 @@ import { defineMessages, injectIntl } from 'react-intl';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/check.svg';
|
||||
|
||||
import { changeListEditorTitle, submitListEditor } from '../../../actions/lists';
|
||||
import { IconButton } from '../../../components/icon_button';
|
||||
|
|
|
@ -7,8 +7,8 @@ import classNames from 'classnames';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as CancelIcon } from 'mastodon/../material-icons/400-20px/cancel.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-20px/search.svg';
|
||||
import { ReactComponent as CancelIcon } from 'mastodon/../material-icons/400-24px/cancel.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-24px/search.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
import { fetchListSuggestions, clearListSuggestions, changeListSuggestions } from '../../../actions/lists';
|
||||
|
|
|
@ -11,9 +11,9 @@ import { connect } from 'react-redux';
|
|||
|
||||
import Toggle from 'react-toggle';
|
||||
|
||||
import { ReactComponent as DeleteIcon } from 'mastodon/../material-icons/400-20px/delete.svg';
|
||||
import { ReactComponent as EditIcon } from 'mastodon/../material-icons/400-20px/edit.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-20px/list_alt.svg';
|
||||
import { ReactComponent as DeleteIcon } from 'mastodon/../material-icons/400-24px/delete.svg';
|
||||
import { ReactComponent as EditIcon } from 'mastodon/../material-icons/400-24px/edit.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-24px/list_alt.svg';
|
||||
import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns';
|
||||
import { fetchList, deleteList, updateList } from 'mastodon/actions/lists';
|
||||
import { openModal } from 'mastodon/actions/modal';
|
||||
|
|
|
@ -9,7 +9,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
import { connect } from 'react-redux';
|
||||
import { createSelector } from 'reselect';
|
||||
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-20px/list_alt.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-24px/list_alt.svg';
|
||||
import { fetchLists } from 'mastodon/actions/lists';
|
||||
import Column from 'mastodon/components/column';
|
||||
import ColumnHeader from 'mastodon/components/column_header';
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as VolumeOffIcon } from 'mastodon/../material-icons/400-20px/volume_off.svg';
|
||||
import { ReactComponent as VolumeOffIcon } from 'mastodon/../material-icons/400-24px/volume_off.svg';
|
||||
|
||||
import { fetchMutes, expandMutes } from '../../actions/mutes';
|
||||
import { LoadingIndicator } from '../../components/loading_indicator';
|
||||
|
|
|
@ -3,7 +3,7 @@ import { PureComponent } from 'react';
|
|||
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
import { ReactComponent as DeleteForeverIcon } from 'mastodon/../material-icons/400-20px/delete_forever.svg';
|
||||
import { ReactComponent as DeleteForeverIcon } from 'mastodon/../material-icons/400-24px/delete_forever.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
export default class ClearColumnButton extends PureComponent {
|
||||
|
|
|
@ -3,12 +3,12 @@ import { PureComponent } from 'react';
|
|||
|
||||
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
||||
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-20px/home-fill.svg';
|
||||
import { ReactComponent as InsertChartIcon } from 'mastodon/../material-icons/400-20px/insert_chart.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-20px/person_add.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-20px/reply_all.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-24px/home-fill.svg';
|
||||
import { ReactComponent as InsertChartIcon } from 'mastodon/../material-icons/400-24px/insert_chart.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-24px/person_add.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-24px/reply_all.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
const tooltips = defineMessages({
|
||||
|
|
|
@ -7,8 +7,8 @@ import { Link } from 'react-router-dom';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/check.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { Avatar } from 'mastodon/components/avatar';
|
||||
import { DisplayName } from 'mastodon/components/display_name';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
|
|
@ -10,14 +10,14 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
|
||||
import { HotKeys } from 'react-hotkeys';
|
||||
|
||||
import { ReactComponent as EditIcon } from 'mastodon/../material-icons/400-20px/edit.svg';
|
||||
import { ReactComponent as FlagIcon } from 'mastodon/../material-icons/400-20px/flag-fill.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-20px/home-fill.svg';
|
||||
import { ReactComponent as InsertChartIcon } from 'mastodon/../material-icons/400-20px/insert_chart.svg';
|
||||
import { ReactComponent as PersonIcon } from 'mastodon/../material-icons/400-20px/person-fill.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-20px/person_add-fill.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star-fill.svg';
|
||||
import { ReactComponent as EditIcon } from 'mastodon/../material-icons/400-24px/edit.svg';
|
||||
import { ReactComponent as FlagIcon } from 'mastodon/../material-icons/400-24px/flag-fill.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-24px/home-fill.svg';
|
||||
import { ReactComponent as InsertChartIcon } from 'mastodon/../material-icons/400-24px/insert_chart.svg';
|
||||
import { ReactComponent as PersonIcon } from 'mastodon/../material-icons/400-24px/person-fill.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-24px/person_add-fill.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star-fill.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import AccountContainer from 'mastodon/containers/account_container';
|
||||
import StatusContainer from 'mastodon/containers/status_container';
|
||||
|
|
|
@ -5,8 +5,8 @@ import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as TuneIcon } from 'mastodon/../material-icons/400-20px/tune.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { ReactComponent as TuneIcon } from 'mastodon/../material-icons/400-24px/tune.svg';
|
||||
import { requestBrowserPermission } from 'mastodon/actions/notifications';
|
||||
import { changeSetting } from 'mastodon/actions/settings';
|
||||
import { Button } from 'mastodon/components/button';
|
||||
|
|
|
@ -12,8 +12,8 @@ import { createSelector } from 'reselect';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as DoneAllIcon } from 'mastodon/../material-icons/400-20px/done_all.svg';
|
||||
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-20px/notifications-fill.svg';
|
||||
import { ReactComponent as DoneAllIcon } from 'mastodon/../material-icons/400-24px/done_all.svg';
|
||||
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-24px/notifications-fill.svg';
|
||||
import { compareId } from 'mastodon/compare_id';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { NotSignedInIndicator } from 'mastodon/components/not_signed_in_indicator';
|
||||
|
|
|
@ -2,8 +2,8 @@ import PropTypes from 'prop-types';
|
|||
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
import { ReactComponent as ArrowRightAltIcon } from 'mastodon/../material-icons/400-20px/arrow_right_alt.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/done.svg';
|
||||
import { ReactComponent as ArrowRightAltIcon } from 'mastodon/../material-icons/400-24px/arrow_right_alt.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/done.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
export const Step = ({ label, description, icon, iconComponent, completed, onClick, href, to }) => {
|
||||
|
|
|
@ -9,11 +9,11 @@ import { useDispatch } from 'react-redux';
|
|||
|
||||
|
||||
import illustration from 'mastodon/../images/elephant_ui_conversation.svg';
|
||||
import { ReactComponent as AccountCircleIcon } from 'mastodon/../material-icons/400-20px/account_circle.svg';
|
||||
import { ReactComponent as ArrowRightAltIcon } from 'mastodon/../material-icons/400-20px/arrow_right_alt.svg';
|
||||
import { ReactComponent as ContentCopyIcon } from 'mastodon/../material-icons/400-20px/content_copy.svg';
|
||||
import { ReactComponent as EditNoteIcon } from 'mastodon/../material-icons/400-20px/edit_note.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-20px/person_add.svg';
|
||||
import { ReactComponent as AccountCircleIcon } from 'mastodon/../material-icons/400-24px/account_circle.svg';
|
||||
import { ReactComponent as ArrowRightAltIcon } from 'mastodon/../material-icons/400-24px/arrow_right_alt.svg';
|
||||
import { ReactComponent as ContentCopyIcon } from 'mastodon/../material-icons/400-24px/content_copy.svg';
|
||||
import { ReactComponent as EditNoteIcon } from 'mastodon/../material-icons/400-24px/edit_note.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-24px/person_add.svg';
|
||||
import { focusCompose } from 'mastodon/actions/compose';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import Column from 'mastodon/features/ui/components/column';
|
||||
|
|
|
@ -10,8 +10,8 @@ import { useDispatch } from 'react-redux';
|
|||
|
||||
import Toggle from 'react-toggle';
|
||||
|
||||
import { ReactComponent as AddPhotoAlternateIcon } from 'mastodon/../material-icons/400-20px/add_photo_alternate.svg';
|
||||
import { ReactComponent as EditIcon } from 'mastodon/../material-icons/400-20px/edit.svg';
|
||||
import { ReactComponent as AddPhotoAlternateIcon } from 'mastodon/../material-icons/400-24px/add_photo_alternate.svg';
|
||||
import { ReactComponent as EditIcon } from 'mastodon/../material-icons/400-24px/edit.svg';
|
||||
import { updateAccount } from 'mastodon/actions/accounts';
|
||||
import { Button } from 'mastodon/components/button';
|
||||
import { ColumnBackButton } from 'mastodon/components/column_back_button';
|
||||
|
|
|
@ -9,8 +9,8 @@ import { Link } from 'react-router-dom';
|
|||
|
||||
import SwipeableViews from 'react-swipeable-views';
|
||||
|
||||
import { ReactComponent as ArrowRightAltIcon } from 'mastodon/../material-icons/400-20px/arrow_right_alt.svg';
|
||||
import { ReactComponent as ContentCopyIcon } from 'mastodon/../material-icons/400-20px/content_copy.svg';
|
||||
import { ReactComponent as ArrowRightAltIcon } from 'mastodon/../material-icons/400-24px/arrow_right_alt.svg';
|
||||
import { ReactComponent as ContentCopyIcon } from 'mastodon/../material-icons/400-24px/content_copy.svg';
|
||||
import { ColumnBackButton } from 'mastodon/components/column_back_button';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { me, domain } from 'mastodon/initial_state';
|
||||
|
|
|
@ -9,11 +9,11 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as OpenInNewIcon } from 'mastodon/../material-icons/400-20px/open_in_new.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-20px/reply.svg';
|
||||
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-20px/reply_all.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star.svg';
|
||||
import { ReactComponent as OpenInNewIcon } from 'mastodon/../material-icons/400-24px/open_in_new.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-24px/reply.svg';
|
||||
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-24px/reply_all.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star.svg';
|
||||
import { initBoostModal } from 'mastodon/actions/boosts';
|
||||
import { replyCompose } from 'mastodon/actions/compose';
|
||||
import { reblog, favourite, unreblog, unfavourite } from 'mastodon/actions/interactions';
|
||||
|
|
|
@ -8,7 +8,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { Avatar } from 'mastodon/components/avatar';
|
||||
import { DisplayName } from 'mastodon/components/display_name';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
|
|
@ -8,7 +8,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as PushPinIcon } from 'mastodon/../material-icons/400-20px/push_pin.svg';
|
||||
import { ReactComponent as PushPinIcon } from 'mastodon/../material-icons/400-24px/push_pin.svg';
|
||||
import { getStatusList } from 'mastodon/selectors';
|
||||
|
||||
import { fetchPinnedStatuses } from '../../actions/pin_statuses';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Helmet } from 'react-helmet';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-20px/public.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-24px/public.svg';
|
||||
import { DismissableBanner } from 'mastodon/components/dismissable_banner';
|
||||
import { domain } from 'mastodon/initial_state';
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import { debounce } from 'lodash';
|
||||
|
||||
import { ReactComponent as RefreshIcon } from 'mastodon/../material-icons/400-20px/refresh.svg';
|
||||
import { ReactComponent as RefreshIcon } from 'mastodon/../material-icons/400-24px/refresh.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
import { fetchReblogs, expandReblogs } from '../../actions/interactions';
|
||||
|
|
|
@ -3,7 +3,7 @@ import { PureComponent } from 'react';
|
|||
|
||||
import classNames from 'classnames';
|
||||
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/done.svg';
|
||||
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-24px/done.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
||||
export default class Option extends PureComponent {
|
||||
|
|
|
@ -9,14 +9,14 @@ import { withRouter } from 'react-router-dom';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as BookmarkIcon } from 'mastodon/../material-icons/400-20px/bookmark-fill.svg';
|
||||
import { ReactComponent as BookmarkBorderIcon } from 'mastodon/../material-icons/400-20px/bookmark.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-20px/reply.svg';
|
||||
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-20px/reply_all.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star-fill.svg';
|
||||
import { ReactComponent as StarBorderIcon } from 'mastodon/../material-icons/400-20px/star.svg';
|
||||
import { ReactComponent as BookmarkIcon } from 'mastodon/../material-icons/400-24px/bookmark-fill.svg';
|
||||
import { ReactComponent as BookmarkBorderIcon } from 'mastodon/../material-icons/400-24px/bookmark.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-24px/more_horiz.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-24px/reply.svg';
|
||||
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-24px/reply_all.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star-fill.svg';
|
||||
import { ReactComponent as StarBorderIcon } from 'mastodon/../material-icons/400-24px/star.svg';
|
||||
import { ReactComponent as RepeatDisabledIcon } from 'mastodon/../svg-icons/repeat_disabled.svg';
|
||||
import { ReactComponent as RepeatPrivateIcon } from 'mastodon/../svg-icons/repeat_private.svg';
|
||||
import { PERMISSION_MANAGE_USERS, PERMISSION_MANAGE_FEDERATION } from 'mastodon/permissions';
|
||||
|
|
|
@ -10,9 +10,9 @@ import classNames from 'classnames';
|
|||
import Immutable from 'immutable';
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
|
||||
import { ReactComponent as DescriptionIcon } from 'mastodon/../material-icons/400-20px/description-fill.svg';
|
||||
import { ReactComponent as OpenInNewIcon } from 'mastodon/../material-icons/400-20px/open_in_new.svg';
|
||||
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/400-20px/play_arrow-fill.svg';
|
||||
import { ReactComponent as DescriptionIcon } from 'mastodon/../material-icons/400-24px/description-fill.svg';
|
||||
import { ReactComponent as OpenInNewIcon } from 'mastodon/../material-icons/400-24px/open_in_new.svg';
|
||||
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/400-24px/play_arrow-fill.svg';
|
||||
import { Blurhash } from 'mastodon/components/blurhash';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { RelativeTimestamp } from 'mastodon/components/relative_timestamp';
|
||||
|
|
|
@ -8,9 +8,9 @@ import { Link, withRouter } from 'react-router-dom';
|
|||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star-fill.svg';
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-24px/alternate_email.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star-fill.svg';
|
||||
import { AnimatedNumber } from 'mastodon/components/animated_number';
|
||||
import EditedTimestamp from 'mastodon/components/edited_timestamp';
|
||||
import { getHashtagBarForStatus } from 'mastodon/components/hashtag_bar';
|
||||
|
|
|
@ -14,8 +14,8 @@ import { createSelector } from 'reselect';
|
|||
|
||||
import { HotKeys } from 'react-hotkeys';
|
||||
|
||||
import { ReactComponent as VisibilityIcon } from 'mastodon/../material-icons/400-20px/visibility.svg';
|
||||
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-20px/visibility_off.svg';
|
||||
import { ReactComponent as VisibilityIcon } from 'mastodon/../material-icons/400-24px/visibility.svg';
|
||||
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-24px/visibility_off.svg';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import { LoadingIndicator } from 'mastodon/components/loading_indicator';
|
||||
import ScrollContainer from 'mastodon/containers/scroll_container';
|
||||
|
|
|
@ -8,7 +8,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
import { connect } from 'react-redux';
|
||||
import { createSelector } from 'reselect';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { followAccount } from 'mastodon/actions/accounts';
|
||||
import { Button } from 'mastodon/components/button';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
|
|
@ -9,7 +9,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
|
||||
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-24px/repeat.svg';
|
||||
import { changeBoostPrivacy } from 'mastodon/actions/boosts';
|
||||
import AttachmentList from 'mastodon/components/attachment_list';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
|
|
@ -3,7 +3,7 @@ import { PureComponent } from 'react';
|
|||
|
||||
import { defineMessages, injectIntl } from 'react-intl';
|
||||
|
||||
import { ReactComponent as RefreshIcon } from 'mastodon/../material-icons/400-20px/refresh.svg';
|
||||
import { ReactComponent as RefreshIcon } from 'mastodon/../material-icons/400-24px/refresh.svg';
|
||||
|
||||
import { IconButton } from '../../../components/icon_button';
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import { connect } from 'react-redux';
|
|||
|
||||
import escapeTextContentForBrowser from 'escape-html';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { closeModal } from 'mastodon/actions/modal';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
import InlineAccount from 'mastodon/components/inline_account';
|
||||
|
|
|
@ -4,7 +4,7 @@ import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
|
|||
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import api from 'mastodon/api';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { fetchFilters, createFilter, createFilterStatus } from 'mastodon/actions/filters';
|
||||
import { fetchStatus } from 'mastodon/actions/statuses';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
|
|
@ -16,7 +16,7 @@ import tesseractWorkerPath from 'tesseract.js/dist/worker.min.js';
|
|||
// eslint-disable-next-line import/no-extraneous-dependencies
|
||||
import tesseractCorePath from 'tesseract.js-core/tesseract-core.wasm.js';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { Button } from 'mastodon/components/button';
|
||||
import { GIFV } from 'mastodon/components/gifv';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
|
|
@ -6,7 +6,7 @@ import { injectIntl, defineMessages } from 'react-intl';
|
|||
import { List as ImmutableList } from 'immutable';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-20px/person_add.svg';
|
||||
import { ReactComponent as PersonAddIcon } from 'mastodon/../material-icons/400-24px/person_add.svg';
|
||||
import { fetchFollowRequests } from 'mastodon/actions/accounts';
|
||||
import { IconWithBadge } from 'mastodon/components/icon_with_badge';
|
||||
import ColumnLink from 'mastodon/features/ui/components/column_link';
|
||||
|
|
|
@ -7,7 +7,7 @@ import { Link, withRouter } from 'react-router-dom';
|
|||
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-20px/search.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-24px/search.svg';
|
||||
import { openModal } from 'mastodon/actions/modal';
|
||||
import { fetchServer } from 'mastodon/actions/server';
|
||||
import { Avatar } from 'mastodon/components/avatar';
|
||||
|
|
|
@ -5,7 +5,7 @@ import { defineMessages, injectIntl } from 'react-intl';
|
|||
|
||||
import classNames from 'classnames';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { IconButton } from 'mastodon/components/icon_button';
|
||||
|
||||
import ImageLoader from './image_loader';
|
||||
|
|
|
@ -5,7 +5,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
import { connect } from 'react-redux';
|
||||
import { createSelector } from 'reselect';
|
||||
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-20px/list_alt.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-24px/list_alt.svg';
|
||||
import { fetchLists } from 'mastodon/actions/lists';
|
||||
|
||||
import ColumnLink from './column_link';
|
||||
|
|
|
@ -9,9 +9,9 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
|
||||
import ReactSwipeableViews from 'react-swipeable-views';
|
||||
|
||||
import { ReactComponent as ChevronLeftIcon } from 'mastodon/../material-icons/400-20px/chevron_left.svg';
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-20px/chevron_right.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as ChevronLeftIcon } from 'mastodon/../material-icons/400-24px/chevron_left.svg';
|
||||
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-24px/chevron_right.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { getAverageFromBlurhash } from 'mastodon/blurhash';
|
||||
import { GIFV } from 'mastodon/components/gifv';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
|
|
|
@ -5,16 +5,16 @@ import { defineMessages, injectIntl } from 'react-intl';
|
|||
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
|
||||
import { ReactComponent as BookmarksIcon } from 'mastodon/../material-icons/400-20px/bookmarks-fill.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-20px/home-fill.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-20px/list_alt.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-20px/public.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-20px/search.svg';
|
||||
import { ReactComponent as SettingsIcon } from 'mastodon/../material-icons/400-20px/settings-fill.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star-fill.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-20px/tag.svg';
|
||||
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-24px/alternate_email.svg';
|
||||
import { ReactComponent as BookmarksIcon } from 'mastodon/../material-icons/400-24px/bookmarks-fill.svg';
|
||||
import { ReactComponent as HomeIcon } from 'mastodon/../material-icons/400-24px/home-fill.svg';
|
||||
import { ReactComponent as ListAltIcon } from 'mastodon/../material-icons/400-24px/list_alt.svg';
|
||||
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-24px/more_horiz.svg';
|
||||
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-24px/public.svg';
|
||||
import { ReactComponent as SearchIcon } from 'mastodon/../material-icons/400-24px/search.svg';
|
||||
import { ReactComponent as SettingsIcon } from 'mastodon/../material-icons/400-24px/settings-fill.svg';
|
||||
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-24px/star-fill.svg';
|
||||
import { ReactComponent as TagIcon } from 'mastodon/../material-icons/400-24px/tag.svg';
|
||||
import { WordmarkLogo } from 'mastodon/components/logo';
|
||||
import { NavigationPortal } from 'mastodon/components/navigation_portal';
|
||||
import { timelinePreview, trendsEnabled } from 'mastodon/initial_state';
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-20px/notifications-fill.svg';
|
||||
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-24px/notifications-fill.svg';
|
||||
import { IconWithBadge } from 'mastodon/components/icon_with_badge';
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
|
||||
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-24px/close.svg';
|
||||
import { submitReport } from 'mastodon/actions/reports';
|
||||
import { fetchServer } from 'mastodon/actions/server';
|
||||
import { expandAccountTimeline } from 'mastodon/actions/timelines';
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue