1.plugin__filelisting {
2
3    .plugin__filelisting_capiton {
4        border: 1px solid @ini_border;
5        margin-bottom: -1px; //fixed border
6        span {
7            font-weight: bold;
8        }
9    }
10
11    .plugin__filelisting_footer {
12        padding: .3em .5em;
13        border: 1px solid @ini_border;
14
15        //margin for delete button
16        button {
17            margin-right: 2em;
18        }
19    }
20
21    .plugin__filelisting_content {
22
23        .plugin__filelisting_headertable {
24            padding-right: 15px;
25        }
26        .plugin__filelisting_bodytable {
27            display: block;
28            max-height: 200px;
29            overflow-y: scroll;
30
31            //checkbox cell
32            td:first-child {
33                padding: 4px;
34            }
35
36            //icon cells
37            td.plugin__filelisting_cell_icon {
38                padding: 4px;
39
40                //directory icons styling
41                svg {
42                    fill: @ini_text;
43                    vertical-align: middle;
44                    text-align:center;
45                }
46            }
47        }
48
49        table {
50            width: 100%;
51            //reset default dokuwiki margin
52            margin: 0;
53            table-layout: fixed;
54        }
55    }
56}
57