Iconbar hochladen - XML-Datei ohne Umbrüche

Gestern 13:43 (zuletzt bearbeitet: Gestern 13:46)
#1 Iconbar hochladen - XML-Datei ohne Umbrüche
avatar
Mitglied



Bin gerade dabei meine neue Iconbar 2024 hochzuladen!
Auch das Importieren klappt bestens!
Nur sind alle Scripte in der Iconbar ohne Umbruch importiert worden!
Ich dachte, da hätte sich etwas getan (seit 2019), schade...

Wenn man alles gut abgeschlossen (;) hat, funktioniert auch alles bestens, nur das Auffinden bei Änderungen ist super schwer.
Man müsste erstmal das einreihige Skript (nach dem Import) mit Umbrüchen versehen, um wieder einen Überblick zu erhalten!

Frage:
Lässt sich hier etwas machen, kann die XML-Datei 1 zu 1 heruntergeladen werden?
Gibt es eine Vorab-Lösung?
Das wäre super gut!

VG
Wolfgang


************************************************************************************************

Vor dem Import (Beispiel "Schriftgröße"):

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
 
<style> 
#fontsize {color:#000000; line-height:24px; width:95%;}
#fontsize div{clear:both; font-weight:bold; text-align:left; padding-left:5px; cursor:pointer; }
#fontsize div:hover{background:#dddddd; color:#222222 !important; border-radius:2px; padding-left:5px; width:160px;}
</style>
 
<div id="fontsize">
<div onclick="xob_insert('[style=font-size:9px]','[/style]')" style="font-size:10px;">9px</div>
<div onclick="xob_insert('[style=font-size:10px]','[/style]')" style="font-size:11px;">10px</div>
<div onclick="xob_insert('[style=font-size:11px]','[/style]')" style="font-size:12px;">11px</div>
<div onclick="xob_insert('[style=font-size:12px]','[/style]')" style="font-size:13px;">12px</div>
<div onclick="xob_insert('[style=font-size:14px]','[/style]')" style="font-size:14px;color:#700000">Standard</div>
<div onclick="xob_insert('[style=font-size:16px]','[/style]')" style="font-size:15px;">16px</div>
<div onclick="xob_insert('[style=font-size:18px]','[/style]')" style="font-size:16px;">18px</div>
<div onclick="xob_insert('[style=font-size:20px]','[/style]')" style="font-size:17px;">20px</div>
<div onclick="xob_insert('[style=font-size:22px]','[/style]')" style="font-size:18px;">22px</div>
<div onclick="xob_insert('[style=font-size:24px]','[/style]')" style="font-size:19px;">24px</div>
<div onclick="xob_insert('[style=font-size:26px]','[/style]')" style="font-size:20px;">26px</div>
<div onclick="xob_insert('[style=font-size:??px]','[/style]')" style="color:#700000;font-size:14px;">Variabel</div>
</div>
 
<script>
window.addEventListener('load', function(){
$('#fontsize').parent().parent().attr('style','float:left; text-decoration:none !important; font-size:13px; background-image: linear-gradient(180deg,#9aadea,#cedfff 50%,#9aadea); border-radius:3px; color:#000143; padding:1px 5px! important; margin-left:3px');
});
</script>
 



Nach dem importieren:

1
 
<style> #fontsize {color:#000000; line-height:24px; width:95%;} #fontsize div{clear:both; font-weight:bold; text-align:left; padding-left:5px; cursor:pointer; } #fontsize div:hover{background:#dddddd; color:#222222 !important; border-radius:2px; padding-left:5px; width:160px;} </style>   <div id="fontsize"> <div onclick="xob_insert('[style=font-size:9px]','[/style]')" style="font-size:10px;">9px</div> <div onclick="xob_insert('[style=font-size:10px]','[/style]')" style="font-size:11px;">10px</div> <div onclick="xob_insert('[style=font-size:11px]','[/style]')" style="font-size:12px;">11px</div> <div onclick="xob_insert('[style=font-size:12px]','[/style]')" style="font-size:13px;">12px</div> <div onclick="xob_insert('[style=font-size:14px]','[/style]')" style="font-size:14px;color:#700000">Standard</div> <div onclick="xob_insert('[style=font-size:16px]','[/style]')" style="font-size:15px;">16px</div> <div onclick="xob_insert('[style=font-size:18px]','[/style]')" style="font-size:16px;">18px</div> <div onclick="xob_insert('[style=font-size:20px]','[/style]')" style="font-size:17px;">20px</div> <div onclick="xob_insert('[style=font-size:22px]','[/style]')" style="font-size:18px;">22px</div> <div onclick="xob_insert('[style=font-size:24px]','[/style]')" style="font-size:19px;">24px</div> <div onclick="xob_insert('[style=font-size:26px]','[/style]')" style="font-size:20px;">26px</div> <div onclick="xob_insert('[style=font-size:??px]','[/style]')" style="color:#700000;font-size:14px;">Variabel</div>  </div>   <script> window.addEventListener('load', function(){   $('#fontsize').parent().parent().attr('style','float:left; text-decoration:none !important;font-size:13px; background-image: linear-gradient(180deg,#9aadea,#cedfff 50%,#9aadea);border-radius:3px; color:#000143; padding:1px 5px !important; margin-left:3px'); }); </script>
 

Bereits Mitglied?
Jetzt anmelden!
Mitglied werden?
Jetzt registrieren!