/* ===================================================================
   File: dashboard-view-edit-button.css
   Description: Dashboard-only visual normalization for the View & Edit action.
   Notes:
   - The dashboard renderer currently emits View & Edit with the legacy
     .ll-btn--ghost variant while neighboring row actions use the canonical
     neutral/secondary button treatment.
   - This rule is deliberately scoped to .post-actions .view-dashboard.
   - It reuses the canonical button-system variables from buttons.css.
   =================================================================== */

body .post-actions :is(a, button, input).ll-btn.view-dashboard {
  padding: var(--ll-btn-padding-y) var(--ll-btn-padding-x);
  border-color: var(--ll-color-secondary-border);
  background: #ffffff;
  color: var(--ll-color-secondary-text);
  box-shadow: var(--ll-btn-shadow);
  text-decoration: none;
}

body .post-actions :is(a, button, input).ll-btn.view-dashboard:hover {
  border-color: var(--ll-color-secondary-border);
  background: var(--ll-color-secondary-hover);
  color: var(--ll-color-secondary-text);
  box-shadow: var(--ll-btn-shadow-hover);
  text-decoration: none;
}

body .post-actions :is(a, button, input).ll-btn.view-dashboard:active {
  border-color: var(--ll-color-secondary-border);
  background: var(--ll-color-secondary-active);
  color: var(--ll-color-secondary-text);
  box-shadow: none;
  text-decoration: none;
  transform: translateY(1px);
}
