... |
... |
@@ -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,24 +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; |
892 |
892 |
border-bottom: none; |
893 |
893 |
} |
894 |
894 |
|
895 |
895 |
.dialogv8-buttons { |
896 |
|
- margin-top: 20px; |
|
899 |
+ margin-top: 10px; |
|
900 |
+ padding-top: 10px; |
897 |
897 |
display: flex; |
898 |
898 |
justify-content: space-around; |
899 |
899 |
flex-wrap: wrap; |
900 |
900 |
gap: 10px; |
|
905 |
+ border-top: 1px solid black; |
901 |
901 |
} |
902 |
902 |
|
903 |
|
- .dialog-buttons button { |
904 |
|
- padding: 10px 20px; |
|
908 |
+ .dialogv8-buttons DIV { |
|
909 |
+ padding: 7px 9px; |
905 |
905 |
font-size: 15px; |
906 |
906 |
border: none; |
907 |
907 |
border-radius: 15px; |
908 |
908 |
cursor: pointer; |
909 |
909 |
} |
|
915 |
+ .dialogv8-buttons DIV:hover { |
|
916 |
+ opacity: 0.8; |
|
917 |
+ cursor: pointer; |
|
918 |
+ } |
910 |
910 |
|
911 |
911 |
.continue-button { |
912 |
912 |
background-color: #617496; |
... |
... |
@@ -929,7 +929,7 @@ |
929 |
929 |
flex-direction: column; |
930 |
930 |
} |
931 |
931 |
|
932 |
|
- .dialogv8-buttons button { |
|
941 |
+ .dialogv8-buttons DIV { |
933 |
933 |
width: 100%; |
934 |
934 |
} |
935 |
935 |
} |
... |
... |
@@ -937,14 +937,14 @@ |
937 |
937 |
|
938 |
938 |
<div id="overlayv8" style="display: none;"> |
939 |
939 |
<div id="dialogv8"> |
940 |
|
- <h2>Die aktuelle formcycle Version ist die Version 8. Möchten Sie zur Hilfe für diese Version weitergeleitet werden?</h2> |
|
949 |
+ <h2>Die aktuelle formcycle Version ist die Version 8. Möchten Sie zur Hilfe für diese Version wechseln?</h2> |
941 |
941 |
<div> |
942 |
942 |
<input type="checkbox" id="dialogv8cb" name="dialogv8cb" value="true"> |
943 |
943 |
<label for="dialogv8cb" style="margin-top: 3px;">Diese Entscheidung merken</label><br> |
944 |
944 |
</div> |
945 |
945 |
<div class="dialogv8-buttons"> |
946 |
|
- <button class="continue-button" id="continueBtn">Zur V8 Hilfe wechseln</button> |
947 |
|
- <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> |
948 |
948 |
</div> |
949 |
949 |
</div> |
950 |
950 |
</div> |
... |
... |
@@ -1003,6 +1003,7 @@ |
1003 |
1003 |
// Close overlay on abort |
1004 |
1004 |
document.getElementById("abortBtn").onclick = function() { |
1005 |
1005 |
document.getElementById("overlayv8").style.display = "none"; |
|
1015 |
+ console.log("debug cb",$('[INPUT name="dialogv8cb"]').val()); |
1006 |
1006 |
if ($('[INPUT name="dialogv8cb"]').val() == "true") { |
1007 |
1007 |
setCookie("dialogv8", "false", 90); |
1008 |
1008 |
} |