Änderungen von Dokument FORMCYCLE Hilfe


Von Version 13.5
bearbeitet von gru
am 08.09.2025, 12:30
Änderungskommentar: Es gibt keinen Kommentar für diese Version
Auf Version 13.20
bearbeitet von gru
am 08.09.2025, 13:18
Änderungskommentar: Es gibt keinen Kommentar für diese Version

Zusammenfassung

Details

Seiteneigenschaften
Inhalt
... ... @@ -875,6 +875,7 @@
875 875  
876 876   /* Dialog box */
877 877   #dialogv8 {
878 + user-select: none;
878 878   background-color: white;
879 879   padding: 20px;
880 880   border-radius: 25px;
... ... @@ -883,6 +883,7 @@
883 883   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
884 884   text-align: center;
885 885   font-family: "Corporate S W01","HelveticaNeue","Helvetica Neue","HelveticaNeueRoman","HelveticaNeue-Roman","Helvetica Neue Roman",'TeXGyreHerosRegular',"Helvetica","Tahoma","Geneva","Arial",sans-serif !important;
887 + font-weight: 400;
886 886   }
887 887  
888 888   #dialogv8 h2, #dialogv8 label {
... ... @@ -889,23 +889,31 @@
889 889   margin-top: 0;
890 890   font-size: 15px;
891 891   font-family: "Corporate S W01","HelveticaNeue","Helvetica Neue","HelveticaNeueRoman","HelveticaNeue-Roman","Helvetica Neue Roman",'TeXGyreHerosRegular',"Helvetica","Tahoma","Geneva","Arial",sans-serif !important;
894 + font-weight: 400;
895 + border-bottom: none;
892 892   }
893 893  
894 894   .dialogv8-buttons {
895 - margin-top: 20px;
899 + margin-top: 10px;
900 + padding-top: 10px;
896 896   display: flex;
897 897   justify-content: space-around;
898 898   flex-wrap: wrap;
899 899   gap: 10px;
905 + border-top: 1px solid black;
900 900   }
901 901  
902 - .dialog-buttons button {
903 - padding: 10px 20px;
908 + .dialogv8-buttons DIV {
909 + padding: 7px 9px;
904 904   font-size: 15px;
905 905   border: none;
906 906   border-radius: 15px;
907 907   cursor: pointer;
908 908   }
915 + .dialogv8-buttons DIV:hover {
916 + opacity: 0.8;
917 + cursor: pointer;
918 + }
909 909  
910 910   .continue-button {
911 911   background-color: #617496;
... ... @@ -928,7 +928,7 @@
928 928   flex-direction: column;
929 929   }
930 930  
931 - .dialogv8-buttons button {
941 + .dialogv8-buttons DIV {
932 932   width: 100%;
933 933   }
934 934   }
... ... @@ -936,12 +936,14 @@
936 936  
937 937  <div id="overlayv8" style="display: none;">
938 938   <div id="dialogv8">
939 - <h2>Die aktuelle formcycle Version ist die Version 8. Möchten Sie zur Hilfe für diese Version weitergeleitet werden?</h2>
940 - <input type="checkbox" id="dialogv8cb" name="dialogv8cb" value="true">
941 - <label for="dialogv8cb">Diese Entscheidung merken</label><br>
949 + <h2>Die aktuelle formcycle Version ist die Version 8. Möchten Sie zur Hilfe für diese Version wechseln?</h2>
950 + <div>
951 + <input type="checkbox" id="dialogv8cb" name="dialogv8cb" value="true">
952 + <label for="dialogv8cb" style="margin-top: 3px;">Diese Entscheidung merken</label><br>
953 + </div>
942 942   <div class="dialogv8-buttons">
943 - <button class="continue-button" id="continueBtn">Zur V8 Hilfe wechseln</button>
944 - <button class="abort-button" id="abortBtn">In der V7 Hilfe bleiben</button>
955 + <div class="continue-button" id="continueBtn">Zur V8 Hilfe wechseln</div>
956 + <div class="abort-button" id="abortBtn">In der V7 Hilfe bleiben</div>
945 945   </div>
946 946   </div>
947 947  </div>
... ... @@ -1000,6 +1000,7 @@
1000 1000   // Close overlay on abort
1001 1001   document.getElementById("abortBtn").onclick = function() {
1002 1002   document.getElementById("overlayv8").style.display = "none";
1015 + console.log("debug cb",$('[INPUT name="dialogv8cb"]').val());
1003 1003   if ($('[INPUT name="dialogv8cb"]').val() == "true") {
1004 1004   setCookie("dialogv8", "false", 90);
1005 1005   }