diff options
author | sebastian-sauer <sauer.sebastian@gmail.com> | 2023-11-17 19:35:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 18:35:51 +0000 |
commit | e31c6cfe6e30341c502302d1c0a03138f8bf5c9f (patch) | |
tree | 7a0bad3af6f6f0d173cd1d46dd840be4fd74c12b /web_src | |
parent | f63b1166970705454f62059cf46f3fbc6f0c8871 (diff) | |
download | gitea-e31c6cfe6e30341c502302d1c0a03138f8bf5c9f.tar.gz gitea-e31c6cfe6e30341c502302d1c0a03138f8bf5c9f.zip |
Fix Show/hide filetree button on small displays (#27881)
the gt-df's display:flex !important did override the display:none on small displays
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/css/repo.css | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css index 6bddbe9ba5..e37788505e 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -2743,26 +2743,6 @@ tbody.commit-list { overflow-y: auto; } -.diff-toggle-file-tree-button { - background: none; - border: none; - user-select: none; - color: inherit; -} - -.diff-toggle-file-tree-button:hover { - color: var(--color-primary); -} - -@media (max-width: 991.98px) { - #diff-file-tree { - display: none !important; - } - .diff-toggle-file-tree-button { - display: none !important; - } -} - .ui.message.unicode-escape-prompt { margin-bottom: 0; border-radius: 0; |