1e759aebbSGreg Roach/** 2e759aebbSGreg Roach * webtrees: online genealogy 332aacef3SGreg Roach * Copyright (C) 2021 webtrees development team 4e759aebbSGreg Roach * This program is free software: you can redistribute it and/or modify 5e759aebbSGreg Roach * it under the terms of the GNU General Public License as published by 6e759aebbSGreg Roach * the Free Software Foundation, either version 3 of the License, or 7e759aebbSGreg Roach * (at your option) any later version. 8e759aebbSGreg Roach * This program is distributed in the hope that it will be useful, 9e759aebbSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 10e759aebbSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11e759aebbSGreg Roach * GNU General Public License for more details. 12e759aebbSGreg Roach * You should have received a copy of the GNU General Public License 13e759aebbSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 14e759aebbSGreg Roach */ 15e759aebbSGreg Roach 16e759aebbSGreg Roach/* 1792044e0dSGreg Roach * Common formatting for all themes. 18e759aebbSGreg Roach */ 19e759aebbSGreg Roach 200dac5065SGreg Roach@import "_blocks.css"; 2192044e0dSGreg Roach@import "_charts.css"; 2292044e0dSGreg Roach@import "_colorbox.css"; 2332aacef3SGreg Roach@import "_leaflet.css"; 2492044e0dSGreg Roach@import "_lists.css"; 251db5ed46SGreg Roach@import "_markdown.css"; 2692044e0dSGreg Roach@import "_mime-type-icons.css"; 2792044e0dSGreg Roach@import "_on-screen-keyboard.css"; 280dac5065SGreg Roach@import "_pages.css"; 2992044e0dSGreg Roach@import "_sortable.css"; 30*dcafe132SGreg Roach@import "_tab-album.css"; 3192044e0dSGreg Roach@import "_tab-relatives.css"; 3292044e0dSGreg Roach 33d274c9ecSGreg Roach/* Some icons need to be reversed on right-to-left pages */ 342f955fcfSGreg Roach[dir=rtl] .wt-icon-flip-rtl 3543e8a0e6SGreg Roach{ 36d274c9ecSGreg Roach transform: scale(-1, 1); 37d274c9ecSGreg Roach} 38d274c9ecSGreg Roach 3932a9a96bSGreg Roach/* Bootstrap 4.5.1 toggle buttons don't work when labels have additional markup */ 4032a9a96bSGreg Roach[data-toggle=buttons] > label > .wt-icon-sex { 4132a9a96bSGreg Roach pointer-events: none; 4232a9a96bSGreg Roach} 4332a9a96bSGreg Roach 44a3c95e78SGreg Roach/* Remove border-radius for left-to-right input groups on right-to-left pages */ 45a3c95e78SGreg Roach[dir=rtl] .input-group[dir=ltr] [dir=ltr] { 46a3c95e78SGreg Roach border-radius: 0; 47a3c95e78SGreg Roach} 48a3c95e78SGreg Roach 49dbffae50SGreg Roach/* rtl:ignore */ 50e72c24d6SGreg Roachtd.align-digits, 51e72c24d6SGreg Roachth.align-digits { 52dbffae50SGreg Roach text-align: right; 53dbffae50SGreg Roach} 54dbffae50SGreg Roach 55b6ba99b4SGreg Roach/* Allows twitter typeahead to work with bootstrap input groups */ 56b6ba99b4SGreg Roach.input-group > .twitter-typeahead { 57b6ba99b4SGreg Roach flex: 1 1; 58b6ba99b4SGreg Roach} 59b6ba99b4SGreg Roach 60b6ba99b4SGreg Roach/* Allows select2 to work with bootstrap input groups */ 61b6ba99b4SGreg Roach.input-group > .select2-container { 62b6ba99b4SGreg Roach flex: 1 1; 63b6ba99b4SGreg Roach} 64b6ba99b4SGreg Roach 6534395be7SGreg Roach/* Workaround for dropdown menu position on RTL with popper.js */ 6634395be7SGreg Roach/* See also https://github.com/FezVrasta/popper.js/issues/695 */ 6734395be7SGreg Roach[dir=rtl] .wt-genealogy-menu .dropdown-menu { 6834395be7SGreg Roach right: 0; 6934395be7SGreg Roach left: auto !important; 7034395be7SGreg Roach} 7134395be7SGreg Roach 72b2eede42SGreg Roach/* 73c1b29ce3SGreg Roach * https://github.com/fisharebest/webtrees/issues/2291 744e73f0bdSGreg Roach * Chrome 72 has problems with all cards in the control panel. 754e73f0bdSGreg Roach * Chrome 73 has problems with the family-tree card in the control panel. 76c1b29ce3SGreg Roach * Chrome 76 seems OK. 77c1b29ce3SGreg Roach * https://github.com/fisharebest/webtrees/issues/2813 78c1b29ce3SGreg Roach * Safari 13 has the same issue. 794e73f0bdSGreg Roach */ 80c1b29ce3SGreg Roach.wt-control-panel .card { 814e73f0bdSGreg Roach display: block; 824e73f0bdSGreg Roach} 834e73f0bdSGreg Roach 844e73f0bdSGreg Roach/* 85b2eede42SGreg Roach * Flexbox fixes for IE11 86b2eede42SGreg Roach */ 87b2eede42SGreg Roach@media (-ms-high-contrast: active), (-ms-high-contrast: none) { 88b2eede42SGreg Roach /* Move the body down below the mangled header */ 89b2eede42SGreg Roach div.wt-main-container { 90b2eede42SGreg Roach padding-top: 4rem; 91b2eede42SGreg Roach } 92b2eede42SGreg Roach} 93b2eede42SGreg Roach 94e759aebbSGreg Roach/* Keep the page as tall as the window, so the footer can remain at the bottom. */ 95e759aebbSGreg Roach.wt-global { 96e759aebbSGreg Roach display: flex; 97e759aebbSGreg Roach min-height: 100vh; 98e759aebbSGreg Roach flex-direction: column; 99e759aebbSGreg Roach} 100e759aebbSGreg Roach 101e759aebbSGreg Roach.wt-main-container { 102e759aebbSGreg Roach flex: 1; 103e759aebbSGreg Roach} 104e759aebbSGreg Roach 105e759aebbSGreg Roach/* Scrollbars */ 106e759aebbSGreg Roach.wt-global { 107e759aebbSGreg Roach /* Prevent redraws when dynamic content requires a scrollbar. */ 108e759aebbSGreg Roach overflow-y: scroll; 109e759aebbSGreg Roach /* Any wide content will have its own horizontal scrollbar */ 110e759aebbSGreg Roach overflow-x: hidden; 111e759aebbSGreg Roach} 112c652cdbdSGreg Roach 113c652cdbdSGreg Roach/* Browsers only understand US English */ 114c652cdbdSGreg Roach[lang=en-AU] q, 115c652cdbdSGreg Roach[lang=en-GB] q { 116c652cdbdSGreg Roach quotes: "‘" "’" "“" "”"; 117c652cdbdSGreg Roach} 118c15fb5e7SGreg Roach 119c15fb5e7SGreg Roach/* Expand/collapse icons on accordions, etc. */ 120c15fb5e7SGreg Roach[data-toggle=collapse][aria-expanded=true] > .wt-icon-expand { 121c15fb5e7SGreg Roach display: none; 122c15fb5e7SGreg Roach}[data-toggle=collapse][aria-expanded=false] > .wt-icon-collapse { 123c15fb5e7SGreg Roach display: none; 124c15fb5e7SGreg Roach} 125