summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/bureaucracy/style.css
blob: 966de611c4068b3d23af65dce91f6cc69d8ecda2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* Success message */
.dokuwiki div.bureaucracy__plugin {
    width: 50%;
    font-size: 120%;
    padding: 2em;
}

/* Form */
.dokuwiki form.bureaucracy__plugin {
    width: 100%;
    text-align: center;
    margin: 2em 0;
    display: block;
}

.dokuwiki form.bureaucracy__plugin p {
    font-size: 90%;
    margin-top: 0.5em;
}

.dokuwiki form.bureaucracy__plugin fieldset {
    width: 80%;
    text-align: left;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.dokuwiki form.bureaucracy__plugin label {
    display: block;
    text-align: right;
    line-height: 2em;
}

.dokuwiki form.bureaucracy__plugin label>span {
    display: inline-block;
    width: 47%;
    line-height: normal;
}
.dokuwiki form.bureaucracy__plugin label.textareafield {
    text-align: left;
}
.dokuwiki form.bureaucracy__plugin label.textareafield>span {
    width: 100%;
}

.dokuwiki form.bureaucracy__plugin label input.edit,
.dokuwiki form.bureaucracy__plugin label select {
    width: 50%;
}
.dokuwiki form.bureaucracy__plugin label input.datepicker,
.dokuwiki form.bureaucracy__plugin label input.timefield {
    width: 25%;
    margin-right: 25%;
}

.dokuwiki form.bureaucracy__plugin label textarea.edit {
    width: 100%;
}
.dokuwiki form.bureaucracy__plugin label input[type=checkbox] {
    width: 5%;
    margin-right: 45%;
}

.dokuwiki form.bureaucracy__plugin input.button {
    margin: 3px 0 3px 50%;
    display: block;
}
.dokuwiki form.bureaucracy__plugin label.radiolabel span{
    width: 100%;
    text-align: left;
}
.dokuwiki form.bureaucracy__plugin label input[type=radio]~span {
    width: 50%;
    display: inline-block;
    text-align: left;
    line-height: normal;
}

.dokuwiki form.bureaucracy__plugin label.bureaucracy_error span {
    color: #F00;
}

.dokuwiki form.bureaucracy__plugin #plugin__captcha_wrapper label {
    text-align: left;
}
/*responsive - small screen*/
@media (max-width: 480px) {
    .dokuwiki form.bureaucracy__plugin label {
        text-align: left;
    }
    .dokuwiki form.bureaucracy__plugin label>span {
        width: 100%;
    }
    .dokuwiki form.bureaucracy__plugin input.button {
        margin-left: 0;
    }
    .dokuwiki form.bureaucracy__plugin label .edit,
    .dokuwiki form.bureaucracy__plugin label select {
        width: 100% !important;
    }
}