link-hover added

This commit is contained in:
Silke Pisulla 2017-01-03 11:42:09 +01:00
commit 522fc138e1
4 changed files with 29 additions and 18 deletions

View file

@ -9,28 +9,36 @@
/* converted vars */
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
@height-context-bar: 50px;
@background_page-header: __background_page-header__;
@border-radius: __default_border_radius__;
@border-radius: __default_border_radius__;
@font_family_screen: __font_family_screen__;
@font_family_screen: __font_family_screen__;
@color-border: __border__;
@color-nav: __nav_menu_color__;
@color-nav-hover: __nav_menu_hover_color__;
@color-nav-hover-bg: __nav_menu_hover_bg__;
@color-text: __text__;
@color-border: __border__;
@color-nav: __nav_menu_color__;
@color-nav-hover: __nav_menu_hover_color__;
@color-nav-hover-bg: __nav_menu_hover_bg__;
@color-content-bg: __background_content__;
@color-site-bg: __background_site__;
@color-content-bg: __background_content__;
@color-site-bg: __background_site__;
@color-link: __existing__;
@color-link: __existing__;
@color-link-hover: @color-nav;
@box-shadow-offset: __box_shadow_offset__;
@box-shadow: __box_shadow__;
@box-shadow-colored: __box_shadow_colored__;
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* global vars */
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
@margin-small: .5rem;
@height-context-bar: 50px;
@margin-small: 1rem;
@margin-default: 1.5rem;
@margin-big: 2.5rem;
@ -120,10 +128,6 @@
@grid-columns: 12;
@box-shadow-offset: __box_shadow_offset__;
@box-shadow: __box_shadow__;
@box-shadow-colored:__box_shadow_colored__;
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* all media */
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */

View file

@ -29,8 +29,10 @@ $lang['tasks_page_none'] = 'keine offenen Aufgaben für diese Seite';
$lang['discussion'] = 'Diskussion';
$lang['back_to_article'] = 'Zurück zum Artikel';
$lang['userpage'] = 'Benutzer-Seite';
$lang['__existing__'] = 'The color for links to existing pages';
$lang['__missing__'] = 'The color for links to non-existing pages';
$lang['__existing__'] = 'Schriftfarbe für Links zu vorhandenen Webseiten';
$lang['__existing-hover__'] = 'Hoverfarbe für Links zu vorhandenen Webseiten';
$lang['__missing__'] = 'Schriftfarbe für Links zu nicht vorhandenen Webseiten';
$lang['__missing-hover__'] = 'Hoverfarbe für Links zu nicht vorhandenen Webseiten';
$lang['__site_width__'] = 'The width of the full site (can be any length unit: %, px, em, ...)';
$lang['__sidebar_width__'] = 'The width of the sidebar, if any (can be any length unit: %, px, em, ...)';

View file

@ -30,6 +30,8 @@ $lang['discussion'] = 'Discussion';
$lang['back_to_article'] = 'Back to article';
$lang['userpage'] = 'User page';
$lang['__existing__'] = 'The color for links to existing pages';
$lang['__existing-hover__'] = 'The hover-color for links to existing pages';
$lang['__missing__'] = 'The color for links to non-existing pages';
$lang['__missing-hover__'] = 'The hover-color for links to non-existing pages';
$lang['__site_width__'] = 'The width of the full site (can be any length unit: %, px, em, ...)';
$lang['__sidebar_width__'] = 'The width of the sidebar, if any (can be any length unit: %, px, em, ...)';

View file

@ -121,8 +121,10 @@ __highlight__ = "#efefef" ; @ini_highlight
; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
; these are used for links
__existing__ = "#286da8" ; @ini_existing
__existing__ = "#286DA8" ; @ini_existing
__existing-hover__ = "#286DA8"
__missing__ = "#CD5360" ; @ini_missing
__missing-hover__ = "#CD5360"
; widths
__site_width__ = "64em" ; @ini_site_width
@ -146,3 +148,4 @@ __background_site__ = "#ECECEC"
__default_border_radius__ = "5px"
__background_page-header__ = "#F9F9F9"