2941692d3e4198ba220b16c9b791c9090aa69fbc
lrnassar
  Wed Sep 9 17:20:31 2026 -0700
Reduce the font size of image captions on static pages so they read as distinct from
body text. No RM.

p.gbsCaption had no font-size, so captions rendered at the same size as body copy.
Note this is the copy of gbStatic.css under staticStyle/, which is the one the
gbPageStart includes load; the copy under style/ is not referenced by any page.

diff --git src/hg/htdocs/staticStyle/gbStatic.css src/hg/htdocs/staticStyle/gbStatic.css
index 22963437cce..c6b9f5075b1 100644
--- src/hg/htdocs/staticStyle/gbStatic.css
+++ src/hg/htdocs/staticStyle/gbStatic.css
@@ -233,30 +233,31 @@
 .gbsPage img {
     border: 1px solid black;
     margin-left: 15px;
     margin-top: 10px;
 }
 
 /* small embedded image, e.g. for special characters or symbols */
 
 img.gbsInlineImg {
     border: 0;
     margin: 0;
 }
 
 p.gbsCaption {
     margin-top: 5px;
+    font-size: 0.9em;
 }
 
 /* TODO: remove these two -- we should use bootstrap class text-right in wrapper element instead */
 
 p.gbsAlignRight {
     text-align: right;
 }
 
 img.gbsAlignRight {
     float: right !important;
 }
 
 /* Text alignment in table cells requires override in our version of bootstrap (revisit later) */
 /* TODO: Remove if confirmed unneeded.
 .gbsPage table text-center {