Regulations – Policies
Regulations – Policies
|
.
|
.
|
|---|---|
|
Κανονισμός Εσωτερικής Λειτουργίας του ΤΕΚΑ
|
|
|
Κανονισμός Επενδύσεων του ΤΕΚΑ
|
|
|
Κανονισμός Οικονομικής Οργάνωσης και Λογιστικής Λειτουργίας του ΤΕΚΑ
|
|
|
Πολιτική Επενδύσεων του ΤΕΚΑ
|
|
|
Πολιτική Επενδύσεων - Διορθώσεις Σφαλμάτων
|
|
|
Κανονισμός Λειτουργίας Μονάδας Εσωτερικού Ελέγχου
|
document.addEventListener('DOMContentLoaded', function() {
const tableCells = document.querySelectorAll('.ha-table__body-row-cell-wrap');
tableCells.forEach(cell => {
const link = cell.querySelector('.ha-table__body-row-cell-text a');
const icon = cell.querySelector('.ha-table__body-row-cell-icon');
if (link && icon && !icon.querySelector('a')) {
const href = link.getAttribute('href');
const target = link.getAttribute('target');
// Wrap icon with link
const iconLink = document.createElement('a');
iconLink.href = href;
if (target) iconLink.setAttribute('target', target);
iconLink.style.display = 'block';
const svg = icon.querySelector('svg');
if (svg) {
iconLink.appendChild(svg.cloneNode(true));
svg.remove();
icon.appendChild(iconLink);
}
}
});
});
.ha-table__body-row-cell-icon a,
.ha-table__body-row-cell-icon a:hover,
.ha-table__body-row-cell-icon a:visited {
color: inherit;
text-decoration: none;
}
.ha-table__body-row-cell-icon svg {
fill: currentColor;
}