SU-SWS/stanford_profile

View on GitHub
themes/stanford_basic/src/scss/layout/_page.scss

Summary

Maintainability
Test Coverage

Pseudo-elements must start with double colons
Wontfix

    &:after {

Pseudo-element

Rule pseudo-element will enforce that:

  • Pseudo-elements must start with double colons.
  • Pseudo-classes must start with single colon.

Examples

When enabled, the following are allowed:

.foo::before {
  content: "bar";
}

.foo:hover {
  content: "bar";
}

When enabled, the following are disallowed:

.foo:before {
  content: "bar";
}

.foo::hover {
  content: "bar";
}

There are no issues that match your filters.

Category
Status