Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
varbase_components
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
varbase_components
Commits
319bc28f
Commit
319bc28f
authored
11 months ago
by
Rajab Natshah
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3446921
: Change the style for the Page Footer component to follow with Varbase Design System
parent
3d144e13
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/organisms/page-footer/page-footer.css
+54
-2
54 additions, 2 deletions
components/organisms/page-footer/page-footer.css
components/organisms/page-footer/page-footer.scss
+48
-4
48 additions, 4 deletions
components/organisms/page-footer/page-footer.scss
with
102 additions
and
6 deletions
components/organisms/page-footer/page-footer.css
+
54
−
2
View file @
319bc28f
...
@@ -3,12 +3,59 @@ footer.footer {
...
@@ -3,12 +3,59 @@ footer.footer {
color
:
var
(
--bs-white
);
color
:
var
(
--bs-white
);
}
}
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
{
position
:
relative
;
color
:
var
(
--bs-white
);
text-decoration
:
none
;
}
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:hover
,
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:focus
,
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:active
{
color
:
var
(
--bs-white
);
}
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:hover:after
,
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:focus:after
,
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:active:after
{
position
:
absolute
;
content
:
""
;
top
:
80%
;
transition
:
width
.3s
;
width
:
2.4rem
!important
;
height
:
1px
;
bottom
:
0
;
background-color
:
var
(
--bs-white
);
}
[
dir
=
"ltr"
]
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:hover:after
,
[
dir
=
"ltr"
]
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:focus:after
,
[
dir
=
"ltr"
]
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:active:after
{
left
:
0
;
}
[
dir
=
"rtl"
]
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:hover:after
,
[
dir
=
"rtl"
]
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:focus:after
,
[
dir
=
"rtl"
]
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link
:active:after
{
right
:
0
;
}
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link.is-active
:after
{
position
:
absolute
;
content
:
""
;
top
:
80%
;
width
:
1.3rem
;
height
:
1px
;
bottom
:
0
;
background-color
:
var
(
--bs-white
);
}
[
dir
=
"ltr"
]
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link.is-active
:after
{
left
:
0
;
}
[
dir
=
"rtl"
]
footer
.footer
.block-menu-blockmain
.nav-item
a
.nav-link.is-active
:after
{
right
:
0
;
}
footer
.footer
a
{
footer
.footer
a
{
color
:
var
(
--bs-white
);
color
:
var
(
--bs-white
);
text-decoration
:
none
;
text-decoration
:
none
;
}
}
footer
.footer
a
:hover
,
footer
.footer
a
:focus
,
footer
.footer
a
:active
,
footer
.footer
a
.active
{
footer
.footer
a
:hover
,
footer
.footer
a
:focus
,
footer
.footer
a
:active
{
color
:
var
(
--bs-white
);
color
:
var
(
--bs-white
);
text-decoration
:
underline
;
text-decoration
:
underline
;
}
}
...
@@ -34,7 +81,12 @@ footer.footer .footer-logo-image {
...
@@ -34,7 +81,12 @@ footer.footer .footer-logo-image {
float
:
right
;
float
:
right
;
}
}
.social-media-menu-icons
li
.nav-item
>
a
:hover
,
.social-media-menu-icons
li
.nav-item
>
a
:focus
,
.social-media-menu-icons
li
.nav-item
>
a
:active
,
.social-media-menu-icons
li
.nav-item
>
a
.active
{
.social-media-menu-icons
li
.nav-item
>
a
:hover
,
.social-media-menu-icons
li
.nav-item
>
a
:focus
,
.social-media-menu-icons
li
.nav-item
>
a
:active
{
color
:
#cfe2ff
;
color
:
#cfe2ff
;
text-decoration
:
none
;
}
.social-media-menu-icons
li
.nav-item
>
a
:hover:after
,
.social-media-menu-icons
li
.nav-item
>
a
:focus:after
,
.social-media-menu-icons
li
.nav-item
>
a
:active:after
{
display
:
none
;
}
}
This diff is collapsed.
Click to expand it.
components/organisms/page-footer/page-footer.scss
+
48
−
4
View file @
319bc28f
...
@@ -5,14 +5,54 @@ footer.footer {
...
@@ -5,14 +5,54 @@ footer.footer {
background-color
:
shade-color
(
$primary
,
40%
);
background-color
:
shade-color
(
$primary
,
40%
);
color
:
var
(
--
bs-white
);
color
:
var
(
--
bs-white
);
.block-menu-blockmain
{
.nav-item
{
a
.nav-link
{
position
:
relative
;
color
:
var
(
--
bs-white
);
text-decoration
:
none
;
&
:hover
,
&
:focus
,
&
:active
{
color
:
var
(
--
bs-white
);
&
:after
{
position
:
absolute
;
content
:
""
;
top
:
80%
;
left
:
0
;
transition
:
width
0
.3s
;
width
:
2
.4rem
!
important
;
height
:
1px
;
bottom
:
0
;
background-color
:
var
(
--
bs-white
);
}
}
&
.is-active
{
&
:after
{
position
:
absolute
;
content
:
""
;
top
:
80%
;
left
:
0
;
width
:
1
.3rem
;
height
:
1px
;
bottom
:
0
;
background-color
:
var
(
--
bs-white
);
}
}
}
}
}
a
{
a
{
color
:
var
(
--
bs-white
);
color
:
var
(
--
bs-white
);
text-decoration
:
none
;
text-decoration
:
none
;
&
:hover
,
&
:hover
,
&
:focus
,
&
:focus
,
&
:active
,
&
:active
{
&
.is-active
{
color
:
var
(
--
bs-white
);
color
:
var
(
--
bs-white
);
text-decoration
:
underline
;
text-decoration
:
underline
;
}
}
...
@@ -34,8 +74,12 @@ footer.footer {
...
@@ -34,8 +74,12 @@ footer.footer {
&
:hover
,
&
:hover
,
&
:focus
,
&
:focus
,
&
:active
,
&
:active
{
&
.active
{
color
:
tint-color
(
$primary
,
80%
);
color
:
tint-color
(
$primary
,
80%
);
text-decoration
:
none
;
&
:after
{
display
:
none
;
}
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment