Update menu entries and fixes some profile picture problems.
Added help pages too.
This commit is contained in:
@@ -1 +1,3 @@
|
|||||||
[]
|
{
|
||||||
|
"romhackplaza": "data/assets/romhackplaza"
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
"addon_id": "XF",
|
"addon_id": "XF",
|
||||||
"version_id": 2031070,
|
"version_id": 2031070,
|
||||||
"version_string": "2.3.10",
|
"version_string": "2.3.10",
|
||||||
"hash": "bbe8ebb41f6606f1f41782ba1aaa5509"
|
"hash": "09489ca3208db67cf6add9779edd76be"
|
||||||
},
|
},
|
||||||
"public/account_alerts_popup.html": {
|
"public/account_alerts_popup.html": {
|
||||||
"addon_id": "XF",
|
"addon_id": "XF",
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
"addon_id": "XF",
|
"addon_id": "XF",
|
||||||
"version_id": 2031070,
|
"version_id": 2031070,
|
||||||
"version_string": "2.3.10",
|
"version_string": "2.3.10",
|
||||||
"hash": "e96c4ea665df26ce03dd38cd21ebc565"
|
"hash": "278b91ff307ed1d1c634eee490ff8653"
|
||||||
},
|
},
|
||||||
"public/member_tooltip.html": {
|
"public/member_tooltip.html": {
|
||||||
"addon_id": "XF",
|
"addon_id": "XF",
|
||||||
|
|||||||
@@ -100,8 +100,12 @@
|
|||||||
<div class="$menu-group">
|
<div class="$menu-group">
|
||||||
<div class="$menu-group-title">{{ $navEntry.title }}</div>
|
<div class="$menu-group-title">{{ $navEntry.title }}</div>
|
||||||
<xf:foreach loop="$navEntry.children" key="$childNavId" value="$childNavEntry" i="$j">
|
<xf:foreach loop="$navEntry.children" key="$childNavId" value="$childNavEntry" i="$j">
|
||||||
<a href="{{ $childNavEntry.href }}" class="$menu-item" >
|
<a href="{{ $childNavEntry.href }}"
|
||||||
<i data-lucide="{{ $childNavEntry.attributes.icon}}"></i><span>{{ $childNavEntry.title }}</span>
|
class="$menu-item"
|
||||||
|
style="{{ $childNavEntry.attributes.color ? 'color:' . $childNavEntry.attributes.color : '' }}"
|
||||||
|
target="{{ $childNavEntry.attributes.target }}"
|
||||||
|
>
|
||||||
|
<i data-lucide="{{ $childNavEntry.attributes.icon }}"></i><span>{{ $childNavEntry.title }}</span>
|
||||||
</a>
|
</a>
|
||||||
</xf:foreach>
|
</xf:foreach>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -71,6 +71,9 @@ ul {
|
|||||||
/* Menu settings */
|
/* Menu settings */
|
||||||
--menu-size: 260px;
|
--menu-size: 260px;
|
||||||
--menu-user-avatar-bg: #555;
|
--menu-user-avatar-bg: #555;
|
||||||
|
|
||||||
|
/* Gap */
|
||||||
|
--gap: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.\$light-mode {
|
.\$light-mode {
|
||||||
@@ -132,6 +135,7 @@ ul {
|
|||||||
background-color: var(--bg2);
|
background-color: var(--bg2);
|
||||||
border: 1px solid var(--border);
|
border: 1px solid var(--border);
|
||||||
display: flex;
|
display: flex;
|
||||||
|
min-width: 0;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
transition: transform 0.2s, border-color 0.2s;
|
transition: transform 0.2s, border-color 0.2s;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -144,6 +148,7 @@ ul {
|
|||||||
.\$entry-cover-wrapper {
|
.\$entry-cover-wrapper {
|
||||||
position: relative;
|
position: relative;
|
||||||
aspect-ratio: 4/3;
|
aspect-ratio: 4/3;
|
||||||
|
min-width: 0;
|
||||||
background-color: var(--bg);
|
background-color: var(--bg);
|
||||||
border-bottom: 1px solid var(--border);
|
border-bottom: 1px solid var(--border);
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -183,6 +188,7 @@ ul {
|
|||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.\$entry-card-author {
|
.\$entry-card-author {
|
||||||
@@ -5277,6 +5283,14 @@ ul {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.\$menu-user-info {
|
.\$menu-user-info {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
Reference in New Issue
Block a user