Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
647ed3d
General: Version bumped to v2026-02-18
LouisOuellet Feb 17, 2026
5af1e31
General: Improving Print and DW2PDF styling.
LouisOuellet Feb 26, 2026
979f558
General: Improving Print and DW2PDF styling.
LouisOuellet Feb 26, 2026
ad65807
General: Improving Print and DW2PDF styling.
LouisOuellet Feb 26, 2026
00d2afd
BUGFIX: Tooltip should not capture hover/mouse events
LouisOuellet Mar 24, 2026
8876a98
BUGFIX: MultiSelect field should be allowed to grow in height.
LouisOuellet Mar 24, 2026
d5f7c51
BUGFIX: Fixed the <img> border and animation. Applying it to all imag…
LouisOuellet Mar 25, 2026
24d0a99
BUGFIX: Fixing a lot of the Wrap Plugin CSS for better supports of bo…
LouisOuellet Mar 25, 2026
5afbc33
General: Added a truetype version of the bootstrap-icon font.
LouisOuellet Mar 25, 2026
4c3d2fc
General: Added a custom project image class. Requires the wrap plugin.
LouisOuellet Mar 25, 2026
52fdbbf
General: Added icons for linkedin and mastodon.
LouisOuellet Mar 25, 2026
fd09bad
BUGFIX: Fixing the behaviour of links on <img>
LouisOuellet Mar 25, 2026
7ff9afb
BUGFIX: Issue 32, addressing headings in mobile version.
LouisOuellet Mar 26, 2026
005babf
General: Adding the ttf files.
LouisOuellet Mar 26, 2026
91521a9
BUGFIX: Addressing stylesheet warnings.
LouisOuellet Mar 26, 2026
45225a4
BUGFIX: Addressing stylesheet warnings.
LouisOuellet Mar 26, 2026
30d71cd
General: Adding the ttf files.
LouisOuellet Mar 26, 2026
da83096
General: Added icons for pixelfed.social, bandcamp.com, last.fm and l…
LouisOuellet Mar 30, 2026
f8b1817
BUGFIX: Updated the default color of the picture borders
LouisOuellet Mar 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2026-02-17
v2026-02-18
3 changes: 2 additions & 1 deletion css/bootstrap-icons.less
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
@font-face {
font-display: block;
font-family: "bootstrap-icons";
src: url("font/bootstrap-icons.woff2") format("woff2"),
src: url("font/bootstrap-icons.ttf") format("truetype"),
url("font/bootstrap-icons.woff2") format("woff2"),
url("font/bootstrap-icons.woff") format("woff");
}

Expand Down
30 changes: 30 additions & 0 deletions css/components/toolbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,16 @@
color: #25D366;
}

&[href*="linkedin.com/"]::before {
content: "\F472";
color: #0077B5;
}

&[href*="mastodon.social/"]::before {
content: "\F647";
color: #6366F1;
}

&[href*="youtube.com/"]::before {
content: "\F62B";
color: #b2071d;
Expand Down Expand Up @@ -167,6 +177,26 @@
content: "\F417";
color: #F96854;
}

&[href*="pixelfed.social/"]::before {
content: "\F437";
color: #FF5C34;
}

&[href*="bandcamp.com/"]::before {
content: "\F49E";
color: #1DA0C3;
}

&[href*="last.fm/"]::before {
content: "\F684";
color: #D51007;
}

&[href*="lemmy.world/"]::before {
content: "\F252";
color: #563ACC;
}
}
a:hover {
background-color: @ini_theme_color;
Expand Down
1 change: 1 addition & 0 deletions css/components/tooltips.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
position: absolute;
display: none; /* Initially hidden, shown on hover */
z-index: 1000000; /* Ensure it appears above other content */
pointer-events: none; /* Allow clicks to pass through the tooltip */
}

.tooltip-text {
Expand Down
23 changes: 23 additions & 0 deletions css/global.less
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,25 @@ img {
max-width: 100%; /* Adhere to container width. */
}

.site-main {
img:not(.icon):not(button img,.wrap_article-image img, .wrap_project-image img) {
border-radius: 20px;
border: 6px solid @ini_background;
}

a:has(img) {
img:not(.icon):not(button img,.wrap_article-image img, .wrap_project-image img) {
transition: all 0.5s ease;
}

&:hover {
img:not(.icon):not(button img,.wrap_article-image img, .wrap_project-image img) {
border-color: @ini_theme_color;
}
}
}
}

/* Video */
embed,
iframe,
Expand Down Expand Up @@ -240,6 +259,10 @@ input {
select {
width: 100%;
color: @ini_text_alt;

&[multiple="multiple"] {
height: auto !important;
}
}
button,
input[type="button"],
Expand Down
Loading