Skip to content
Snippets Groups Projects
Commit 192c8b2a authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Apply new color system

parent 50cabe94
No related branches found
No related tags found
No related merge requests found
Pipeline #70171 passed
...@@ -137,7 +137,7 @@ export function getGeneralCSS(doMarginPaddingReset = true) { ...@@ -137,7 +137,7 @@ export function getGeneralCSS(doMarginPaddingReset = true) {
} }
a.is-download { a.is-download {
border-bottom: 1px solid rgba(0,0,0,0.4); border-bottom: var(--dbp-border-dark);
transition: background-color 0.15s, color 0.15s; transition: background-color 0.15s, color 0.15s;
} }
...@@ -891,13 +891,22 @@ export function getModalDialogCSS() { ...@@ -891,13 +891,22 @@ export function getModalDialogCSS() {
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
background: rgba(0, 0, 0, 0.6);
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
z-index: 10000; z-index: 10000;
} }
.modal-overlay::before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
background-color: var(--dbp-base-dark);
opacity: 0.6;
}
.modal-container { .modal-container {
background-color: var(--dbp-base-light); background-color: var(--dbp-base-light);
max-width: 600px; max-width: 600px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment