8000 Merge pull request #259 from tableau/d45/cookie_manager · tableau/document-api-python@82bf2d1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 82bf2d1

Browse files
authored
Merge pull request #259 from tableau/d45/cookie_manager
@gus W-17274770 Add Cookie Manager and links
2 parents b9ad0a1 + 6af9c49 commit 82bf2d1

File tree

3 files changed

+62
-7
lines changed

3 files changed

+62
-7
lines changed

docs/_includes/footer.html

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
<!-- Footer -->
22
<footer>
3-
<div class="row">
4-
<hr class="footer-hr">
5-
<p>This site is open source. Suggestions and pull requests are welcome on our <a href="https://github.com/tableau/document-api-python">GitHub page</a>.</p>
6-
<p><a href="https://www.tableau.com/en-us/legal" class="aLegal">LEGAL</a> <a href="https://www.tableau.com/en-us/privacy" class="aLegal">PRIVACY</a> &copy; <script>document.write(new Date().getFullYear())</script> Salesforce, Inc.</p>
7-
<sub>Documentation last generated on: {{ site.time }}</sub>
8-
</div>
9-
</footer>
3+
<hr class="footer-hr">
4+
<nav aria-label="Footer Navigation">
5+
<ul class="footer-links">
6+
<li><a href="https://www.salesforce.com/company/legal/">Legal</a></li>
7+
<li><a href="https://www.salesforce.com/company/legal/sfdc-website-terms-of-service/">Terms of Service</a></li>
8+
<li><a href="https://www.salesforce.com/company/privacy/">Privacy Information</a></li>
9+
<li><a href="https://www.salesforce.com/company/legal/disclosure/">Responsible Disclosure</a></li>< 10000 /span>
10+
<li><a href="https://trust.salesforce.com/">Trust</a></li>
11+
<li><a href="#" data-ignore-geolocation="true" class="optanon-toggle-display">Cookie Preferences</a></li>
12+
<li><a href="https://www.salesforce.com/form/other/privacy-request/">Your Privacy Choices</a></li>
13+
</ul>
14+
<p class="copyRight">This site is open source. Suggestions and pull requests are welcome on our <a href="https://github.com/tableau/document-api-python">GitHub page</a>.</p>
15+
<p class="copyRight">&copy; Copyright <script>document.write(new Date().getFullYear())</script> Salesforce, Inc. <a href="https://www.salesforce.com/company/legal/tmcusageguidelines/">All rights reserved.</a> Various trademarks held by their respective owners.
16+
Salesforce, Inc. Salesforce Tower, 415 Mission Street, 3rd Floor, San Francisco, CA 94105, United States</p>
17+
<sub>Documentation last generated on: {{ site.time }}</sub></p>
18+
</nav>
19+
</footer>

docs/_includes/head.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@
1111
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css">
1212
<link rel="stylesheet" href="{{ site.baseurl }}/css/github-highlight.css">
1313

14+
<!-- OneTrust Cookies Consent Notice start for tableau.github.io -->
15+
<script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="019321c1-4b7e-7313-9372-ddbd938f50ea" ></script>
16+
<script type="text/javascript">
17+
function OptanonWrapper() { }
18+
</script>
19+
<!-- OneTrust Cookies Consent Notice end for tableau.github.io -->
20+
21+
1422
<script src="{{ site.baseurl }}/js/redirect-to-search.js"></script>
1523
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
1624
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>

docs/css/main.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,3 +278,40 @@ html {
278278
word-spacing: 8px;
279279
padding-right: 8px;
280280
}
281+
282+
.copyRight {
283+
font-size: 12px;
284+
}
285+
286+
.footer-links {
287+
display: flex;
288+
justify-content: center;
289+
list-style: none;
290+
padding: 0;
291+
flex-wrap: wrap;
292+
}
293+
294+
.footer-links li {
295+
margin: 0 15px;
296+
}
297+
298+
.footer-links a {
299+
text-decoration: none;
300+
transition: color 0.3s;
301+
font-size: 12px;
302+
}
303+
304+
.footer-links a:hover {
305+
text-decoration: underline;
306+
}
307+
308+
/* One Trust Cookie Manager
309+
-------------------- */
310+
#ot-pc-content, .ot-title-cntr, .ot-pc-footer {
311+
font-size: 1.6rem;
312+
}
313+
314+
#ot-pc-footer {
315+
font-size: 1.4rem;
316+
}
317+

0 commit comments

Comments
 (0)
0