diff --git a/frontends/etiquette_flask/templates/clipboard.html b/frontends/etiquette_flask/templates/clipboard.html index 71fe6b3..a7e1641 100644 --- a/frontends/etiquette_flask/templates/clipboard.html +++ b/frontends/etiquette_flask/templates/clipboard.html @@ -84,10 +84,24 @@ bottom: 8px; height: 200px; + outline: 8px solid var(--color_theme_primary); + background-color: var(--color_theme_primary) !important; + grid-template: "toolbox message_area" 1fr /1fr minmax(50px, 200px); } + #right:before + { + content: ""; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + background-color: var(--color_site_transparency); + z-index: -1; + } } diff --git a/frontends/etiquette_flask/templates/tags.html b/frontends/etiquette_flask/templates/tags.html index b78d671..b1de92f 100644 --- a/frontends/etiquette_flask/templates/tags.html +++ b/frontends/etiquette_flask/templates/tags.html @@ -81,10 +81,24 @@ h2, h3 bottom: 8px; height: 150px; + outline: 8px solid var(--color_theme_primary); + background-color: var(--color_theme_primary) !important; + grid-template: "editor_area message_area" 1fr /1fr minmax(50px, 200px); } + #right:before + { + content: ""; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + background-color: var(--color_site_transparency); + z-index: -1; + } }