otcdocstheme 1.12.11__py3-none-any.whl → 1.13.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- otcdocstheme/theme/otcdocs/footer.html +1 -1
- otcdocstheme/theme/otcdocs/static/css/otcdocstheme.css +89 -0
- {otcdocstheme-1.12.11.dist-info → otcdocstheme-1.13.0.dist-info}/METADATA +1 -1
- {otcdocstheme-1.12.11.dist-info → otcdocstheme-1.13.0.dist-info}/RECORD +12 -12
- otcdocstheme-1.13.0.dist-info/pbr.json +1 -0
- otcdocstheme-1.12.11.dist-info/pbr.json +0 -1
- {otcdocstheme-1.12.11.data → otcdocstheme-1.13.0.data}/scripts/docstheme-build-pdf +0 -0
- {otcdocstheme-1.12.11.dist-info → otcdocstheme-1.13.0.dist-info}/WHEEL +0 -0
- {otcdocstheme-1.12.11.dist-info → otcdocstheme-1.13.0.dist-info}/dependency_links.txt +0 -0
- {otcdocstheme-1.12.11.dist-info → otcdocstheme-1.13.0.dist-info}/entry_points.txt +0 -0
- {otcdocstheme-1.12.11.dist-info → otcdocstheme-1.13.0.dist-info}/licenses/AUTHORS +0 -0
- {otcdocstheme-1.12.11.dist-info → otcdocstheme-1.13.0.dist-info}/licenses/LICENSE +0 -0
- {otcdocstheme-1.12.11.dist-info → otcdocstheme-1.13.0.dist-info}/top_level.txt +0 -0
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<a href="https://open-telekom-cloud.com/en/data-protection"> Data privacy </a>
|
|
10
10
|
</li>
|
|
11
11
|
<li>
|
|
12
|
-
<a href="https://open-telekom-cloud.com/en/disclaimer-of-liability"> Disclaimer of
|
|
12
|
+
<a href="https://open-telekom-cloud.com/en/disclaimer-of-liability"> Disclaimer of Liabilities </a>
|
|
13
13
|
</li>
|
|
14
14
|
<li>
|
|
15
15
|
<a href="https://open-telekom-cloud.com/en/imprint"> Imprint </a>
|
|
@@ -605,6 +605,95 @@ bold.service-doc-title {
|
|
|
605
605
|
|
|
606
606
|
/* END: Service-Based-View */
|
|
607
607
|
|
|
608
|
+
/* Popular Services */
|
|
609
|
+
|
|
610
|
+
.container-pop-svc {
|
|
611
|
+
display: flex;
|
|
612
|
+
align-items: stretch;
|
|
613
|
+
align-content: space-between;
|
|
614
|
+
flex-direction: row;
|
|
615
|
+
flex-wrap: wrap;
|
|
616
|
+
margin-top: 2em;
|
|
617
|
+
gap: 1em; /* needs to be substracted from item size */
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.item-pop-svc {
|
|
621
|
+
background-color: var(--telekom-color-background-surface);
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.item-pop-svc-flex {
|
|
625
|
+
display: flex;
|
|
626
|
+
flex-direction: column;
|
|
627
|
+
justify-content: space-between;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
@media (prefers-color-scheme: dark) {
|
|
631
|
+
.item-pop-svc {
|
|
632
|
+
border: 1px solid var(--telekom-color-ui-regular);
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
@media (min-width: 768px) {
|
|
637
|
+
.item-pop-svc {
|
|
638
|
+
flex-basis: calc(33% - 1em);
|
|
639
|
+
box-sizing: border-box;
|
|
640
|
+
align-self: stretch;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
@media (max-width: 767.98px) {
|
|
645
|
+
.item-pop-svc {
|
|
646
|
+
flex-basis: calc(100% - 1em);
|
|
647
|
+
box-sizing: border-box;
|
|
648
|
+
align-self: stretch;
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
@media (min-width: 1500px) {
|
|
653
|
+
.item-pop-svc {
|
|
654
|
+
flex-basis: calc(50% - 1em);
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.item-pop-svc:hover {
|
|
659
|
+
color: var(--telekom-color-primary-standard);
|
|
660
|
+
cursor: pointer;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.item-pop-svc:hover h4 {
|
|
664
|
+
color: var(--telekom-color-primary-standard);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.item-pop-svc:hover {
|
|
668
|
+
border: 1px solid var(--telekom-color-primary-standard);
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.item-pop-svc:hover a {
|
|
672
|
+
color: var(--telekom-color-primary-standard);
|
|
673
|
+
text-decoration: none;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.item-pop-svc a {
|
|
677
|
+
color: var(--telekom-color-text-and-icon-standard);
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.item-pop-svc h4 {
|
|
681
|
+
margin-top: 0;
|
|
682
|
+
margin-bottom: 0;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.item-pop-svc p {
|
|
686
|
+
margin-top: 2em;
|
|
687
|
+
margin-bottom: 1em;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.item-pop-svc header {
|
|
691
|
+
display: flex;
|
|
692
|
+
flex-direction: row;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/* END: Popular Services */
|
|
696
|
+
|
|
608
697
|
/* SIDEBAR */
|
|
609
698
|
|
|
610
699
|
.docs-sidebar {
|
|
@@ -5,7 +5,7 @@ otcdocstheme/paths.py,sha256=BXdxanQ_efr1B897alU9R281dmSyxwcZe2h04fPzepo,1903
|
|
|
5
5
|
otcdocstheme/version.py,sha256=HMEsOyXdr8mSrjHSewgFoXs4fQinhlWDQjC_JPRCMgs,648
|
|
6
6
|
otcdocstheme/theme/otcdocs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
otcdocstheme/theme/otcdocs/css.html,sha256=uhlcVJXDP6bo42VtnUpJfTW6jHwwPGZOk1kIFXhA_nI,633
|
|
8
|
-
otcdocstheme/theme/otcdocs/footer.html,sha256=
|
|
8
|
+
otcdocstheme/theme/otcdocs/footer.html,sha256=aWX7NZBy7gHFvjVO4yyOJu2H0LrwLPXprFyg2M350PE,666
|
|
9
9
|
otcdocstheme/theme/otcdocs/header.html,sha256=HS28QG2Zov8qKp_GwPXqa6tzLNOjiI-Qr8zDAJI7U3s,8440
|
|
10
10
|
otcdocstheme/theme/otcdocs/layout.html,sha256=wS1Nd1iwXXOvJrcjVlBfbdTC_wkjkjXzZH8gBlqCwKg,3749
|
|
11
11
|
otcdocstheme/theme/otcdocs/license_cc.html,sha256=qp_whwkm9j0gbEv5wjcOyGFm-Xq4UfGObwY5Vj9dpl8,345
|
|
@@ -27,7 +27,7 @@ otcdocstheme/theme/otcdocs/static/package.json,sha256=YU7_IAPS_2OVBok9yZVpYXtek0
|
|
|
27
27
|
otcdocstheme/theme/otcdocs/static/css/bootstrap.min.css,sha256=YvdLHPgkqJ8DVUxjjnGVlMMJtNimJ6dYkowFFvp4kKs,163873
|
|
28
28
|
otcdocstheme/theme/otcdocs/static/css/bootstrap.min.css.map,sha256=qu8--RAhMeGH2AdRCAuY9FQE3FbGfK80xlkr86qIXBM,451427
|
|
29
29
|
otcdocstheme/theme/otcdocs/static/css/fontawesome-all.min.css,sha256=jTIdiMuX_e3DGJUGwl3pKSxuc6YOuqtJYkM0bGQESA4,89220
|
|
30
|
-
otcdocstheme/theme/otcdocs/static/css/otcdocstheme.css,sha256=
|
|
30
|
+
otcdocstheme/theme/otcdocs/static/css/otcdocstheme.css,sha256=DgATWuZFTDyKvsNZ4Mbyg6D-4WW_Qer6H34Z6u24gBU,36861
|
|
31
31
|
otcdocstheme/theme/otcdocs/static/fonts/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
otcdocstheme/theme/otcdocs/static/fonts/glyphicons-halflings-regular.eot,sha256=E2NNqH2eI_jD7ZEIzhck0YOjmtBy5z4bPYy_ZG0tBAc,20127
|
|
33
33
|
otcdocstheme/theme/otcdocs/static/fonts/glyphicons-halflings-regular.svg,sha256=2A6hAfGjSEkUasGP2v2vdGuATNCAxBf2WpzM0bXk8w4,108737
|
|
@@ -540,13 +540,13 @@ otcdocstheme/theme/otcdocs_pdf/fonts/TeleNeo Office Extrabold.ttf,sha256=t24f9p0
|
|
|
540
540
|
otcdocstheme/theme/otcdocs_pdf/fonts/TeleNeo Office Medium.ttf,sha256=UQw3EkbxcQPYDes-3py6aPG10Zxfx8_MWk8dLKGKWh0,125764
|
|
541
541
|
otcdocstheme/theme/otcdocs_pdf/fonts/TeleNeo Office Thin.ttf,sha256=ndNn0Cz6LfzruVFCBpLmOcGfPsDNqY6WB1Inx5hPIiU,116736
|
|
542
542
|
otcdocstheme/theme/otcdocs_pdf/fonts/TeleNeo Office.ttf,sha256=u-qdXUjzruAaYFWQ85iXCx0uKbDWT-f4oVg_tITysW0,125352
|
|
543
|
-
otcdocstheme-1.
|
|
544
|
-
otcdocstheme-1.
|
|
545
|
-
otcdocstheme-1.
|
|
546
|
-
otcdocstheme-1.
|
|
547
|
-
otcdocstheme-1.
|
|
548
|
-
otcdocstheme-1.
|
|
549
|
-
otcdocstheme-1.
|
|
550
|
-
otcdocstheme-1.
|
|
551
|
-
otcdocstheme-1.
|
|
552
|
-
otcdocstheme-1.
|
|
543
|
+
otcdocstheme-1.13.0.data/scripts/docstheme-build-pdf,sha256=IlY2QHQDoX5dvMBOpv0AaAq1laUGzZw8eNHQKh9trmU,1159
|
|
544
|
+
otcdocstheme-1.13.0.dist-info/licenses/AUTHORS,sha256=PaFByu8QGpAZPsEO0tuTMzHr4axY5oTzCOiHnbN8Cq8,458
|
|
545
|
+
otcdocstheme-1.13.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
546
|
+
otcdocstheme-1.13.0.dist-info/METADATA,sha256=Cwal8wpph-uARw15eeJy4GQZueKs7KPH6x-thANwXc8,1800
|
|
547
|
+
otcdocstheme-1.13.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
548
|
+
otcdocstheme-1.13.0.dist-info/dependency_links.txt,sha256=E0DVutM8F_P-03TbPDd10lqRp9__oJ8fbeR3Lkkolso,93
|
|
549
|
+
otcdocstheme-1.13.0.dist-info/entry_points.txt,sha256=grDxfsYOoAtaU51QnEuZG96s3j7NdxnKI-TExSLOOdc,112
|
|
550
|
+
otcdocstheme-1.13.0.dist-info/pbr.json,sha256=Ya8_Q1sDJ02kXpRFn5KcC7RAjKp9gobmL4rKbPyaF14,46
|
|
551
|
+
otcdocstheme-1.13.0.dist-info/top_level.txt,sha256=7cQxbm6DSay9Ps85cuRvLzmMMPUzHszwHKjeu5evJYo,13
|
|
552
|
+
otcdocstheme-1.13.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"git_version": "55b51d5", "is_release": true}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"git_version": "85c695e", "is_release": true}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|