[develop]: Change color of links and button links to be global

This commit is contained in:
Konstantinos Triantafyllou 2023-11-21 17:45:13 +02:00
parent 928dfa11bd
commit 7aa9e57719
3 changed files with 8 additions and 5 deletions

View File

@ -76,8 +76,8 @@
@button-text-hover-color: @button-text-color;
/* Link */
@button-link-color: @global-primary-background;
@button-link-hover-color: @global-secondary-background;
@button-link-color: @openaire-primary-color;
@button-link-hover-color: @openaire-secondary-color;
/* Disabled */
@button-disabled-box-shadow: none;

View File

@ -1,5 +1,8 @@
@primary-color: #211F7E;
@primary-light-color: #4687E6;
@openaire-primary-color: #211F7E;
@openaire-secondary-color: #4687E6;
@primary-color: @openaire-primary-color;
@primary-light-color: @openaire-secondary-color;
@primary-dark-color: #1F2379;
@secondary-color: #3086ED;

View File

@ -17,7 +17,7 @@
@global-link-color: @info-color;
@global-muted-color: @disable-color;
@global-meta-color: @placeholder-color;
@global-link-hover-color: @secondary-color;
@global-link-hover-color: @openaire-secondary-color;
@global-overlay-background: fade(@black-color, 60%);
/** Backgrounds */