How to identify and edit/remove Ember elements?

Hi @b481

You can use the [ attribute=value ] selector:

Reference:

https://www.w3schools.com/cssref/sel_attribute_value.asp

with the attribute of title and the value of Blockquote (⌘⇧9)

For example (untested)

button[title="Blockquote (⌘⇧9)"]
{
  display:none;
}

Or perhaps:

button[title*="Blockquote"]
{
  display:none;
}

Did not test it, so. you might need to tweak it.

In addition, another “crude” way to do it is to just hide the svg element only:

svg.d-icon-quote-right
{
   display:none;
}

There are other possible CSS selectors to work out as well. I am sure others have even better selectors to suggest.

Hopefully, this helps you along your journey a bit.

See also:

  1. CSS Attribute Selector

  2. Below

2 Likes