qrac / musubii

Simple CSS Framework for JP
https://musubii.qranoko.jp
149 stars 6 forks source link

WYSIWYG:別のエレメントに依存していた変数を分離 #248

Closed qrac closed 4 years ago

qrac commented 4 years ago
@mixin musubii-style-wysiwyg-text-link() {
  a {
    cursor: pointer;
    color: $wysiwyg-link-text-color;
    @if $text-link-border-change-underline == true {
      text-decoration: underline;
      &:hover {
        text-decoration: none;
      }
    } @else {
      border-bottom: $text-link-border-bottom-width
        $text-link-border-bottom-style
        currentColor;
      &:hover,
      &:active {
        border-bottom-color: transparent;
      }
    }
  }
}

など。上記は $text-xxx の変数が含まれたSCSSファイルを読み込んでいないと、configs + _wisywig.scss といったミニマムな使い方ができなくなる。

$wysiwyg-xxx の変数を個別に設定する。

qrac commented 4 years ago

v7.0.0から反映。