From d6126719bcfa84d4167a64dcf346bdc5b14775bc Mon Sep 17 00:00:00 2001 From: Jessica Lawshe Date: Mon, 24 Sep 2018 15:59:44 -0500 Subject: [PATCH 1/3] Alternate
color for content pages --- services/web/public/stylesheets/app/content_page.less | 3 +++ services/web/public/stylesheets/core/ol-variables.less | 1 + 2 files changed, 4 insertions(+) diff --git a/services/web/public/stylesheets/app/content_page.less b/services/web/public/stylesheets/app/content_page.less index 6e6374d944..2fb31b137f 100644 --- a/services/web/public/stylesheets/app/content_page.less +++ b/services/web/public/stylesheets/app/content_page.less @@ -6,4 +6,7 @@ a:not(.btn) { color: @link-color-alt; } + hr { + border-color: @hr-border-alt; + } } \ No newline at end of file diff --git a/services/web/public/stylesheets/core/ol-variables.less b/services/web/public/stylesheets/core/ol-variables.less index 6bf5284ad5..de3eaf9e3b 100644 --- a/services/web/public/stylesheets/core/ol-variables.less +++ b/services/web/public/stylesheets/core/ol-variables.less @@ -53,6 +53,7 @@ @link-active-color : @ol-dark-green; @link-hover-color : @ol-dark-blue; @hr-border : @ol-blue-gray-1; +@hr-border-alt : @gray-lighter; // Button colors and sizing @btn-border-width : 0; From 7fddf589163b98b82242a8cf0e873d688218d171 Mon Sep 17 00:00:00 2001 From: Jessica Lawshe Date: Mon, 24 Sep 2018 16:05:28 -0500 Subject: [PATCH 2/3] Green tab links --- services/web/public/stylesheets/components/tabs.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web/public/stylesheets/components/tabs.less b/services/web/public/stylesheets/components/tabs.less index ff7b025fdc..c3e25ce546 100644 --- a/services/web/public/stylesheets/components/tabs.less +++ b/services/web/public/stylesheets/components/tabs.less @@ -13,7 +13,7 @@ float: none; a { border: 0; - color: @link-color; + color: @link-color-alt; &:hover { background-color: transparent!important; border: 0!important; From 670129049ff29b0eb1cf3b36f5b406eb76dd4354 Mon Sep 17 00:00:00 2001 From: Jessica Lawshe Date: Mon, 24 Sep 2018 16:12:13 -0500 Subject: [PATCH 3/3] Fix text wrapping on quotes --- services/web/public/stylesheets/app/content_page.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/web/public/stylesheets/app/content_page.less b/services/web/public/stylesheets/app/content_page.less index 2fb31b137f..bfef7e7fc8 100644 --- a/services/web/public/stylesheets/app/content_page.less +++ b/services/web/public/stylesheets/app/content_page.less @@ -9,4 +9,7 @@ hr { border-color: @hr-border-alt; } + .quote-by { + overflow: hidden; + } } \ No newline at end of file