1

在 Zurb Foundation 中,可以通过调整文件中的$anchor-font-color-hoverfrom darken()to来更改悬停效果以点亮链接。lighten()_settings.sass

但是对于按钮(和其他背景),没有这样的选项。如何使所有按钮的悬停效果lighten代替darken

4

1 回答 1

1

编辑button-style混合_buttons.scss

@mixin button-style($bg:$primary-color, $radius:false, $disabled:false) {
  ...
    &:hover,
    &:focus { background-color: lighten($bg, $button-function-factor);
  ... }

Github

于 2013-04-28T15:28:26.110 回答