From f3c26de1f4b5813fe3dad63da1865605031be861 Mon Sep 17 00:00:00 2001 From: Giteabot Date: Wed, 26 Jul 2023 18:34:55 +0800 Subject: [PATCH] Fix UI regression of asciinema player (#26159) (#26162) Backport #26159 by @wolfogre It was caused by updating `asciinema-player`, the upstream changed the CSS class prefix: `https://github.com/asciinema/asciinema-player/commit/40505e479e8ba6833f178a3b7e85503c72491614`
Before: image
After: image
Co-authored-by: Jason Song (cherry picked from commit 65d6bdf0be70545fd151f326160124e5e5575353) --- web_src/css/markup/asciicast.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_src/css/markup/asciicast.css b/web_src/css/markup/asciicast.css index a52b2ae12e..89696bc710 100644 --- a/web_src/css/markup/asciicast.css +++ b/web_src/css/markup/asciicast.css @@ -3,6 +3,6 @@ height: auto; } -.asciinema-terminal { +.ap-terminal { overflow: hidden !important; }