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

Fix theming stuff

parent f5afacb0
No related branches found
No related tags found
No related merge requests found
Pipeline #194240 passed
...@@ -325,6 +325,7 @@ export function getGeneralCSS(doMarginPaddingReset = true) { ...@@ -325,6 +325,7 @@ export function getGeneralCSS(doMarginPaddingReset = true) {
select:not(.select), .dropdown-menu { select:not(.select), .dropdown-menu {
-moz-appearance: none; -moz-appearance: none;
-webkit-appearance: none; -webkit-appearance: none;
background-color: var(--dbp-background);
background: calc(100% - 0.2rem) center no-repeat url("${unsafeCSS( background: calc(100% - 0.2rem) center no-repeat url("${unsafeCSS(
getIconSVGURL('chevron-down') getIconSVGURL('chevron-down')
)}"); )}");
...@@ -636,12 +637,19 @@ export function getButtonCSS() { ...@@ -636,12 +637,19 @@ export function getButtonCSS() {
button.button.is-icon, .button.is-icon { button.button.is-icon, .button.is-icon {
border: none; border: none;
background: none;
font-size: 1.5rem; font-size: 1.5rem;
padding: 0px; padding: 0px;
width: 40px; width: 40px;
height: 40px; height: 40px;
} }
button.button.is-icon:hover:enabled,
.button.is-icon:hover:enabled {
background-color: var(--dbp-hover-background-color, unset);
color: var(--dbp-hover-color, var(--dbp-content));
}
button.button.is-primary, button.button.is-primary,
.button.is-primary { .button.is-primary {
background-color: var(--dbp-primary-surface); background-color: var(--dbp-primary-surface);
......
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