1/*
2 * Copyright (c) 2020. ComboStrap, Inc. and its affiliates. All Rights Reserved.
3 *
4 * This source code is licensed under the GPL license found in the
5 * COPYING  file in the root directory of this source tree.
6 *
7 * @license  GPL 3 (https://www.gnu.org/licenses/gpl-3.0.en.html)
8 * @author   ComboStrap <support@combostrap.com>
9 *
10 */
11
12/**
13 * Icon is not always 24px
14 * https://github.com/splitbrain/dokuwiki-plugin-searchindex/issues/44
15 */
16.dokuwiki div.ui-admin ul li a span.icon {
17    width: 1.5em;
18    min-height: 1.5em;
19    margin: 0 .5em;
20    vertical-align: top;
21}
22
23.dokuwiki div.ui-admin .icon svg {
24    width: 24px;
25}
26
27
28