27 lines
707 B
HTML
27 lines
707 B
HTML
<!-- Load custom CSS after Jitsi CSS -->
|
|
<link rel="stylesheet" href="css/custom/custom.css">
|
|
<style>
|
|
/* Force toolbar always visible on mobile and desktop */
|
|
.new-toolbox {
|
|
bottom: 0 !important;
|
|
opacity: 1 !important;
|
|
visibility: visible !important;
|
|
pointer-events: auto !important;
|
|
transition: none !important;
|
|
}
|
|
.new-toolbox .toolbox-content-wrapper {
|
|
opacity: 1 !important;
|
|
visibility: visible !important;
|
|
}
|
|
.new-toolbox .toolbox-content-items {
|
|
opacity: 1 !important;
|
|
visibility: visible !important;
|
|
}
|
|
/* Ensure mobile toolbar shows */
|
|
.toolbox-content-mobile {
|
|
display: flex !important;
|
|
opacity: 1 !important;
|
|
visibility: visible !important;
|
|
}
|
|
</style>
|