「トピック作成」の周りのこの奇妙なバーは何ですか?

I recently noticed there is this strange very hard to see bar around my “create topic” box.

Is there anything I can do to get rid of this?

image

「いいね!」 1

Do you refer to this?

#reply-control {
  […]
  box-shadow: 0 -1px 40px rgb(0 0 0 / 12%);
}
「いいね!」 2

Yes!

How do I edit this?

「いいね!」 1

Customize your theme, and in the CSS tab, write:

#reply-control {
  box-shadow: none;
}

Or whatever value you want. :paintbrush:

「いいね!」 1

As mentioned, on the element #reply-control there’s the following css:

box-shadow: 0 -1px 40px rgb(0 0 0 / 12%);

When I toggled that style off, the reply box blended into the background, so I imagine the style is there to give the appearance of the reply box “popping off” the screen so to speak.

「いいね!」 1