Removing empty state image from search, bookmarks, backlinks etc. #419
Replies: 1 comment 1 reply
-
try this .tag-pane-empty::before,
.bookmarks-pane-empty::before,
.pane-empty::before,
.search-empty-state::before {
width: 0px;
height: 0px;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! How can I remove the empty state image from the panels. I'm using snippet below to remove it from search, backlinks and bookmarks but finding something that works for the properties and outline panels proved difficult.
/* Remove images from empty states in Borders theme */ .search-empty-state::before, .nav-empty-state::before, .bookmarks-pane-empty::before { display: none !important; content: "" !important; }
Beta Was this translation helpful? Give feedback.
All reactions