/*
 * Copyright 2022 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* This style matches the cssVar style */

.animation-name-link:not(.undefined) {
  cursor: pointer;
  text-underline-offset: 2px;
  color: var(--sys-color-primary);
}

.animation-name-link:hover:not(.undefined) {
  text-decoration: underline;
}

.animation-name-link:focus:not(:focus-visible) {
  outline: none;
}

.animation-name-link.undefined {
  --override-animation-name-link-undefined-color: var(--sys-color-state-disabled);

  color: var(--override-animation-name-link-undefined-color);
}
