SPR-742: Konfigurierbarkeit

This commit is contained in:
Silke Pisulla 2017-03-17 15:18:43 +01:00
commit 03fb160ea0
2 changed files with 25 additions and 17 deletions

View file

@ -162,9 +162,9 @@
position: absolute; position: absolute;
right: -.4rem; right: -.4rem;
top: -.4em; top: -.4em;
background-color: @button_background; background-color: @color-nav-hover;
border-radius: 2px; border-radius: 2px;
color: @button_color; color: @color-nav-hover-bg;
font-size: @font-size-very-small; font-size: @font-size-very-small;
font-weight: 400; font-weight: 400;
text-align: center; text-align: center;
@ -178,8 +178,8 @@
&:active, &:active,
&:focus { &:focus {
.num { .num {
background-color: @button_background; background-color: @color-nav-hover;
color: @button_color; color: @color-nav-hover-bg;
} }
} }
} }

View file

@ -147,9 +147,6 @@ __link__ = "#286DA8"
__existing__ = "#286DA8" ; @ini_existing __existing__ = "#286DA8" ; @ini_existing
__missing__ = "#CD5360" ; @ini_missing __missing__ = "#CD5360" ; @ini_missing
__button_color__ = "#FFF"
__button_background__ = "#286DA8"
; widths ; widths
__site_width__ = "64em" ; @ini_site_width __site_width__ = "64em" ; @ini_site_width
__sidebar_width__ = "16em" ; @ini_sidebar_width __sidebar_width__ = "16em" ; @ini_sidebar_width
@ -158,22 +155,33 @@ __font_family_screen__ = "arial, sans-serif"
__font_family_menu__ = "arial, sans-serif" __font_family_menu__ = "arial, sans-serif"
__font_family_print__ = "'times new roman', serif" __font_family_print__ = "'times new roman', serif"
__nav_direct_background__ = "#FFF" __background_content__ = "#FFF"
__nav_direct_color__ = "#286da8" __background_site__ = "#ECECEC"
__background_page-header__ = "#F6F6F6"
__default_border_radius__ = "3px"
__border_light__ = "#dadada"
__box_shadow_colored__ = "0 0 .5em rgba(40,109,168,.5)" __box_shadow_colored__ = "0 0 .5em rgba(40,109,168,.5)"
__box_shadow__ = "0 0 .5em rgb(153,153,153,.5)" __box_shadow__ = "0 0 .5em rgb(153,153,153,.5)"
__box_shadow_right_bottom__ = "0.1em 0.3rem 0.5em rgb(153,153,153,.5)" __box_shadow_right_bottom__ = "0.1em 0.3rem 0.5em rgb(153,153,153,.5)"
__box_shadow_bottom__ = "0 0.1em 0.5em rgb(153,153,153,.5)" __box_shadow_bottom__ = "0 0.1em 0.5em rgb(153,153,153,.5)"
__box_shadow_offset__ = ".1em .1em .1em rgb(153,153,153,.5)" __box_shadow_offset__ = ".1em .1em .1em rgb(153,153,153,.5)"
__nav_menu_color__ = "#696969"
__nav_menu_hover_color__ = "#286da8"
__nav_menu_hover_bg__ = "#FFF"
__background_content__ = "#FFF" __nav_direct_background__ = "#FFF"
__background_site__ = "#ECECEC" __nav_direct_color__ = "#286da8"
__default_border_radius__ = "3px"
__background_page-header__ = "#F6F6F6" ; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
; icons: usertools, pagetools, metabox, tabbox
__border_light__ = "#dadada" __nav_menu_color__ = "#00FF00";"#696969"
__nav_menu_hover_color__ = "#008000";"#286da8"
__nav_menu_hover_bg__ = "#C0FFC0";"#FFF"
; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
; buttons: submit, links styled like buttons, togglebuttons
__button_color__ = "#FFF"
__button_background__ = "#286DA8"