- update layout  for communities
- clean up code for communities
- update css for select/remove buttons
This commit is contained in:
argirok 2022-05-12 17:59:13 +03:00
parent ffffa5d8e2
commit 40cf427940
1 changed files with 19 additions and 0 deletions

View File

@ -4,6 +4,12 @@
--linking-next-step-disabled-color: var(--disable-color);
--linking-next-step-active-background: var(--primary-color);
--linking-next-step-active-color: white;
--linking-result-button-selected-background: var(--secondary-color);
--linking-result-button-selected-color: white;
--linking-result-button-selected-border: var(--secondary-color);
--linking-result-button-enabled-background: white;
--linking-result-button-enabled-color: var(--primary-color);
--linking-result-button-enabled-border: var(--primary-color);
}
.linkingBasket{
@ -20,3 +26,16 @@
background-color: var(--linking-next-step-disabled-background);
color: var(--linking-next-step-disabled-color);
}
.community-card .uk-icon-button.selected, .claim-result-card .uk-icon-button.selected{
background-color: var(--linking-result-button-selected-background);
color: var(--linking-result-button-selected-color) !important;
border-color: var(--linking-result-button-selected-border);
box-shadow: none;
}
.community-card .uk-icon-button.enabled, .claim-result-card .uk-icon-button.enabled{
background-color: var(--linking-result-button-enabled-background);
color: var(--linking-result-button-enabled-color) !important;
border:1px solid var(--linking-result-button-enabled-border);
box-shadow: none;
}