UNCLASSIFIED
Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Platform One
P
Party Bus
Launchboard
launchboard-fe
Commits
253ef331
Commit
253ef331
authored
Apr 30, 2021
by
graham.smith
Browse files
link color cleanup
parent
59783e2c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
31 deletions
+14
-31
src/scss/custom.scss
src/scss/custom.scss
+9
-22
src/views/super-admin/Teams.vue
src/views/super-admin/Teams.vue
+2
-2
src/views/super-admin/Training.vue
src/views/super-admin/Training.vue
+3
-7
No files found.
src/scss/custom.scss
View file @
253ef331
...
@@ -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
;
...
...
src/views/super-admin/Teams.vue
View file @
253ef331
...
@@ -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"
>
>
...
...
src/views/super-admin/Training.vue
View file @
253ef331
...
@@ -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
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment