1*92044e0dSGreg Roach/** 2*92044e0dSGreg Roach * webtrees: online genealogy 3*92044e0dSGreg Roach * Copyright (C) 2019 webtrees development team 4*92044e0dSGreg Roach * This program is free software: you can redistribute it and/or modify 5*92044e0dSGreg Roach * it under the terms of the GNU General Public License as published by 6*92044e0dSGreg Roach * the Free Software Foundation, either version 3 of the License, or 7*92044e0dSGreg Roach * (at your option) any later version. 8*92044e0dSGreg Roach * This program is distributed in the hope that it will be useful, 9*92044e0dSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 10*92044e0dSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11*92044e0dSGreg Roach * GNU General Public License for more details. 12*92044e0dSGreg Roach * You should have received a copy of the GNU General Public License 13*92044e0dSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 14*92044e0dSGreg Roach */ 15*92044e0dSGreg Roach 16*92044e0dSGreg Roach/* Sortable lists */ 17*92044e0dSGreg Roach 18*92044e0dSGreg Roach.wt-sortable-item .card-header { 19*92044e0dSGreg Roach cursor: move; 20*92044e0dSGreg Roach} 21*92044e0dSGreg Roach 22*92044e0dSGreg Roach/* Buttons to re-order items in a list */ 23*92044e0dSGreg Roach.wt-sortable-item:first-child .wt-btn-reorder-first, 24*92044e0dSGreg Roach.wt-sortable-item:first-child .wt-btn-reorder-previous { 25*92044e0dSGreg Roach cursor: not-allowed; 26*92044e0dSGreg Roach opacity: 0.5; 27*92044e0dSGreg Roach} 28*92044e0dSGreg Roach 29*92044e0dSGreg Roach.wt-sortable-item:last-child .wt-btn-reorder-next, 30*92044e0dSGreg Roach.wt-sortable-item:last-child .wt-btn-reorder-last { 31*92044e0dSGreg Roach cursor: not-allowed; 32*92044e0dSGreg Roach opacity: 0.5; 33*92044e0dSGreg Roach} 34