linking:
- update layout for communities - clean up code for communities - update css for select/remove buttons
This commit is contained in:
parent
ffffa5d8e2
commit
40cf427940
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue