From 365ff89c1682b6acd4530226f561e3bbbf8414e3 Mon Sep 17 00:00:00 2001 From: Paul Craig Date: Tue, 24 Dec 2024 11:10:58 -0500 Subject: [PATCH] Move utility classes so that they will show up in the edit view --- bloom_nofos/bloom_nofos/static/shared.css | 18 ++++++++++++++++++ bloom_nofos/bloom_nofos/static/theme-base.css | 16 ---------------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/bloom_nofos/bloom_nofos/static/shared.css b/bloom_nofos/bloom_nofos/static/shared.css index af2fef9f..681559b4 100644 --- a/bloom_nofos/bloom_nofos/static/shared.css +++ b/bloom_nofos/bloom_nofos/static/shared.css @@ -24,6 +24,8 @@ --color--staging-coral: #f08080; } +/* Utility classes */ + .bg-group--bloom { background-color: var(--color--bloom-green); } @@ -60,6 +62,22 @@ background-color: var(--color--staging-coral); } +.list-lower-roman { + list-style-type: lower-roman; +} + +.list-upper-roman { + list-style-type: upper-roman; +} + +.list-lower-alpha { + list-style-type: lower-alpha; +} + +.list-upper-alpha { + list-style-type: upper-alpha; +} + .usa-table--font-size-1 { font-size: 1rem; } diff --git a/bloom_nofos/bloom_nofos/static/theme-base.css b/bloom_nofos/bloom_nofos/static/theme-base.css index d97cd3b1..e5fd6a6d 100644 --- a/bloom_nofos/bloom_nofos/static/theme-base.css +++ b/bloom_nofos/bloom_nofos/static/theme-base.css @@ -147,22 +147,6 @@ h2 { /* Utility classes */ -.list-lower-roman { - list-style-type: lower-roman; -} - -.list-upper-roman { - list-style-type: upper-roman; -} - -.list-lower-alpha { - list-style-type: lower-alpha; -} - -.list-upper-alpha { - list-style-type: upper-alpha; -} - .w-100, .w-full { width: 100%;