Sha256: bc0b666c970d6925e84e9b2dfe4291415f5a5a4131cb91b15402b036f9ff87aa

Contents?: true

Size: 545 Bytes

Versions: 28

Compression:

Stored size: 545 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;
    margin-right: 0;
    @include typography($page-anchor-typography)
  }

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

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
pageflow-15.0.0.rc2 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-15.0.0.rc1 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-15.0.0.beta4 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-15.0.0.beta3 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-14.4.0 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-15.0.0.beta2 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-15.0.0.beta1 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss
pageflow-14.3.0 app/assets/stylesheets/pageflow/themes/default/page/anchors.scss