Compare commits
No commits in common. "2ab0bfc793d2d87a0c75f0bb079c9a8b1f6aacdf" and "f37da22512b89c6f5f1ee7df8d3685d9e50e958b" have entirely different histories.
2ab0bfc793
...
f37da22512
9 changed files with 292 additions and 76 deletions
4
Makefile
4
Makefile
|
@ -2,7 +2,7 @@
|
|||
|
||||
all: png
|
||||
|
||||
png: images/icons/admin.png images/icons/alerts.png images/icons/home.png images/icons/login.png images/icons/members.png images/icons/moderate.png images/icons/pm.png images/icons/profile.png images/icons/recent.png images/icons/search.png images/icons/unread_replies.png images/icons/unread.png
|
||||
png: images/boardicons.png images/icons/admin.png images/icons/alerts.png images/icons/home.png images/icons/login.png images/icons/members.png images/icons/moderate.png images/icons/pm.png images/icons/profile.png images/icons/recent.png images/icons/search.png images/icons/unread_replies.png images/icons/unread.png
|
||||
|
||||
%.png: %.svg
|
||||
mkdir --parents $(shell dirname $@)
|
||||
|
@ -10,4 +10,4 @@ png: images/icons/admin.png images/icons/alerts.png images/icons/home.png images
|
|||
optipng -o7 -quiet $@
|
||||
|
||||
clean:
|
||||
rm --force images/icons/admin.png images/icons/alerts.png images/icons/home.png images/icons/login.png images/icons/members.png images/icons/moderate.png images/icons/pm.png images/icons/profile.png images/icons/recent.png images/icons/search.png images/icons/unread_replies.png images/icons/unread.png
|
||||
rm --force images/boardicons.png images/icons/admin.png images/icons/alerts.png images/icons/home.png images/icons/login.png images/icons/members.png images/icons/moderate.png images/icons/pm.png images/icons/profile.png images/icons/recent.png images/icons/search.png images/icons/unread_replies.png images/icons/unread.png
|
||||
|
|
|
@ -120,12 +120,12 @@ function template_main()
|
|||
{
|
||||
echo '
|
||||
<div class="pagesection">
|
||||
', template_button_strip($context['normal_buttons'], ), '
|
||||
', $context['menu_separator'], '
|
||||
<div class="pagelinks">
|
||||
<a href="#bot" class="button">', $txt['go_down'], '</a>
|
||||
', $context['page_index'], '
|
||||
</div>
|
||||
', $context['menu_separator'], '
|
||||
', template_button_strip($context['normal_buttons'], ), '
|
||||
';
|
||||
|
||||
// Mobile action buttons (top)
|
||||
|
@ -188,6 +188,7 @@ function template_main()
|
|||
echo '
|
||||
<div class="', $topic['css_class'], '">
|
||||
<div class="board_icon">
|
||||
<img src="', $topic['first_post']['icon_url'], '" alt="">
|
||||
<div class="icons">
|
||||
', $topic['is_posted_in'] ? '<span class="main_icons profile_sm"></span>' : '', '
|
||||
';
|
||||
|
@ -228,6 +229,9 @@ function template_main()
|
|||
<span id="msg_', $topic['first_post']['id'], '">', $topic['first_post']['link'], (!$topic['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '</span>
|
||||
</h3>
|
||||
</div>
|
||||
<p class="floatleft">
|
||||
', $txt['started_by'], ' ', $topic['first_post']['member']['link'], '
|
||||
</p>
|
||||
', !empty($topic['pages']) ? '<span id="pages' . $topic['first_post']['id'] . '" class="topic_pages">' . $topic['pages'] . '</span>' : '', '
|
||||
</div><!-- #topic_[first_post][id] -->
|
||||
</div><!-- .info -->
|
||||
|
@ -338,12 +342,12 @@ function template_main()
|
|||
|
||||
echo '
|
||||
<div class="pagesection">
|
||||
', template_button_strip($context['normal_buttons'], ), '
|
||||
', $context['menu_separator'], '
|
||||
<div class="pagelinks">
|
||||
<a href="#main_content_section" class="button" id="bot">', $txt['go_up'], '</a>
|
||||
', $context['page_index'], '
|
||||
</div>
|
||||
', $context['menu_separator'], '
|
||||
', template_button_strip($context['normal_buttons'], );
|
||||
</div>';
|
||||
|
||||
// Mobile action buttons (bottom)
|
||||
if (!empty($context['normal_buttons']))
|
||||
|
|
|
@ -151,6 +151,7 @@ function template_unread()
|
|||
echo '
|
||||
<div class="', $topic['css_class'], '">
|
||||
<div class="board_icon">
|
||||
<img src="', $topic['first_post']['icon_url'], '" alt="">
|
||||
', $topic['is_posted_in'] ? '<span class="main_icons profile_sm"></span>' : '', '
|
||||
</div>
|
||||
<div class="info">';
|
||||
|
|
|
@ -25,10 +25,6 @@ html {
|
|||
--menu-background-hover: #555555;
|
||||
--menu-background-active: black;
|
||||
--menu-font: white;
|
||||
--font-regular: "Cabin", sans-serif;
|
||||
--font-emphasis: "Oswald", sans-serif;
|
||||
--font-mono: "DejaVu Sans Mono", Menlo, Monaco, Consolas, monospace;
|
||||
--font-copyright: Verdana, sans-serif; /* Copyright must be Verdana! */
|
||||
}
|
||||
|
||||
/* Index */
|
||||
|
@ -40,7 +36,7 @@ html {
|
|||
body {
|
||||
background: var(--bgcolor);
|
||||
font-size: 100%;
|
||||
font-family: var(--font-regular);
|
||||
font-family: "Cabin",sans-serif;
|
||||
color: var(--dark-color);
|
||||
position: relative;
|
||||
height: 100%;
|
||||
|
@ -51,7 +47,7 @@ body {
|
|||
color: rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: var(--font-emphasis);
|
||||
font-family: "Oswald",sans-serif;
|
||||
}
|
||||
|
||||
/* General reset */
|
||||
|
@ -171,7 +167,7 @@ img, input, select, textarea {
|
|||
|
||||
/* Use a consistent monospace font everywhere */
|
||||
.monospace, .bbc_code, .phpcode, pre {
|
||||
font-family: var(--font-mono);
|
||||
font-family: "DejaVu Sans Mono", Menlo, Monaco, Consolas, monospace;
|
||||
}
|
||||
|
||||
.sceditor-container textarea, .sceditor-container textarea:focus {
|
||||
|
@ -1137,16 +1133,13 @@ generic_menu .dropmenu .subsections ul li a {
|
|||
border: 1px solid;
|
||||
border-color: var(--bgcolor);
|
||||
border-radius: 3px;
|
||||
box-shadow: 1px 1px 1px rgba(221, 221, 221, 0.57) inset;
|
||||
box-sizing: border-box;
|
||||
vertical-align: middle;
|
||||
background: var(--neutral-color);
|
||||
outline: none;
|
||||
padding: 0 0.4em;
|
||||
}
|
||||
.button_strip_new_topic {
|
||||
font-weight: 700;
|
||||
font-family: var(--font-emphasis);
|
||||
}
|
||||
|
||||
a.button, a.button:hover, .button:focus {
|
||||
border-bottom: none;
|
||||
|
@ -1265,7 +1258,7 @@ html[lang="el-GR"] .inline_mod_check {
|
|||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
min-height: 4em;
|
||||
min-height: 8em;
|
||||
}
|
||||
#header::after {
|
||||
content: "";
|
||||
|
@ -1538,7 +1531,7 @@ font-size: large;
|
|||
}
|
||||
#footer li.copyright {
|
||||
display: block;
|
||||
font-family: var(--font-copyright);
|
||||
font-family: Verdana, sans-serif; /* Copyright must be Verdana! */
|
||||
}
|
||||
#footerfix {
|
||||
flex: 1 0 auto;
|
||||
|
@ -3312,15 +3305,12 @@ h2 .collapse {
|
|||
margin: 4px 4px 0 0;
|
||||
}
|
||||
.board_icon a, .board_icon div {
|
||||
background: url(../images/boardicons.png) no-repeat 0 0 / 90px;
|
||||
background: url(../images/boardicons.svg) no-repeat 0 0 / 90px;
|
||||
display: inline-block;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
border-bottom:none;
|
||||
}
|
||||
#messageindex .board_icon a, #messageindex .board_icon div {
|
||||
background: none;
|
||||
}
|
||||
.board_icon a:hover, .board_icon div:hover {
|
||||
border-bottom:none;
|
||||
}
|
||||
|
@ -4037,7 +4027,7 @@ ul.post_options li {
|
|||
|
||||
/* File error */
|
||||
.errorfile_table {
|
||||
font-family: var(--font-mono);
|
||||
font-family: monospace;
|
||||
border-spacing: 1px;
|
||||
}
|
||||
.errorfile_table td {
|
||||
|
@ -4737,6 +4727,15 @@ img.theme_thumbnail {
|
|||
right: 0;
|
||||
}
|
||||
|
||||
.khbb_subtitle {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
|
||||
.cat_bar {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
|
|
@ -70,9 +70,15 @@
|
|||
}
|
||||
|
||||
/* Autres modifs maisons */
|
||||
.khbb_subtitle {
|
||||
justify-content: center;
|
||||
}
|
||||
.khbb_identity {
|
||||
max-width: initial;
|
||||
}
|
||||
.khbb_subtitle .news {
|
||||
display: none !important;
|
||||
}
|
||||
/* Board */
|
||||
.cat_bar .lastpost {
|
||||
display: none !important;
|
||||
|
|
1
images/.gitignore
vendored
1
images/.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
/boardicons.png
|
||||
/icons/admin.png
|
||||
/icons/alerts.png
|
||||
/icons/home.png
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 6.3 KiB |
202
images/boardicons.svg
Normal file
202
images/boardicons.svg
Normal file
|
@ -0,0 +1,202 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="47.625mm"
|
||||
height="47.625mm"
|
||||
viewBox="0 0 47.625 47.625"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
sodipodi:docname="boardicons.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.6557772"
|
||||
inkscape:cx="41.0426"
|
||||
inkscape:cy="102.6065"
|
||||
inkscape:window-width="1278"
|
||||
inkscape:window-height="1022"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="layer1"
|
||||
showguides="false" /><defs
|
||||
id="defs2" /><g
|
||||
inkscape:label="Calque 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-28.695021,-30.302504)"><ellipse
|
||||
style="fill:#bd9098;stroke-width:0.264583;fill-opacity:1"
|
||||
id="path937"
|
||||
cx="40.557663"
|
||||
cy="42.090816"
|
||||
rx="11.398761"
|
||||
ry="9.8460035" /><ellipse
|
||||
style="fill:#bd9098;fill-opacity:1;stroke-width:0.264583"
|
||||
id="path937-6"
|
||||
cx="64.561783"
|
||||
cy="41.876976"
|
||||
rx="11.398761"
|
||||
ry="9.8460035" /><ellipse
|
||||
style="fill:#bd9098;fill-opacity:1;stroke-width:0.264583"
|
||||
id="path937-6-7"
|
||||
cx="40.849342"
|
||||
cy="66.267334"
|
||||
rx="11.398761"
|
||||
ry="9.8460035" /><ellipse
|
||||
style="fill:#bd9098;fill-opacity:1;stroke-width:0.264583"
|
||||
id="path937-6-5"
|
||||
cx="64.683205"
|
||||
cy="65.908531"
|
||||
rx="11.398761"
|
||||
ry="9.8460035" /><g
|
||||
id="g386"
|
||||
transform="translate(-0.26879614,-0.27100869)"><g
|
||||
id="g3486-3"
|
||||
transform="translate(-30.362466,25.451311)"
|
||||
style="fill:#e8304e;fill-opacity:1"><path
|
||||
style="fill:#e8304e;fill-opacity:1;stroke:none;stroke-width:0.561057;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m 75.498274,22.254678 c 0,0 0.336734,0.634649 2.389664,1.133196 C 76.323512,22.35551 76.228957,21.18979 76.228957,21.18979"
|
||||
id="path1508-2-3-5-9"
|
||||
sodipodi:nodetypes="ccc" /><path
|
||||
id="path1510-9-6-6-0"
|
||||
style="fill:#e8304e;fill-opacity:1;stroke-width:0.52564;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m -73.092828,16.117323 a 5.3818111,3.35495 0 0 1 5.303552,2.798279 c -0.80402,0.185379 -1.675644,0.287321 -2.585888,0.287321 -2.060395,0 -3.922483,-0.522612 -5.251876,-1.351339 -0.418728,-0.261029 -0.782948,-0.550035 -1.085722,-0.861446 a 5.3818111,3.35495 0 0 1 3.619934,-0.872815 z m -4.047815,1.144633 c 0.34933,0.374265 0.771055,0.714774 1.250053,1.013375 1.426282,0.889124 3.370805,1.42782 5.515426,1.42782 0.933448,0 1.829376,-0.101859 2.660819,-0.290422 a 5.3818111,3.35495 0 0 1 0.0031,0.05995 5.3818111,3.35495 0 0 1 -5.381584,3.354834 5.3818111,3.35495 0 0 1 -5.3821,-3.354834 5.3818111,3.35495 0 0 1 1.334285,-2.210718 z"
|
||||
transform="scale(-1,1)" /><g
|
||||
id="g1642-1-9-8"
|
||||
transform="translate(30.388612,-24.818836)"
|
||||
style="fill:#e8304e;fill-opacity:1"><path
|
||||
style="fill:#e8304e;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m 36.583874,43.461557 c 0,0 -0.476392,0.897865 -3.380757,1.603179 2.213258,-1.460528 2.347029,-3.109719 2.347029,-3.109719"
|
||||
id="path1508-27-4-8"
|
||||
sodipodi:nodetypes="ccc" /><ellipse
|
||||
style="fill:#e8304e;fill-opacity:1;stroke:none;stroke-width:0.743645;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
id="path1510-0-8-5"
|
||||
cx="39.986717"
|
||||
cy="39.525448"
|
||||
rx="7.6138706"
|
||||
ry="4.7463861" /></g></g><g
|
||||
id="g4200"
|
||||
style="fill:#e8304e;fill-opacity:1"><path
|
||||
style="fill:#e8304e;fill-opacity:1;stroke:none;stroke-width:0.561057;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m 69.135808,47.705989 c 0,0 0.336734,0.634649 2.389664,1.133196 -1.564426,-1.032364 -1.658981,-2.198084 -1.658981,-2.198084"
|
||||
id="path1508-2-3-5-96"
|
||||
sodipodi:nodetypes="ccc" /><path
|
||||
id="path1510-9-6-6-3"
|
||||
style="fill:#e8304e;fill-opacity:1;stroke-width:0.52564;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m 66.730362,41.568634 a 5.3818111,3.35495 0 0 0 -5.303552,2.798279 c 0.80402,0.185379 1.675644,0.287321 2.585888,0.287321 2.060395,0 3.922483,-0.522612 5.251876,-1.351339 0.418728,-0.261029 0.782948,-0.550035 1.085722,-0.861446 a 5.3818111,3.35495 0 0 0 -3.619934,-0.872815 z m 4.047815,1.144633 c -0.34933,0.374265 -0.771055,0.714774 -1.250053,1.013375 -1.426282,0.889124 -3.370805,1.42782 -5.515426,1.42782 -0.933448,0 -1.829376,-0.101859 -2.660819,-0.290422 a 5.3818111,3.35495 0 0 0 -0.0031,0.05995 5.3818111,3.35495 0 0 0 5.381584,3.354834 5.3818111,3.35495 0 0 0 5.3821,-3.354834 5.3818111,3.35495 0 0 0 -1.334285,-2.210718 z" /></g><g
|
||||
id="g4196"
|
||||
style="fill:#dddddd;fill-opacity:1"><g
|
||||
id="g4110-4"
|
||||
transform="translate(59.000842,-34.843345)"
|
||||
style="fill:#dddddd;fill-opacity:1"><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.695183;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753-8-3"
|
||||
cx="0.22994268"
|
||||
cy="79.393974"
|
||||
rx="0.7073034"
|
||||
ry="0.43313131" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.525692;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753-6-3-3"
|
||||
cx="-0.826244"
|
||||
cy="80.132942"
|
||||
rx="0.56068492"
|
||||
ry="0.31244308" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.36305;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753-3-1-3"
|
||||
cx="-1.9399792"
|
||||
cy="80.540527"
|
||||
rx="0.40688068"
|
||||
ry="0.20534968" /></g><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.743645;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
id="path1510-0-8-1"
|
||||
cx="64.012863"
|
||||
cy="40.157925"
|
||||
rx="7.6138706"
|
||||
ry="4.7463861" /></g><g
|
||||
id="g4162"
|
||||
style="fill:#dddddd;fill-opacity:1"><path
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.561057;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m 69.135808,71.705989 c 0,0 0.336734,0.634649 2.389664,1.133196 -1.564426,-1.032364 -1.658981,-2.198084 -1.658981,-2.198084"
|
||||
id="path1508-2-3-5-4"
|
||||
sodipodi:nodetypes="ccc" /><path
|
||||
id="path1510-9-6-6-4"
|
||||
style="fill:#dddddd;fill-opacity:1;stroke-width:0.52564;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m 66.730362,65.568634 a 5.3818111,3.35495 0 0 0 -5.303552,2.798279 c 0.80402,0.185379 1.675644,0.287321 2.585888,0.287321 2.060395,0 3.922483,-0.522612 5.251876,-1.351339 0.418728,-0.261029 0.782948,-0.550035 1.085722,-0.861446 a 5.3818111,3.35495 0 0 0 -3.619934,-0.872815 z m 4.047815,1.144633 c -0.34933,0.374265 -0.771055,0.714774 -1.250053,1.013375 -1.426282,0.889124 -3.370805,1.42782 -5.515426,1.42782 -0.933448,0 -1.829376,-0.101859 -2.660819,-0.290422 a 5.3818111,3.35495 0 0 0 -0.0031,0.05995 5.3818111,3.35495 0 0 0 5.381584,3.354834 5.3818111,3.35495 0 0 0 5.3821,-3.354834 5.3818111,3.35495 0 0 0 -1.334285,-2.210718 z" /><path
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m 60.61002,68.094032 c 0,0 -0.476392,0.897865 -3.380757,1.603179 2.213258,-1.460528 2.347029,-3.109719 2.347029,-3.109719"
|
||||
id="path1508-27-4-4"
|
||||
sodipodi:nodetypes="ccc" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.743645;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
id="path1510-0-8-7"
|
||||
cx="64.012863"
|
||||
cy="64.157921"
|
||||
rx="7.6138706"
|
||||
ry="4.7463861" /></g><g
|
||||
id="g4182"
|
||||
style="fill:#dddddd;fill-opacity:1"><path
|
||||
id="path1510-9-6-6-9"
|
||||
style="fill:#dddddd;fill-opacity:1;stroke-width:0.52564;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
d="m 42.73036,65.568634 a 5.3818111,3.35495 0 0 0 -5.303552,2.798279 c 0.80402,0.185379 1.675644,0.287321 2.585888,0.287321 2.060395,0 3.922483,-0.522612 5.251876,-1.351339 0.418728,-0.261029 0.782948,-0.550035 1.085722,-0.861446 A 5.3818111,3.35495 0 0 0 42.73036,65.568634 Z m 4.047815,1.144633 c -0.34933,0.374265 -0.771055,0.714774 -1.250053,1.013375 -1.426282,0.889124 -3.370805,1.42782 -5.515426,1.42782 -0.933448,0 -1.829376,-0.101859 -2.660819,-0.290422 a 5.3818111,3.35495 0 0 0 -0.0031,0.05995 5.3818111,3.35495 0 0 0 5.381584,3.354834 5.3818111,3.35495 0 0 0 5.3821,-3.354834 5.3818111,3.35495 0 0 0 -1.334285,-2.210718 z" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.509371;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753-5"
|
||||
cx="-46.276207"
|
||||
cy="71.956123"
|
||||
rx="0.51825184"
|
||||
ry="0.31736183"
|
||||
transform="scale(-1,1)" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.385182;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753-6-9"
|
||||
cx="-47.050091"
|
||||
cy="72.497574"
|
||||
rx="0.41082227"
|
||||
ry="0.22893174"
|
||||
transform="scale(-1,1)" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.266012;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753-3-7"
|
||||
cx="-47.866142"
|
||||
cy="72.796219"
|
||||
rx="0.29812759"
|
||||
ry="0.15046281"
|
||||
transform="scale(-1,1)" /></g><g
|
||||
id="g4176"
|
||||
style="fill:#dddddd;fill-opacity:1"><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.743645;stroke-linejoin:round;stroke-miterlimit:2;paint-order:stroke fill markers"
|
||||
id="path1510-0-8-0"
|
||||
cx="40.012859"
|
||||
cy="64.157921"
|
||||
rx="7.6138706"
|
||||
ry="4.7463861" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.695183;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753"
|
||||
cx="35.243378"
|
||||
cy="68.441536"
|
||||
rx="0.7073034"
|
||||
ry="0.43313131" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.525692;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753-6"
|
||||
cx="34.187191"
|
||||
cy="69.180504"
|
||||
rx="0.56068492"
|
||||
ry="0.31244308" /><ellipse
|
||||
style="fill:#dddddd;fill-opacity:1;stroke:none;stroke-width:0.36305;stroke-linejoin:round;stroke-miterlimit:2;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
|
||||
id="path3753-3"
|
||||
cx="33.073456"
|
||||
cy="69.588089"
|
||||
rx="0.40688068"
|
||||
ry="0.20534968" /></g></g><g
|
||||
id="g1642-1-6"
|
||||
transform="translate(4.6126872,-24.786987)" /></g></svg>
|
After Width: | Height: | Size: 12 KiB |
|
@ -218,8 +218,26 @@ echo '<div class="khbb_body">';
|
|||
<div id="header">
|
||||
<h1 class="forumtitle">
|
||||
<a id="top" href="', $scripturl, '">', empty($context['header_logo_url_html_safe']) ? $context['forum_name_html_safe'] : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name_html_safe'] . '">', '</a>
|
||||
</h1>
|
||||
</h1>';
|
||||
// Sur quel compte on est co ? Ou invité.
|
||||
echo '
|
||||
<div class="khbb_subtitle">
|
||||
<div class="khbb_identity" title="">
|
||||
<span class="textmenu">', $txt['hello_guest'], $context['user']['name'], '</span></a>
|
||||
</div> ';
|
||||
|
||||
// les slogans ! utilisation des "news" pour cela.
|
||||
// Show a random news item? (or you could pick one from news_lines...)
|
||||
if (!empty($settings['enable_news']) && !empty($context['random_news_line']))
|
||||
echo '
|
||||
<div class="news">
|
||||
<p>', $context['random_news_line'], '</p>
|
||||
</div>';
|
||||
|
||||
echo '
|
||||
</div>
|
||||
</div>';
|
||||
echo '
|
||||
<div id="wrapper">';
|
||||
// début menu du haut. On reconstruit sauce maison.
|
||||
echo '<a class="mobile_user_menu">
|
||||
|
@ -634,6 +652,8 @@ function template_menu()
|
|||
*/
|
||||
function template_button_strip($button_strip, $direction = '', $strip_options = array())
|
||||
{
|
||||
global $context, $txt;
|
||||
|
||||
if (!is_array($strip_options))
|
||||
$strip_options = array();
|
||||
|
||||
|
@ -641,32 +661,6 @@ function template_button_strip($button_strip, $direction = '', $strip_options =
|
|||
$buttons = array();
|
||||
foreach ($button_strip as $key => $value)
|
||||
{
|
||||
// If a "new topic" button is provided, skip it in this first pass.
|
||||
// It will be added at the end of the strip.
|
||||
if ( $key == 'new_topic' ) continue;
|
||||
|
||||
$buttons = template_button_strip_single_button($key, $value, $buttons);
|
||||
}
|
||||
// If a "new topic" button is provided, add it at the end of the strip.
|
||||
if ( array_key_exists('new_topic', $button_strip) ) {
|
||||
$key = 'new_topic';
|
||||
$value = $button_strip[$key];
|
||||
|
||||
$buttons = template_button_strip_single_button($key, $value, $buttons);
|
||||
}
|
||||
|
||||
// No buttons? No button strip either.
|
||||
if (empty($buttons))
|
||||
return;
|
||||
|
||||
echo '
|
||||
<div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"' : ''), '>
|
||||
', implode('', $buttons), '
|
||||
</div>';
|
||||
}
|
||||
function template_button_strip_single_button($key, $value, $buttons) {
|
||||
global $context, $txt;
|
||||
|
||||
// As of 2.1, the 'test' for each button happens while the array is being generated. The extra 'test' check here is deprecated but kept for backward compatibility (update your mods, folks!)
|
||||
if (!isset($value['test']) || !empty($context[$value['test']]))
|
||||
{
|
||||
|
@ -701,7 +695,16 @@ function template_button_strip_single_button($key, $value, $buttons) {
|
|||
|
||||
$buttons[] = $button;
|
||||
}
|
||||
return $buttons;
|
||||
}
|
||||
|
||||
// No buttons? No button strip either.
|
||||
if (empty($buttons))
|
||||
return;
|
||||
|
||||
echo '
|
||||
<div class="buttonlist', !empty($direction) ? ' float' . $direction : '', '"', (empty($buttons) ? ' style="display: none;"' : ''), (!empty($strip_options['id']) ? ' id="' . $strip_options['id'] . '"' : ''), '>
|
||||
', implode('', $buttons), '
|
||||
</div>';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue