/* ============================================================
   Sternenschwert — Custom Cursor (Schalter "Cursor" im Footer)
   Aktiv nur bei html[data-cursor="on"]; Dateien liegen in
   images/cursors/. Zuordnung (Vorlage: Spender-Style):
     normal.cur  -> Standardpfeil ueberall
     link.cur    -> Textlinks
     pointer.cur -> Buttons, Dropdowns, Checkboxen
   text.cur ist auf Auras Ansage bewusst nicht eingebunden.
   ============================================================ */

html[data-cursor="on"] body {
    cursor: url('../images/cursors/normal.cur'), auto;
}

html[data-cursor="on"] a {
    cursor: url('../images/cursors/link.cur'), pointer;
}

html[data-cursor="on"] button,
html[data-cursor="on"] select,
html[data-cursor="on"] label,
html[data-cursor="on"] input[type="checkbox"],
html[data-cursor="on"] input[type="submit"],
html[data-cursor="on"] .s2dd-liste li {
    cursor: url('../images/cursors/pointer.cur'), pointer;
}
