MyBB.de Forum
DVZ Shoutbox - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html)
+--- Thema: DVZ Shoutbox (/thread-30347.html)

Seiten: Seiten: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26


RE: DVZ Shoutbox - KaSo - 18.12.2016

Hallo Lagerlui,

anscheinend hast Du die global.css Datei nicht mit diesem CSS-Befehle hinzugefügt:
Code:
/* DVZ Shoutbox */
#shoutbox { margin-bottom: 10px; border: solid 2px rgba(0,0,0,0.1); }
#shoutbox .head { padding: 8px; }
#shoutbox.front .head { cursor: pointer; }
#shoutbox .head .right { float: right; margin: 0; font-size: 13px; }
#shoutbox.collapsed .head { opacity: 0.6; }
#shoutbox.collapsed .body { display: none; }

#shoutbox .panel { border-top: solid 2px rgba(0,0,0,0.1); }
#shoutbox input.text { margin: 0; padding: 10px 8px; width: 100%; box-sizing: border-box; border: none; box-shadow: inset 0 2px 4px rgba(0,0,0,0.08); font-family: Arial, sans-serif; font-size: 12px; color: #000; }
#shoutbox .minposts, #shoutbox .blocked { padding: 6px; font-size: 11px; }
#shoutbox .panel.minposts { background: #FFFED8; color: #727250; }
#shoutbox .panel.blocked { background: #FCEFEF; color: #543A3A; }
#shoutbox .panel p { margin: 0; }

#shoutbox .window { border-top: solid 2px rgba(0,0,0,0.1); overflow-y: scroll; }
#shoutbox .data { display: table; width: 100%; border-top: solid 2px rgba(0,0,0,0.1); font-family: Arial, sans-serif; font-size: 12px; }
#shoutbox.front .data { border-top: none; }

#shoutbox .entry { display: table-row !important; width: 100%; transition: background-color 0.2s; }
#shoutbox .entry:nth-child(even) { background-color: rgba(0,0,0,0.01); }
#shoutbox .entry.new { background-color: rgba(255,255,100,0.1); }
#shoutbox .entry:target { background-color: rgba(50,200,255,0.1); }
#shoutbox .entry > div { border-bottom: dashed 1px rgba(0,0,0,0.05); }
#shoutbox .entry:last-child > div { border-bottom: none; }

#shoutbox .entry > div { display: table-cell; padding: 6px; }

#shoutbox .avatar img { margin: 0 auto; vertical-align: middle; max-height: 20px; max-width: 20px; border: solid 1px rgba(255,255,255,0.1); box-shadow: 0 0 2px rgba(0,0,0,0.1); cursor: pointer; }
#shoutbox .user { border-right: solid 1px rgba(0,0,0,0.05); text-align: right; white-space: nowrap; }
#shoutbox .text { width: 100%; color: #555; }
#shoutbox .info { font-size: 11px; color: #AAA; white-space: nowrap; text-align: right; }
#shoutbox .entry.unread .info:before { display: inline-block; position: relative; top: -2px; margin-right: 10px; height: 4px; width: 4px; content: ''; background: rgba(255,100,0,0.8); border-radius: 10px; }
#shoutbox .info a { color: inherit; }
#shoutbox .mod { padding: 6px 8px; font-size: 9px; font-weight: bold; color: #AAA; text-decoration: none; }
#shoutbox .mod:nth-of-type(2) { margin-right: 5px; border-left: solid 1px rgba(0,0,0,0.1); }
#shoutbox  .ip { margin-right: 10px; color: #CECECE; }



RE: DVZ Shoutbox - Lagerlui - 18.12.2016

Danke KaSo doch hatte ich aber da war wohl ein Enter zuviel drinnen bei mir jetzt läuft sie und schaut super aus besser als das teure Ding von wbb xD


RE: DVZ Shoutbox - KaSo - 18.12.2016

Hast du das Design/Themplate käuflich erworben oder ist es ein FreeThemplate?


RE: DVZ Shoutbox - MrDoob - 07.02.2017

hat wer schon eine möglichkeit gefunden da die Bilder kleiner werden innerhalb der SBox??

Weil ein Bild zersprengt mir alles !

Für Youtube hab Ich es innerhalb des MyCodes gemacht

 **
inc/plugins/dvz_shoutbox.php
Zeile : 1338

oder sucht nach :

    static function parse($message, $me_username)

Code:
          

'allow_mycode'     => $mybb->settings['dvz_sb_mycode'],
'allow_smilies'   => $mybb->settings['dvz_sb_smilies'],
'allow_imgcode'   => 1,
'allow_ytcode'     => 1,
'allow_spoilercode'   => 1,
'allow_lmgtfycode'   => 1,
 'filter_badwords' => 1,
'allow_bbcode'     => 1,

Regulärer Ausdruck *
Code:
\[yt\](.*?)\[/yt\]

Ersetzung *
Code:
<div align="center" style="margin:0;padding:0;width:512px;">
<div style="float:right;">
<button onclick="MyBB.popupWindow('https://www.youtube.com/watch_popup?v=$1','youtube_$1',640,480);" style="background:url(https://s.ytimg.com/yt/img/master-vfl102488.png) 0 -658px;border:0;height:22px;width:27px;" />
</div>
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/$1&amp;fs=1&amp;rel=0" width="240" height="180">
<param name="movie" value="http://www.youtube.com/v/$1&amp;fs=1&amp;rel=0" />
<param name="allowfullscreen" value="false" />
<param name="allowscriptaccess" value="always" />
<param name="wmode" value="transparent" />
</object>
</div>



RE: DVZ Shoutbox - MyBB.de Bot - 25.02.2017

Eine neue Version wurde veröffentlicht: DVZ Shoutbox 2.3.1


RE: DVZ Shoutbox - Sunny1895 - 14.04.2017

Servus, ich find die einstellungen im Mod CP nicht.. kann mir da irgendwer sagen wo die sein sollten?

Brauche die Befehle wie Clearall etc pp


RE: DVZ Shoutbox - bv64 - 14.04.2017

klicke in der Shoutbox auf "Archiv", da solltest du dann die Optionen zum Löschen haben, wenn du die entsprechenden Rechte dafür hast


RE: DVZ Shoutbox - Maggan22 - 03.11.2017

Hallo zusammen,

vielleicht bin ich blind, aber in der downloaddatei habe ich keine datei finden können welches den css code enthält.
Den Code der hier von KaSo gepostet wurde hat mir eben das ganze Theme gesprengt.


RE: DVZ Shoutbox - bv64 - 03.11.2017

hab mir die Datei gerade mal frisch geladen und die Datei ist genau da, wo sie immer war

STYLES.txt

liegt im gleichen Ordner wie die README.txt und der Ordner Upload


RE: DVZ Shoutbox - Maggan22 - 03.11.2017

Das ist seltsam... ich habe nur einen inc Ordner drin. Und dadrin die Ordner plugins und language. Keine Readme und keine Style.txt Die Zipdatei, die ich heruntergeladen habe heisst: DVZ Shoutbox_#12_stable_deutsch