gmmatt / torgeternity

Torg Eternity System for Foundry VTT
Other
17 stars 7 forks source link

Style: Broken UUID Links -> Normal Text #382

Closed Algor0113 closed 1 month ago

Algor0113 commented 3 months ago

Refering to Drental, it's possible. I'll look through that!

Drental commented 1 month ago
a.entity-link,
a.content-link,
a.inline-roll {
  &.broken {
    color: inherit;
    text-decoration: inherit;
    cursor: text;

    &:hover {
      text-shadow: none;
    }
  }
}

might need de-scssification

Drental commented 1 month ago
a.entity-link.broken,
a.content-link.broken,
a.inline-roll.broken {
     color: inherit;
     text-decoration: inherit;
     cursor: text;
}
a.entity-link.broken:hover,
a.content-link.broken:hover,
a.inline-roll.broken:hover {
     text-shadow: none;
}