groton-school / knowledgebase

Knowledgebase website
https://kb.groton.org
GNU General Public License v3.0
0 stars 0 forks source link

Configurable link labels #45

Open github-actions[bot] opened 1 month ago

github-actions[bot] commented 1 month ago

https://github.com/groton-school/knowledgebase/blob/fa99cc68e5464aa46491f32b59f89f5684ad47b3/apps/ui/src/UI/LinkLabelByGroup/styles.scss#L19


 * `text-color` (Optional) defaults to white
 * `border-color` (Optional) defaults to text-color, if present, or transparent
 */
// TODO make configurable
$groups: 'for-teachers/' 'Faculty',
  'for-students/' 'Students' white Constants.$navbarColor, 'for-staff/' 'Staff',
  'for-employees/' 'Faculty & Staff', 'for-department-heads/' 'Dept. Heads',
  'for-it/' 'IT' gold black;

@each $url, $label, $color, $text, $border in $groups {
  a[href$='#{$url}'] {
    .badge {
      background: $color or Constants.$navbarColor;
      border: solid 1px ($border or $text or transparent);

      .label::before {