Change three-dots svg (#8746)
This commit is contained in:
parent
0a41ff658b
commit
2deadc2385
7 changed files with 7 additions and 7 deletions
|
|
@ -51,7 +51,7 @@ function buildCommentHTML(comment) {
|
|||
</a>\
|
||||
</div>\
|
||||
<button class="dropbtn">\
|
||||
<%= image_tag("three-dots.svg", class: "dropdown-icon", alt: "Toggle dropdown menu") %>\
|
||||
<%= image_tag("overflow-horizontal.svg", class: "dropdown-icon", alt: "Toggle dropdown menu") %>\
|
||||
</button>\
|
||||
<div class="dropdown">\
|
||||
<div class="crayons-dropdown p-1 z-30 right-1 left-1 s:right-0 s:left-auto fs-base">\
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import { h } from 'preact';
|
||||
import PropTypes from 'prop-types';
|
||||
// eslint-disable-next-line import/no-unresolved
|
||||
import ConfigImage from 'images/three-dots.svg';
|
||||
import ConfigImage from 'images/overflow-horizontal.svg';
|
||||
import ChannelButton from './components/channelButton';
|
||||
import { channelSorter } from './util';
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/* eslint-disable consistent-return,no-unused-vars,react/destructuring-assignment,react/no-access-state-in-setstate,react/button-has-type */
|
||||
import { h, Component } from 'preact';
|
||||
import PropTypes from 'prop-types';
|
||||
import ConfigImage from '../../assets/images/three-dots.svg';
|
||||
import ConfigImage from '../../assets/images/overflow-horizontal.svg';
|
||||
import {
|
||||
conductModeration,
|
||||
getAllMessages,
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import PropTypes from 'prop-types';
|
||||
import { h, Component, createRef } from 'preact';
|
||||
// eslint-disable-next-line import/no-unresolved
|
||||
import ThreeDotsIcon from 'images/three-dots.svg';
|
||||
import ThreeDotsIcon from 'images/overflow-horizontal.svg';
|
||||
import listingPropTypes from './listingPropTypes';
|
||||
|
||||
const MenuButton = ({ onClick }) => (
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<% end %>
|
||||
<%= render "comments/comment_date", decorated_comment: decorated_comment %>
|
||||
<button class="dropbtn" aria-label="Toggle dropdown menu">
|
||||
<%= image_tag("three-dots.svg", class: "dropdown-icon", alt: "Dropdown menu") %>
|
||||
<%= image_tag("overflow-horizontal.svg", class: "dropdown-icon", alt: "Dropdown menu") %>
|
||||
</button>
|
||||
<div class="dropdown">
|
||||
<div class="crayons-dropdown p-1 z-30 right-1 left-1 s:right-0 s:left-auto fs-base">
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
</div>
|
||||
|
||||
<div class="ellipsis-menu">
|
||||
<button class="ellipsis-menu-btn"><img src="<%= asset_path("three-dots.svg") %>" class="dropdown-icon" alt="dropdown menu icon"></button>
|
||||
<button class="ellipsis-menu-btn"><img src="<%= asset_path("overflow-horizontal.svg") %>" class="dropdown-icon" alt="dropdown menu icon"></button>
|
||||
<ul class="ellipsis-menu hidden">
|
||||
<hr />
|
||||
<li class="ellipsis-menu-item">
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@
|
|||
<%= render "articles/user_metadata", context: "profile" %>
|
||||
<div class="profile-dropdown" data-username="<%= @user.username %>">
|
||||
<button id="user-profile-dropdown">
|
||||
<%= image_tag("three-dots.svg", class: "dropdown-icon", alt: "Toggle dropdown menu") %>
|
||||
<%= image_tag("overflow-horizontal.svg", class: "dropdown-icon", alt: "Toggle dropdown menu") %>
|
||||
</button>
|
||||
<div id="user-profile-dropdownmenu" class="profile-dropdownmenu">
|
||||
<button id="user-profile-dropdownmenu-block-button" data-profile-user-id="<%= @user.id %>" class="block-button" type="button">Block @<%= @user.username %></button>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue