Sha256: f7c0466ceb3d9bc92d79f8b65d07cd47b73bdbe78aa8fe641d3275003c193143

Contents?: true

Size: 837 Bytes

Versions: 15

Compression:

Stored size: 837 Bytes

Contents

/// Color of the caret icon displayed in front of links. Same as text
/// color by default.
$anchor-icon-color: null !default;

$anchor-external-links-icon: false !default;

%anchor {
  @include fa-caret-right-icon;

  [dir=rtl] & {
    @include fa-caret-left-icon;
  }

  text-decoration: none;
  pointer-events: auto;
  position: relative;
  margin-left: 6px;
  margin-right: 6px;

  @include phone {
    margin-left: 5px;
    margin-right: 5px;
  }

  &:hover {
    text-decoration: underline;
  }

  &:before {
    display: inline-block;
    top: 7px;
    width: 10px;
    height: 12px;
    color: $anchor-icon-color;
  }

  @if $anchor-external-links-icon {
    &[target="_blank"] {
      @include fa-external-link-icon;

      &:before {
        width: 18px;
        font-size: 12px;
        font-weight: bold;
      }
    }
  }
}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
pageflow-17.0.4 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-17.0.3 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-17.0.2 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-17.0.1 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-17.0.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-16.2.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-16.1.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-16.0.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-15.8.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-15.7.1 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-15.7.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-15.6.1 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-15.6.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-15.5.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss
pageflow-15.4.0 app/assets/stylesheets/pageflow/themes/default/anchors.scss