Skip to content

Workday Student tweaks by kcarnold

Details

Authorkcarnold

LicenseCC-BY-SA

Categorymyworkday.com

Created

Updated

Size1.4 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Addresses a few UX problems with Workday Student:

  1. Important actions are hidden behind invisible "twinkies".
  2. Important numbers that are also clickable are almost invisibly small.
  3. The Academic Progress page isn't glance-able to determine which requirements aren't satisfied.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Workday Student tweaks
@version      20230321.16.36
@namespace    userstyles.world/user/kcarnold
@description  Addresses a few UX problems with Workday Student:

1. Important actions are hidden behind invisible "twinkies".
2. Important numbers that are also clickable are almost invisibly small.
3. The Academic Progress page isn't glance-able to determine which requirements aren't satisfied.
@author       kcarnold
@license      CC-BY-SA
==/UserStyle== */

@-moz-document domain("myworkday.com") {
/* Unhide the twinkies */
[data-automation-id="RELATED_TASK_charm"] { opacity: 1.0 !important; }

/* Academic Progress page: highlight requirements that aren't satisfied. */
[data-automation-label="Not Satisfied"] {
    color: red;
}
[data-automation-label="Not Satisfied"]::before {
    content: "📌";
}

[data-automation-label="In Progress"] {
    color: purple;
}
[data-automation-label="In Progress"]::before {
    content: "💬";
}

[data-automation-label="Satisfied"] {
    color: grey;
}
[data-automation-label="Satisfied"]::before {
    content: "✅";
}


/* Make number-buttons not invisibly small. */
[aria-label="Plan"] button[data-automation-id="drillDownNumberLabel"] {
    /* Needs two attribute selectors to get enough specificity. */
    border: 1px outset black;
    padding: 3px;
    font-size: 150%;
}

}

Reviews

No reviews yet.