Sha256: 726035bf8d0b141b3f349b53466dff46332cd76006a70700bd218bd61540c31e

Contents?: true

Size: 524 Bytes

Versions: 4

Compression:

Stored size: 524 Bytes

Contents

////
/// @group page-colors
////

/// Color of links inside the text
$page-anchor-color: #fff !default;

/// Color of links inside the text on inverted pages
$page-anchor-inverted-color: #000 !default;

/// Typography settings of links in page content text
$page-anchor-typography: () !default;

.page {
  .page_text a {
    @extend %anchor;
    color: $page-anchor-color;
    pointer-events: all;
    @include typography($page-anchor-typography)
  }

  &.invert .page_text a {
    color: $page-anchor-inverted-color;
  }
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pageflow-14.2.1 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-14.2.0 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-14.1.1 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-14.1.0 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss