UNCLASSIFIED

Commit 253ef331 authored by graham.smith's avatar graham.smith
Browse files

link color cleanup

parent 59783e2c
...@@ -172,13 +172,6 @@ body { ...@@ -172,13 +172,6 @@ body {
} }
} }
.table-no-link {
color: "#BDC931";
&:hover {
color: lighten(#BDC931, 10%) !important;
}
}
.filter-input { .filter-input {
.v-input { .v-input {
input, input,
...@@ -212,9 +205,6 @@ body { ...@@ -212,9 +205,6 @@ body {
color: black !important; color: black !important;
} }
} }
.v-data-table a:hover {
text-decoration: underline;
}
.theme--dark { .theme--dark {
a.v-btn.secondary { a.v-btn.secondary {
...@@ -276,9 +266,11 @@ body { ...@@ -276,9 +266,11 @@ body {
font-size: 20px; font-size: 20px;
} }
a.link-to-team { a:not(.v-btn--icon) {
text-transform: capitalize; &.column-link-highlight,
color: $p1-light-green !important; &:hover {
color: var(--v-primary-base) !important;
}
} }
.v-data-table-header th { .v-data-table-header th {
...@@ -350,20 +342,11 @@ body { ...@@ -350,20 +342,11 @@ body {
color: map-get($material-light, "text-color"); color: map-get($material-light, "text-color");
} }
a.link-to-team {
text-transform: capitalize;
color: #0d6b90 !important;
}
.v-expansion-panel-header { .v-expansion-panel-header {
background-color: #f8f8f8; background-color: #f8f8f8;
} }
.v-data-table { .v-data-table {
a:hover {
text-decoration: underline;
}
.mdi-arrow-up::before { .mdi-arrow-up::before {
content: "\F0143"; content: "\F0143";
color: white; color: white;
...@@ -451,6 +434,10 @@ body { ...@@ -451,6 +434,10 @@ body {
} }
.v-data-table { .v-data-table {
a:hover:not(.v-btn--icon) {
text-decoration: underline;
}
td { td {
border-bottom: none !important; border-bottom: none !important;
padding-top: 8px !important; padding-top: 8px !important;
......
...@@ -75,14 +75,14 @@ ...@@ -75,14 +75,14 @@
<template v-slot:[`item.name`]="{ item }"> <template v-slot:[`item.name`]="{ item }">
<router-link <router-link
:to="{ name: 'TeamDetails', params: { teamId: item.id } }" :to="{ name: 'TeamDetails', params: { teamId: item.id } }"
class="link-to-team" class="column-link-highlight"
> >
{{ item.name }} {{ item.name }}
</router-link> </router-link>
</template> </template>
<template v-slot:[`item.poc`]="{ item }" class="team-leads"> <template v-slot:[`item.poc`]="{ item }" class="team-leads">
<div <div
class="d-flex flex-wrap white-space-nowrap table-no-link" class="d-flex flex-wrap white-space-nowrap"
v-for="(lead, index) in item.leads" v-for="(lead, index) in item.leads"
:key="index" :key="index"
> >
......
...@@ -130,10 +130,9 @@ ...@@ -130,10 +130,9 @@
<template v-slot:[`item.name`]="{ item }"> <template v-slot:[`item.name`]="{ item }">
<router-link <router-link
:to="{ name: 'TrainingDetails', params: { trainingId: item.id } }" :to="{ name: 'TrainingDetails', params: { trainingId: item.id } }"
class="table-no-link" class="column-link-highlight"
> >
<a class="table-no-link">{{ item.name }}</a> {{ item.name }}
</router-link> </router-link>
</template> </template>
<template v-slot:[`item.instructors`]="{ item }"> <template v-slot:[`item.instructors`]="{ item }">
...@@ -146,7 +145,7 @@ ...@@ -146,7 +145,7 @@
<a <a
:href="`mailto:${instructor.email}`" :href="`mailto:${instructor.email}`"
target="_blank" target="_blank"
class="white-space-nowrap table-no-link" class="white-space-nowrap"
> >
{{ instructor.name }}</a {{ instructor.name }}</a
> >
...@@ -519,8 +518,5 @@ export default { ...@@ -519,8 +518,5 @@ export default {
border: none !important; border: none !important;
} }
} }
.link{
color: "#BDC931"
}
} }
</style> </style>
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment