xref: /webtrees/resources/css/_vendor-patches.css (revision d3018248d60a6030483a0cd197a2921909c9079d)
1*d3018248SGreg Roach/**
2*d3018248SGreg Roach * webtrees: online genealogy
3*d3018248SGreg Roach * Copyright (C) 2020 webtrees development team
4*d3018248SGreg Roach * This program is free software: you can redistribute it and/or modify
5*d3018248SGreg Roach * it under the terms of the GNU General Public License as published by
6*d3018248SGreg Roach * the Free Software Foundation, either version 3 of the License, or
7*d3018248SGreg Roach * (at your option) any later version.
8*d3018248SGreg Roach * This program is distributed in the hope that it will be useful,
9*d3018248SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
10*d3018248SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11*d3018248SGreg Roach * GNU General Public License for more details.
12*d3018248SGreg Roach * You should have received a copy of the GNU General Public License
13*d3018248SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
14*d3018248SGreg Roach */
15*d3018248SGreg Roach
16*d3018248SGreg Roach/*
17*d3018248SGreg Roach * Temporary fixes for things that are broken upstream.
18*d3018248SGreg Roach */
19*d3018248SGreg Roach
20*d3018248SGreg Roach/* Fix for https://github.com/DataTables/DataTablesSrc/issues/165 */
21*d3018248SGreg Roachtable.dataTable.table-sm > thead > tr > th :not(.sorting_disabled) {
22*d3018248SGreg Roach    /* Most of the children were initially zero... */
23*d3018248SGreg Roach    padding-right: 0;
24*d3018248SGreg Roach}
25*d3018248SGreg Roachtable.dataTable.table-sm > thead > tr > th .btn-group-sm > .btn {
26*d3018248SGreg Roach    /* ...except this one */
27*d3018248SGreg Roach    padding-right: 0.5rem;
28*d3018248SGreg Roach}
29*d3018248SGreg Roachtable.dataTable.table-sm > thead > tr > th:not(.sorting_disabled) {
30*d3018248SGreg Roach    /* What the rule should have been */
31*d3018248SGreg Roach    padding-right: 20px;
32*d3018248SGreg Roach}