We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e17ba3 commit bffc13aCopy full SHA for bffc13a
jupyter/utils/addons/apply.sh
@@ -31,6 +31,12 @@ fi
31
32
curl -o "$static_dir/pf.css" "$pf_url"
33
34
+# Patternfly implemented some changes, setting the default height on iframe objects to "auto", which
35
+# excluded the default 800px height of Tensorboard's IFrame object. This stylesheet will simply search
36
+# for all IFrames that contain `tensorboard` on its URL and add a default height of 800px to it, and only
37
+# on it.
38
+echo "iframe[id*=\"tensorboard\"] { height: 800px !important }" >> "$static_dir/pf.css"
39
+
40
head_content=$(tr -d '\n' <"$head_file" | sed 's/@/\\@/g')
41
body_content=$(tr -d '\n' <"$body_file" | sed 's/@/\\@/g')
42
0 commit comments