xref: /template/sprintdoc/css/plugins/struct.less (revision 5b65a7c080532442c4475a688e906669b62fac14)
1/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
2/* all media */
3/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
4
5#dokuwiki__content {
6    .structaggregation {
7        @link-height: 1.5rem;
8
9        position: relative;
10        padding-bottom: @link-height;
11        margin-bottom: @grid;
12
13        // search button in table (f.i. "All products")
14        table th input {
15            &:not(:focus) {
16                cursor: pointer;
17            }
18
19            &:focus {
20                width: 100%;
21                box-sizing: border-box;
22            }
23        }
24
25        .table {
26            margin-bottom: 0;
27        }
28
29        > a {
30            position: absolute;
31            bottom: 0;
32            height: @link-height;
33            margin-bottom: 0;
34
35            &.export {
36                line-height: 1;
37                padding-top: .3em;
38            }
39        }
40    }
41
42    #plugin__struct_output{
43        margin-right: 0;
44    }
45
46    .struct_entry_form {
47        margin-bottom: 2rem;
48        > fieldset {
49            margin-top: 1.5rem;
50        }
51    }
52
53    textarea + .struct_entry_form {
54        margin-top: -.5rem;
55    }
56}
57