Merge pull request #2147 from cats-shadow/view-decoration

[Visual decorations] Small decoration for header of the log overview …
pull/2151/head
Andreas Kristiansen 2023-05-19 12:19:12 +02:00 zatwierdzone przez GitHub
commit 596480f029
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
<h2><?php echo lang('gen_hamradio_logbook'); ?></h2>
<?php if ($results) { ?>
<h6><?php echo lang('gen_hamradio_logbook').": ".$this->logbooks_model->find_name($this->session->userdata('active_station_logbook')); ?> <?php echo lang('general_word_location').": ".$this->stations->find_name(); ?></h6>
<h6><?php echo lang('gen_hamradio_logbook').": <span class='station_logbook_decoration'>".$this->logbooks_model->find_name($this->session->userdata('active_station_logbook')); ?></span> <?php echo lang('general_word_location').": <span class='station_location_decoration'>".$this->stations->find_name(); ?></span></h6>
<?php } ?>

Wyświetl plik

@ -436,4 +436,15 @@ div#station_logbooks_linked_table_paginate {
.w-qsl{
max-height: calc(100vh - 270px);
overflow-y: auto;
}
.station_logbook_decoration{
font-weight: bold;
font-size: larger;
}
.station_location_decoration{
font-weight: bold;
font-size: larger;
}