What is this strange bar around my "Create Topic"?

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 Like

Do you refer to this?

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

Yes!

How do I edit this?

1 Like

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

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

Or whatever value you want. :paintbrush:

1 Like

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 Like