-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
137 lines (111 loc) · 2.97 KB
/
styles.css
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#coursepayment_mollie_gateways {
margin-bottom: 10px;
}
#coursepayment_mollie_gateways tr {
cursor: pointer;
}
#coursepayment_mollie_gateways tr.selected {
background: #e6e6e6;
}
#coursepayment_mollie_gateways tr td {
border-bottom: 1px solid lightgray;
}
#issuers_ideal {
background: #e6e6e6;
}
#coursepayment_agreement_checkbox input[type="checkbox"] {
vertical-align: middle;
}
#coursepayment_agreement_checkbox {
padding: 0 0 0 20px;
min-height: 40px;
}
#page-mod-customcert-edit .deletebutton {
text-align: right;
}
#page-mod-customcert-edit .addpage {
border-top: 1px solid #f4f4f4;
text-align: right;
}
#page-mod-customcert-edit #id_replace {
margin-left: 10px;
}
#page-mod-customcert-report .centre {
margin-left: auto;
margin-right: auto;
}
#page-enrol-coursepayment-view-invoice_rearrange .savepositionsbtn,
#page-enrol-coursepayment-view-invoice_rearrange .applypositionsbtn,
#page-enrol-coursepayment-view-invoice_rearrange .cancelbtn {
float: left;
}
#page-enrol-coursepayment-view-invoice_rearrange .element {
display: inline-block;
position: absolute;
word-wrap: break-word;
}
#page-enrol-coursepayment-view-invoice_rearrange .element:before {
background-image: url([[pix:enrol_coursepayment|target]]);
background-repeat: no-repeat;
content: "";
display: block;
float: left;
height: 9px;
width: 100%;
}
#page-enrol-coursepayment-view-invoice_rearrange .element:hover {
cursor: move;
}
#page-enrol-coursepayment-view-invoice_rearrange .element.refpoint-left:before {
background-position: left top;
margin: -4px -5px -5px -4px;
}
#page-enrol-coursepayment-view-invoice_rearrange .element.refpoint-center:before {
background-position: center top;
margin: -4px 0 -5px 0;
}
#page-enrol-coursepayment-view-invoice_rearrange .element.refpoint-right:before {
background-position: right top;
margin: -4px -5px -5px 4px;
}
#page-enrol-coursepayment-view-invoice_rearrange #pdf {
border-style: solid;
border-width: 1px;
clear: both;
}
#page-enrol-coursepayment-view-invoice_rearrange div#leftmargin {
border-left: 1px dotted black;
}
#page-enrol-coursepayment-view-invoice_rearrange div#rightmargin {
border-right: 1px dotted black;
}
.coursepaymentbox {
background-color: #f5f5f5;
max-width: 300px;
font-size: 1.5em;
font-weight: bold;
}
.cpbtop {
border: 1px solid gray;
border-bottom: none;
border-radius: 10px 10px 0px 0px;
}
.cpbmiddle {
border-left: 1px solid gray;
border-right: 1px solid gray;
}
.cpbbottom {
border: 1px solid gray;
border-top: none;
border-radius: 0px 0px 10px 10px;
}
.coursepayment-btn {
border-radius: 5px 5px 5px 5px !important;
}
/*
This is a hack - the fieldset being returned by the edit_element_form class contains
the CSS class 'hidden' which when shown in a dialogue hides the fieldset.
*/
.moodle-dialogue #editelementform fieldset.hidden {
display: block;
}