| @@ -1250,7 +1250,7 @@ h6.calendar-week { | |||||
| cursor: pointer; | cursor: pointer; | ||||
| } | } | ||||
| .radio-icons p .selected-icon { | .radio-icons p .selected-icon { | ||||
| padding-left: 6px; | |||||
| } | } | ||||
| .radio-icons p i { | .radio-icons p i { | ||||
| font-size: 0.65rem; | font-size: 0.65rem; | ||||
| @@ -1,7 +1,7 @@ | |||||
| <?php | <?php | ||||
| require_once __DIR__ . '/../../server/server/config/boot_global.php'; | require_once __DIR__ . '/../../server/server/config/boot_global.php'; | ||||
| require_once __DIR__ . '/../../server/server/config/boot_local.php'; | require_once __DIR__ . '/../../server/server/config/boot_local.php'; | ||||
| $version = 'v=2.1.2';//time();//Francis_Utils_Config::get( 'version' ); | |||||
| $version = 'v=2.1.3';//time();//Francis_Utils_Config::get( 'version' ); | |||||
| ?> | ?> | ||||
| <!DOCTYPE html> | <!DOCTYPE html> | ||||
| <html lang="en"> | <html lang="en"> | ||||
| @@ -47,7 +47,7 @@ app.state.AppointmentCreate = function() | |||||
| if (selectedIcon) { | if (selectedIcon) { | ||||
| iconSpan.innerHTML = '<i class="fas ' + selectedIcon + '"></i>'; | iconSpan.innerHTML = '<i class="fas ' + selectedIcon + '"></i>'; | ||||
| } else { | } else { | ||||
| iconSpan.innerHTML = ''; | |||||
| iconSpan.innerHTML = 'Ohne'; | |||||
| } | } | ||||
| radioIconsInner.style.display = 'none'; | radioIconsInner.style.display = 'none'; | ||||
| } | } | ||||
| @@ -52,7 +52,7 @@ app.state.AppointmentEdit= function() | |||||
| if (selectedIcon) { | if (selectedIcon) { | ||||
| iconSpan.innerHTML = '<i class="fas ' + selectedIcon + '"></i>'; | iconSpan.innerHTML = '<i class="fas ' + selectedIcon + '"></i>'; | ||||
| } else { | } else { | ||||
| iconSpan.innerHTML = ''; | |||||
| iconSpan.innerHTML = 'Ohne'; | |||||
| } | } | ||||
| radioIconsInner.style.display = 'none'; | radioIconsInner.style.display = 'none'; | ||||
| } | } | ||||
| @@ -25,9 +25,20 @@ | |||||
| <div class="form-group"> | <div class="form-group"> | ||||
| <div class="form-row"> | <div class="form-row"> | ||||
| <div class="col"> | <div class="col"> | ||||
| <label> | |||||
| <%= _lc( 'APPOINTMENT_ICON' ) %> | |||||
| </label> | |||||
| <div class="radio-icons" id="radio-icons"> | <div class="radio-icons" id="radio-icons"> | ||||
| <p class="d-flex justify-content-between align-items-center"> | <p class="d-flex justify-content-between align-items-center"> | ||||
| <span><%= _lc( 'APPOINTMENT_ICON' ) %><span class="selected-icon"><i class="fas <%= a.getIcon() %>"></i></span></span> | |||||
| <span> | |||||
| <span class="selected-icon"> | |||||
| <% if (a.getIcon() === "") { %> | |||||
| Ohne | |||||
| <% } else { %> | |||||
| <i class="fas <%= a.getIcon() %>"></i> | |||||
| <% } %> | |||||
| </span> | |||||
| </span> | |||||
| <i class="fas fa-chevron-down"></i> | <i class="fas fa-chevron-down"></i> | ||||
| </p> | </p> | ||||
| <div class="radio-icons-inner"> | <div class="radio-icons-inner"> | ||||
| @@ -39,9 +39,14 @@ | |||||
| <div class="form-group"> | <div class="form-group"> | ||||
| <div class="form-row"> | <div class="form-row"> | ||||
| <div class="col"> | <div class="col"> | ||||
| <label> | |||||
| <%= _lc( 'APPOINTMENT_ICON' ) %> | |||||
| </label> | |||||
| <div class="radio-icons" id="radio-icons"> | <div class="radio-icons" id="radio-icons"> | ||||
| <p class="d-flex justify-content-between align-items-center"> | <p class="d-flex justify-content-between align-items-center"> | ||||
| <span><%= _lc( 'APPOINTMENT_ICON' ) %></span> | |||||
| <span> | |||||
| <span class="selected-icon">Ohne</span> | |||||
| </span> | |||||
| <i class="fas fa-chevron-down"></i> | <i class="fas fa-chevron-down"></i> | ||||
| </p> | </p> | ||||
| <div class="radio-icons-inner"> | <div class="radio-icons-inner"> | ||||