Skip to content

Commit ba069dd

Browse files
authored
merge pull request #25 from xames3/refactor/xames3-headshots
Fix: remove unlinked title reference
2 parents 1a12d62 + dd47d4b commit ba069dd

File tree

2 files changed

+27
-28
lines changed

2 files changed

+27
-28
lines changed

coeus_sphinx_theme/navbar.html.jinja

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Coeus Sphinx Theme Main Navigation Bar Template
44
55
Author: Akshay Mestry <[email protected]>
66
Created on: Sunday, October 06 2024
7-
Last updated on: Wednesday, October 30 2024
7+
Last updated on: Sunday, November 24 2024
88
-->
99
<header class="header-pill glass-bevel">
1010
{%- block header_left %}
@@ -58,13 +58,13 @@ Last updated on: Wednesday, October 30 2024
5858
</div>
5959
</div>
6060
{%- endfor %}
61-
{%- if docsearch or hasdoc('search') %}
62-
<div class="header-search glass-bevel">
63-
{%- include "searchbox.html.jinja" %}
64-
</div>
65-
{%- endif %}
6661
</nav>
6762
{%- endif %}
63+
{%- if docsearch or hasdoc('search') %}
64+
<div class="header-search">
65+
{%- include "searchbox.html.jinja" %}
66+
</div>
67+
{%- endif %}
6868
{%- endblock header_main_nav -%}
6969
</div>
7070
{%- endblock header_right %}

coeus_sphinx_theme/static/coeus.css

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -400,13 +400,13 @@ header {
400400

401401
input::-moz-placeholder,
402402
textarea::-moz-placeholder {
403-
color: var(--main-page-muted-text-color);
403+
color: var(--main-page-white-color);
404404
opacity: 1;
405405
}
406406

407407
input::placeholder,
408408
textarea::placeholder {
409-
color: var(--main-page-muted-text-color);
409+
color: var(--main-page-white-color);
410410
opacity: 1;
411411
}
412412

@@ -934,12 +934,7 @@ table tbody td:not(:first-child) {
934934
.header-search {
935935
padding: 0.5rem;
936936
margin-right: 0.15rem;
937-
border-radius: var(--main-rounded-corner-radius);
938-
background-color: var(--main-page-header-background);
939-
-webkit-backdrop-filter: blur(12px) var(--coeus-backdrop-brightness) var(--coeus-backdrop-contrast) var(--coeus-backdrop-grayscale) var(--coeus-backdrop-hue-rotate) var(--coeus-backdrop-invert) var(--coeus-backdrop-opacity) var(--coeus-backdrop-saturate) var(--coeus-backdrop-sepia);
940-
backdrop-filter: blur(12px) var(--coeus-backdrop-brightness) var(--coeus-backdrop-contrast) var(--coeus-backdrop-grayscale) var(--coeus-backdrop-hue-rotate) var(--coeus-backdrop-invert) var(--coeus-backdrop-opacity) var(--coeus-backdrop-saturate) var(--coeus-backdrop-sepia);
941-
-webkit-backdrop-filter: var(--coeus-backdrop-blur) var(--coeus-backdrop-brightness) var(--coeus-backdrop-contrast) var(--coeus-backdrop-grayscale) var(--coeus-backdrop-hue-rotate) var(--coeus-backdrop-invert) var(--coeus-backdrop-opacity) var(--coeus-backdrop-saturate) var(--coeus-backdrop-sepia);
942-
backdrop-filter: var(--coeus-backdrop-blur) var(--coeus-backdrop-brightness) var(--coeus-backdrop-contrast) var(--coeus-backdrop-grayscale) var(--coeus-backdrop-hue-rotate) var(--coeus-backdrop-invert) var(--coeus-backdrop-opacity) var(--coeus-backdrop-saturate) var(--coeus-backdrop-sepia);
937+
background-color: transparent;
943938
}
944939

945940
.searchbox {
@@ -967,7 +962,7 @@ table tbody td:not(:first-child) {
967962
position: relative;
968963
width: 15rem;
969964
right: 50%;
970-
transform: translateX(-40%);
965+
transform: translateX(-90%);
971966
padding: 1rem;
972967
background-color: var(--main-page-header-background);
973968
-webkit-backdrop-filter: blur(12px) var(--coeus-backdrop-brightness) var(--coeus-backdrop-contrast) var(--coeus-backdrop-grayscale) var(--coeus-backdrop-hue-rotate) var(--coeus-backdrop-invert) var(--coeus-backdrop-opacity) var(--coeus-backdrop-saturate) var(--coeus-backdrop-sepia);
@@ -1935,7 +1930,7 @@ table:not(.does-not-exist):hover .navbarlink>* {
19351930
}
19361931

19371932
#right-sidebar ul {
1938-
margin-left: 4.5rem;
1933+
margin-left: 3rem;
19391934
font-size: 0.875rem;
19401935
line-height: 1;
19411936
width: 276px;
@@ -1946,7 +1941,7 @@ table:not(.does-not-exist):hover .navbarlink>* {
19461941
font-weight: 600;
19471942
line-height: 1.25;
19481943
margin-bottom: .25rem;
1949-
margin-left: 4rem;
1944+
margin-left: 3.5rem;
19501945
padding: 1.5rem .5rem .25rem;
19511946
background-color: transparent;
19521947
}
@@ -1956,16 +1951,12 @@ table:not(.does-not-exist):hover .navbarlink>* {
19561951
padding-top: 0.5rem;
19571952
}
19581953

1954+
#right-sidebar ul li ul {
1955+
margin-left: 1rem;
1956+
}
1957+
19591958
#right-sidebar ul li a {
1960-
width: 175px;
1961-
display: block;
1962-
white-space: nowrap;
1963-
overflow: hidden;
1964-
text-overflow: ellipsis;
1965-
text-decoration-line: none;
1966-
transition-duration: 0.15s;
1967-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1968-
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
1959+
display: none;
19691960
}
19701961

19711962
#right-sidebar ul li a:focus-visible {
@@ -1976,8 +1967,16 @@ table:not(.does-not-exist):hover .navbarlink>* {
19761967
font-weight: 600;
19771968
}
19781969

1979-
#right-sidebar ul li ul {
1980-
margin-left: 1rem;
1970+
#right-sidebar ul li ul a:first-child {
1971+
width: 225px;
1972+
display: block;
1973+
white-space: nowrap;
1974+
overflow: hidden;
1975+
text-overflow: ellipsis;
1976+
text-decoration-line: none;
1977+
transition-duration: 0.15s;
1978+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1979+
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
19811980
}
19821981

19831982
#right-sidebar ul:not(:last-child) {

0 commit comments

Comments
 (0)