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
59783e2c
Commit
59783e2c
authored
Apr 30, 2021
by
hunter.congress
Browse files
link color
parents
3db0ef16
8eaaf146
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
16 deletions
+21
-16
src/components/Training/TrainingAttendance.vue
src/components/Training/TrainingAttendance.vue
+1
-1
src/scss/custom.scss
src/scss/custom.scss
+11
-9
src/scss/variables.scss
src/scss/variables.scss
+1
-0
src/views/super-admin/Teams.vue
src/views/super-admin/Teams.vue
+3
-3
src/views/super-admin/Training.vue
src/views/super-admin/Training.vue
+5
-3
No files found.
src/components/Training/TrainingAttendance.vue
View file @
59783e2c
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
</v-col>
</v-col>
</v-row>
</v-row>
<v-row
class=
"filter-wrapper filter-input mb-4"
>
<v-row
class=
"filter-wrapper filter-input mb-4"
>
<v-col
cols=
"12"
sm=
"
8
"
md=
"
6
"
>
<v-col
cols=
"12"
sm=
"
6
"
md=
"
3
"
>
<v-text-field
<v-text-field
v-model=
"search"
v-model=
"search"
ref=
"filterSearch"
ref=
"filterSearch"
...
...
src/scss/custom.scss
View file @
59783e2c
...
@@ -186,13 +186,12 @@ body {
...
@@ -186,13 +186,12 @@ body {
padding-left
:
8px
;
padding-left
:
8px
;
color
:
#000000
;
color
:
#000000
;
}
}
.v-input__control
{
.v-input__control
>
.v-input__slot
{
padding-right
:
8px
;
padding-right
:
8px
;
}
}
}
.v-icon
{
color
:
rgba
(
0
,
0
,
0
,
0
.54
);
.v-icon
{
}
color
:
rgba
(
0
,
0
,
0
,
0
.54
)
!
important
;
}
}
.v-text-field
{
.v-text-field
{
...
@@ -339,10 +338,6 @@ body {
...
@@ -339,10 +338,6 @@ body {
color
:
black
!
important
;
color
:
black
!
important
;
}
}
.v-data-table
a
:hover
{
text-decoration
:
underline
;
}
.v-application
a
{
.v-application
a
{
color
:
#021421
!
important
;
color
:
#021421
!
important
;
}
}
...
@@ -365,6 +360,10 @@ body {
...
@@ -365,6 +360,10 @@ body {
}
}
.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
;
...
@@ -404,6 +403,9 @@ body {
...
@@ -404,6 +403,9 @@ body {
.v-data-footer
{
.v-data-footer
{
background-color
:
$table-row-even-bg-light
;
background-color
:
$table-row-even-bg-light
;
}
}
.v-data-table-header-mobile__wrapper
.v-select__slot
>
label
{
color
:
map-get
(
$material-light
,
"secondary-text-color"
);
}
}
}
table
>
tbody
>
tr
{
table
>
tbody
>
tr
{
...
...
src/scss/variables.scss
View file @
59783e2c
...
@@ -50,6 +50,7 @@ $material-light: (
...
@@ -50,6 +50,7 @@ $material-light: (
background-accent-3
:
#efefef
,
background-accent-3
:
#efefef
,
primary
:
#031322
,
primary
:
#031322
,
text-color
:
#000000
,
text-color
:
#000000
,
secondary-text-color
:
#ffffff
,
);
);
$material-dark
:
(
$material-dark
:
(
background
:
#04243a
,
background
:
#04243a
,
...
...
src/views/super-admin/Teams.vue
View file @
59783e2c
...
@@ -23,9 +23,9 @@
...
@@ -23,9 +23,9 @@
:hide-default-footer=
"teams.length === 0"
:hide-default-footer=
"teams.length === 0"
>
>
<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"
>
<v-row>
<v-row>
<v-col
cols=
"12"
md=
"3"
class=
"filter-input px-0"
>
<v-col
cols=
"12"
sm=
"6"
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"
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
hide-details
hide-details
></v-text-field>
></v-text-field>
</v-col>
</v-col>
<v-col
cols=
"12"
md=
"
8
"
class=
"text-right px-0"
>
<v-col
cols=
"12"
md=
"
9
"
class=
"text-right px-0"
>
<v-btn
<v-btn
color=
"secondary"
color=
"secondary"
class=
"mr-0 mr-sm-2 mb-6 mb-sm-0"
class=
"mr-0 mr-sm-2 mb-6 mb-sm-0"
...
...
src/views/super-admin/Training.vue
View file @
59783e2c
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
:hide-default-footer=
"courses.length === 0"
:hide-default-footer=
"courses.length === 0"
>
>
<template
v-slot:top
>
<template
v-slot:top
>
<v-container
id=
"training-table-header"
class=
"py-0
pb-8
"
>
<v-container
id=
"training-table-header"
class=
"py-0"
>
<v-row>
<v-row>
<h4
class=
"subhead pa-0"
>
Filter
</h4>
<h4
class=
"subhead pa-0"
>
Filter
</h4>
</v-row>
</v-row>
...
@@ -84,7 +84,7 @@
...
@@ -84,7 +84,7 @@
hide-details
hide-details
></v-select>
></v-select>
</v-col>
</v-col>
<v-col
cols=
"12"
sm=
"4"
class=
"filter-input"
>
<v-col
cols=
"12"
sm=
"4"
class=
"filter-input
pr-sm-1
"
>
<v-text-field
<v-text-field
v-model=
"filter.search"
v-model=
"filter.search"
ref=
"filterSearch"
ref=
"filterSearch"
...
@@ -113,7 +113,9 @@
...
@@ -113,7 +113,9 @@
</v-col>
</v-col>
</v-row>
</v-row>
<v-row>
<v-row>
<h2
class=
"pa-0"
>
Courses
</h2>
<v-col
class=
"pl-0"
>
<h2
class=
"text-left px-0"
>
Courses
</h2>
</v-col>
</v-row>
</v-row>
</v-container>
</v-container>
...
...
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