[ITM] c't Shariff Social Buttons

XF1.x [ITM] c't Shariff Social Buttons 3.0.1

Keine Rechte zum Download
Ich habe schon eine Idee. Würde gerne vorher mit dir testen, ist das OK?
Weil ich kein Board mit den Button UND Zähler habe ..
 
Nur eine kleine Änderung .. ;)
Dafür musst du den Debug Modus anmachen, damit du die TMS share_page.css bearbeiten kannst.
 
Einmal bitte das "Ersetze:"-Feld komplett mit dem folgenden Code ersetzen...

Code:
$0
@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive .sharePage
    {
        display: inline !important;
    }

    .Responsive .shariff .orientation-horizontal li
    {
        {xen:if {$xenOptions.itm_ctSSB_enable_sharePage.ctSSB_Count}, min-width: 65px !important, min-width_: 35px !important};
        min-width: 35px !important;
        -webkit-flex: none !important;
        -ms-flex: none !important;
        flex: none !important;
    }
}
 
Dann probiere mal bitte den Code aus ..

Code:
$0
@media only screen and (min-width:360px)
{
    .Responsive .sharePage
    {
        display: inline !important;
    }

    .Responsive .shariff .orientation-horizontal li
    {
        <xen:if is={$xenOptions.itm_ctSSB_enable_sharePage.ctSSB_Count}>
            min-width: 65px !important;
        <xen:else />
             min-width: 35px !important;
        </xen:if>
       
        -webkit-flex: none !important;
        -ms-flex: none !important;
        flex: none !important;
    }
}
 
@rugk So ein letzter Versuch erstmal ..

Code:
$0
@media only screen and (min-width:360px)
{
    .Responsive .sharePage
    {
        display: inline !important;
    }

    .Responsive .shariff .orientation-horizontal li
    {
        min-width: 35px !important;
       
        -webkit-flex: none !important;
        -ms-flex: none !important;
        flex: none !important;
    }
}
 
Danke für deine Hilfe. Ich werde mal daran arbeiten .. :p

Den original Code hab ich verloren .. :D

Code:
$0
.shariff .orientation-horizontal li {min-width: 1px !important;}

@media (max-width:@nonResponsiveMinWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 35px !important; -webkit-flex: none !important; -ms-flex: none !important; flex: none !important;}
}

@media (max-width:@maxResponsiveWideWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 35px !important; -webkit-flex: none !important; -ms-flex: none !important; flex: none !important;}
}

@media (max-width:@maxResponsiveMediumWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 35px !important; -webkit-flex: none !important; -ms-flex: none !important; flex: none !important;}
}

@media (max-width:@maxResponsiveNarrowWidth)
{
.Responsive .sharePage {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 35px !important; -webkit-flex: none !important; -ms-flex: none !important; flex: none !important;}
}
 
das wäre es original (Feld ersetzen)
$0
@media (max-width:mad:nonResponsiveMinWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline;}
}

@media (max-width:mad:maxResponsiveWideWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline;}
}

@media (max-width:mad:maxResponsiveMediumWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline;}
}

@media (max-width:mad:maxResponsiveNarrowWidth)
{
.Responsive .sharePage {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 1px;}
}
 
@Lemminator
Die Version sieht auch schön aus... :D

Übrigens habe ich es gerade nochmal auf eigene Faust probiert und siehe an ich habe eine Lösung. Dies ist der richtige Code:
Code:
$0
.shariff .orientation-horizontal li {min-width: 1px !important;}

@media (max-width:@nonResponsiveMinWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 65px !important; -webkit-flex: none !important; -ms-flex: none !important; flex: none !important;}
}

@media (max-width:@maxResponsiveWideWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 65px !important; -webkit-flex: none !important; -ms-flex: none !important; flex: none !important;}
}

@media (max-width:@maxResponsiveMediumWidth)
{
.Responsive .shariff ul.theme-standard.orientation-horizontal {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 65px !important; -webkit-flex: none !important; -ms-flex: none !important; flex: none !important;}
}

@media (max-width:@maxResponsiveNarrowWidth)
{
.Responsive .sharePage {display: inline !important;}
.Responsive .shariff .orientation-horizontal li {min-width: 65px !important; -webkit-flex: none !important; -ms-flex: none !important; flex: none !important;}
}

Und was ich gemacht habe ist auch ganz einfach: Ich habe den Original-Code genommen und einfach alle Vorkommnisse von 35 mit 65 ersetzt und schon sieht es schön aus. :playfull:
 
Zurück
Oben