grafana/public/sass/components/_footer.scss

70 lines
995 B
SCSS
Raw Normal View History

.page-dashboard .footer {
2017-12-19 09:22:41 -06:00
display: none;
2016-05-23 11:46:13 -05:00
}
.footer {
color: $footer-link-color;
padding: $space-md 0 $space-md 0;
2017-11-30 04:31:38 -06:00
font-size: $font-size-sm;
position: relative;
2017-12-19 09:22:41 -06:00
width: 98%; /* was causing horiz scrollbars - need to examine */
a {
color: $footer-link-color;
&:hover {
color: $footer-link-hover;
text-decoration: underline;
}
i {
display: inline-block;
padding-right: $space-xxs;
}
}
ul {
list-style: none;
}
li {
display: inline-block;
&::after {
2018-06-26 07:34:06 -05:00
content: ' | ';
padding: 0 $space-sm;
}
}
li:last-child {
&::after {
padding-left: 0;
2018-06-26 07:34:06 -05:00
content: '';
}
}
}
.login-page {
.footer {
display: block;
padding: $space-md 0 $space-md 0;
color: $text-color;
a {
color: $text-color;
&:hover {
color: $text-color-strong;
}
}
2018-06-26 07:34:06 -05:00
}
}
@include media-breakpoint-down(md) {
2018-06-28 07:02:42 -05:00
.login-page {
.footer {
display: none;
2018-06-28 07:02:42 -05:00
}
}
}