xref: /plugin/structpublish/style.less (revision 2cd86f5fad8f5947eca47fa65c1b02d66da62187)
1.plugin-structpublish-banner {
2
3    .icon svg {
4        float: left;
5        width: 3rem;
6        height: 3rem;
7        padding-right: 1rem;
8    }
9
10    &.draft {
11        .icon svg {
12            fill: #c33;
13        }
14    }
15
16    &.approved {
17        .icon svg {
18            fill: #cc3;
19        }
20    }
21
22    &.published {
23        .icon svg {
24            fill: #3c3;
25        }
26    }
27
28    form,
29    p {
30        margin-left: 4rem;
31
32        svg {
33            height: 1em;
34            fill: currentColor;
35        }
36    }
37
38}
39
40.plugin-structpublish-version {
41    border-radius: 2px;
42    background-color: #cfc;
43    color: #000;
44    padding: 0.1em 0.2em;
45}
46