From a72e9dfbed4fff988fb6c9e17a57f6e7acd7814e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20Bo=CC=88ning?= Date: Sat, 7 Aug 2021 21:28:06 +0200 Subject: [PATCH] Ensure resource table ends before filter/tag bar A wide resource table in combination with the sidebar for filter/tags made the table slip under the sidebar. As a consequence it would hide the edit/delete buttons and even some attributes. This commit enforces the width of the resource-table-wrapper can always only be as wide as it doesn't slip under the library_sidebar. --- app/assets/stylesheets/alchemy/archive.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/alchemy/archive.scss b/app/assets/stylesheets/alchemy/archive.scss index 02a39c86da..39a8183c06 100644 --- a/app/assets/stylesheets/alchemy/archive.scss +++ b/app/assets/stylesheets/alchemy/archive.scss @@ -20,7 +20,8 @@ padding-bottom: 60px; &.with_tag_filter { - padding-right: 242px; + width: calc(100% - 235px); + overflow-x: auto; } }