UNCLASSIFIED

Commit 3db0ef16 authored by hunter.congress's avatar hunter.congress
Browse files

link color

parent 7ca91ec4
...@@ -173,9 +173,9 @@ body { ...@@ -173,9 +173,9 @@ body {
} }
.table-no-link { .table-no-link {
color: #12b5f6; color: "#BDC931";
&:hover { &:hover {
color: lighten(#12b5f6, 10%) !important; color: lighten(#BDC931, 10%) !important;
} }
} }
......
...@@ -72,6 +72,7 @@ ...@@ -72,6 +72,7 @@
:items="trainingCourse.instructorsCombined" :items="trainingCourse.instructorsCombined"
hide-default-footer hide-default-footer
mobile-breakpoint="800" mobile-breakpoint="800"
calculate-widths
:loading="loading" :loading="loading"
> >
<template v-slot:top> <template v-slot:top>
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<template v-slot:top> <template v-slot:top>
<v-container id="teams-table-header" class="py-0 pb-8"> <v-container id="teams-table-header" class="py-0 pb-8">
<v-row> <v-row>
<v-col cols="12" md="4" class="filter-input px-0"> <v-col cols="12" md="3" class="filter-input px-0">
<v-text-field <v-text-field
v-model="filter.search" v-model="filter.search"
ref="filterSearch" ref="filterSearch"
......
...@@ -129,8 +129,9 @@ ...@@ -129,8 +129,9 @@
<router-link <router-link
:to="{ name: 'TrainingDetails', params: { trainingId: item.id } }" :to="{ name: 'TrainingDetails', params: { trainingId: item.id } }"
class="table-no-link" class="table-no-link"
> >
{{ item.name }} <a class="table-no-link">{{ item.name }}</a>
</router-link> </router-link>
</template> </template>
<template v-slot:[`item.instructors`]="{ item }"> <template v-slot:[`item.instructors`]="{ item }">
...@@ -157,7 +158,7 @@ ...@@ -157,7 +158,7 @@
<v-btn <v-btn
icon icon
color="secondary" color="secondary"
class="no-link ml-2" class="no-border no-link ml-2"
v-bind="attrs" v-bind="attrs"
v-on="on" v-on="on"
:href="`mailto:${item.instructors[0].email},${item.instructors[1].email}`" :href="`mailto:${item.instructors[0].email},${item.instructors[1].email}`"
...@@ -516,5 +517,8 @@ export default { ...@@ -516,5 +517,8 @@ 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