Move map attribution print styles to print.scss

This commit is contained in:
Anton Khorev 2023-07-28 21:24:52 +03:00
parent e932972a4a
commit 6fca88ab16
2 changed files with 15 additions and 13 deletions

View file

@ -642,19 +642,6 @@ body.small-nav {
#attribution { #attribution {
display: none; display: none;
table {
width: 100%
}
}
.attribution_license,
.attribution_project {
text-align: left;
}
.attribution_notice {
text-align: center;
} }
.donate-attr { color: darken($green, 10%) !important; } .donate-attr { color: darken($green, 10%) !important; }

View file

@ -18,6 +18,8 @@ html {
border: 1px solid black; border: 1px solid black;
} }
/* Rules for attribution text under the main map shown on printouts */
#attribution { #attribution {
position: absolute !important; position: absolute !important;
bottom: 0; bottom: 0;
@ -26,4 +28,17 @@ html {
height: 40px; height: 40px;
font-size: 12px; font-size: 12px;
text-align: center; text-align: center;
table {
width: 100%
}
}
.attribution_license,
.attribution_project {
text-align: left;
}
.attribution_notice {
text-align: center;
} }