otcdocstheme 1.12.12__py3-none-any.whl → 1.13.1__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/static/css/otcdocstheme.css +89 -0
- {otcdocstheme-1.12.12.dist-info → otcdocstheme-1.13.1.dist-info}/METADATA +1 -1
- {otcdocstheme-1.12.12.dist-info → otcdocstheme-1.13.1.dist-info}/RECORD +11 -11
- otcdocstheme-1.13.1.dist-info/pbr.json +1 -0
- otcdocstheme-1.12.12.dist-info/pbr.json +0 -1
- {otcdocstheme-1.12.12.data → otcdocstheme-1.13.1.data}/scripts/docstheme-build-pdf +0 -0
- {otcdocstheme-1.12.12.dist-info → otcdocstheme-1.13.1.dist-info}/WHEEL +0 -0
- {otcdocstheme-1.12.12.dist-info → otcdocstheme-1.13.1.dist-info}/dependency_links.txt +0 -0
- {otcdocstheme-1.12.12.dist-info → otcdocstheme-1.13.1.dist-info}/entry_points.txt +0 -0
- {otcdocstheme-1.12.12.dist-info → otcdocstheme-1.13.1.dist-info}/licenses/AUTHORS +0 -0
- {otcdocstheme-1.12.12.dist-info → otcdocstheme-1.13.1.dist-info}/licenses/LICENSE +0 -0
- {otcdocstheme-1.12.12.dist-info → otcdocstheme-1.13.1.dist-info}/top_level.txt +0 -0
|
@@ -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 {
|
|
@@ -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=0TQWOUbktns99pXJ9MZ-qM0jJVpwvmlV8TOYx8OhFEs,36862
|
|
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.1.data/scripts/docstheme-build-pdf,sha256=IlY2QHQDoX5dvMBOpv0AaAq1laUGzZw8eNHQKh9trmU,1159
|
|
544
|
+
otcdocstheme-1.13.1.dist-info/licenses/AUTHORS,sha256=PaFByu8QGpAZPsEO0tuTMzHr4axY5oTzCOiHnbN8Cq8,458
|
|
545
|
+
otcdocstheme-1.13.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
546
|
+
otcdocstheme-1.13.1.dist-info/METADATA,sha256=HylhryjuUyNdrKmkfoRVyQ2deDOMef0P2KDOp3XxGRE,1800
|
|
547
|
+
otcdocstheme-1.13.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
548
|
+
otcdocstheme-1.13.1.dist-info/dependency_links.txt,sha256=E0DVutM8F_P-03TbPDd10lqRp9__oJ8fbeR3Lkkolso,93
|
|
549
|
+
otcdocstheme-1.13.1.dist-info/entry_points.txt,sha256=grDxfsYOoAtaU51QnEuZG96s3j7NdxnKI-TExSLOOdc,112
|
|
550
|
+
otcdocstheme-1.13.1.dist-info/pbr.json,sha256=M1dfywe4y6A-5jnDj9XVOS8ieRooCNjwE9QEJTXyfZ4,46
|
|
551
|
+
otcdocstheme-1.13.1.dist-info/top_level.txt,sha256=7cQxbm6DSay9Ps85cuRvLzmMMPUzHszwHKjeu5evJYo,13
|
|
552
|
+
otcdocstheme-1.13.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"git_version": "9f2b19e", "is_release": true}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"git_version": "bbc2c69", "is_release": false}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|