Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added privacy policy link to footer #1453

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/vendor.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"/js/app.js": "/js/app.js?id=e5f0a906729ed63f02319f93cf033b4c",
"/js/app.js": "/js/app.js?id=f40be8089c1ac5a0639d77a7eb3f41cd",
"/js/script.js": "/js/script.js?id=38403f9ff8d5c709f2d9e67681808f44",
"/js/webportal-script.js": "/js/webportal-script.js?id=b91a845ff9e62a3c3a07f38f77ce01de",
"/js/formbuilder.js": "/js/formbuilder.js?id=6467f574d096f2597d30a693671d9b0c",
"/manifest.js": "/manifest.js?id=df1b1b0e2ff6bd7533bbe04b7cd301a1",
"/css/webportal-app.css": "/css/webportal-app.css?id=2091d80ce31d7816a4195a67e59aba72",
"/css/app.css": "/css/app.css?id=4c5463ac2dfff304ef71d0c2c487dfba",
"/js/vendor.js": "/js/vendor.js?id=d9217a41650da406aeddfa3e552abc28"
"/js/vendor.js": "/js/vendor.js?id=c13bbff1f83f13ecc781ca980b2371d6"
}
5 changes: 1 addition & 4 deletions resources/assets/js/views/web/PublishingChecklist.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,7 @@
create one for you (so you don’t have to visit IATI Registry to do
this).
</p>
<a
target="_blank"
href="https://www.iatiregistry.org/register_publisher/"
>
<a target="_blank" href="/iati/register">
Create your IATI Registry Publisher Account
</a>
<p class="my-2 text-base">
Expand Down
7 changes: 7 additions & 0 deletions resources/assets/js/views/web/partials/WebFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@
<li><a href="/iati-standard">IATI Standard</a></li>
<li><a href="/publishing-checklist">Publishing Checklist</a></li>
<li><a href="/support">Support</a></li>
<li>
<a
href="https://iatistandard.org/en/privacy-policy/"
target="_blank"
>Privacy Policy</a
>
</li>
</ul>
</div>
<div class="footer__links lg:justify-self-end">
Expand Down
32 changes: 16 additions & 16 deletions resources/assets/sass/component/_input.scss
Original file line number Diff line number Diff line change
Expand Up @@ -256,41 +256,41 @@ label {
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection:not(:focus) {
+ .select2
.selection
.select2-selection:not(:focus) {
border: 2px solid #3f9a7c;
background-color: #3f9a7c15;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection:not(:focus) {
+ .select2
.selection
.select2-selection:not(:focus) {
border: 2px solid #3f9a7c;
background-color: #3f9a7c15;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection
.select2-selection__placeholder {
+ .select2
.selection
.select2-selection
.select2-selection__placeholder {
color: var(--bluecoral-50);
}

select.select2.default-value-indicator
+ .select2.select2-container--open
.selection
.select2-selection {
+ .select2.select2-container--open
.selection
.select2-selection {
border: 1px solid #a6b5ba;
background-color: transparent;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection.select2-selection--clearable {
+ .select2
.selection
.select2-selection.select2-selection--clearable {
border: 1px solid #a6b5ba;
background-color: transparent;
}
Expand Down
Loading