Sha256: eee3f279e4e4dfe87cb4c91f5ac04e650b238d633d8711409c67f6bb0cf1b5b8

Contents?: true

Size: 1.26 KB

Versions: 10

Compression:

Stored size: 1.26 KB

Contents

/* Table of Contents
==================================================
# Variables
# Link
# State */

/* # Variables
================================================== */
$colors: (
  dark-black: $color-dark-black,
  black: $color-black,
  light-black: $color-light-black,
  dark-gray: $color-dark-gray,
  gray: $color-gray,
  light-gray: $color-light-gray,
  dark-haze: $color-dark-haze,
  haze: $color-haze,
  light-haze: $color-light-haze,
  white: $color-white,
  lime: $color-lime,
  green: $color-green,
  teal: $color-teal,
  blue: $color-blue,
  indigo: $color-indigo,
  purple: $color-purple,
  pink: $color-pink,
  red: $color-red,
  orange: $color-orange,
  yellow: $color-yellow,
  primary: $color-primary,
  secondary: $color-secondary,
  tertiary: $color-tertiary
);

/* # Link
================================================== */
a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  @include transition(all 0.3s ease-in-out);
}
a[disabled] {
  cursor: not-allowed;
  pointer-events: none;
}

/* # State
================================================== */
@each $name, $color in $colors {
  .link-state-#{$name}:hover,
  .link-state-#{$name}.active,
  .link-state-#{$name}:active,
  .link-state-#{$name}.focus { color: $color !important; }
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
active_frontend-13.3.0 vendor/assets/stylesheets/_link.scss
active_frontend-13.2.0 vendor/assets/stylesheets/_link.scss
active_frontend-13.1.0 vendor/assets/stylesheets/_link.scss
active_frontend-13.0.6 vendor/assets/stylesheets/_link.scss
active_frontend-13.0.5 vendor/assets/stylesheets/_link.scss
active_frontend-13.0.4 vendor/assets/stylesheets/_link.scss
active_frontend-13.0.3 vendor/assets/stylesheets/_link.scss
active_frontend-13.0.2 vendor/assets/stylesheets/_link.scss
active_frontend-13.0.1 vendor/assets/stylesheets/_link.scss
active_frontend-13.0.0 vendor/assets/stylesheets/_link.scss