forked from Wunderbyte-GmbH/moodle-mod_booking
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·121 lines (98 loc) · 2 KB
/
Copy pathstyles.css
File metadata and controls
executable file
·121 lines (98 loc) · 2 KB
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
.mod-booking .results {
border-collapse: separate;
}
.mod-booking .results .data {
border-width: 1px;
border-style: solid;
border-color: #999;
}
.mod-booking-inlinetable {
display: inline;
background-color: transparent;
/*float: left;*/
}
tr.mod-booking-booked td.cell {
background-color: lightgreen;
}
tr.mod-booking-booked.inpast td.cell {
background-color: #d6f9d9;
}
table.mod-booking-table td.cell {
border-bottom: 1px solid #cecece;
}
table.mod-booking-table tr.inpast td.cell {
color: #909090;
}
div.mod-booking-waitlist {
background-color: orange;
width: 100%;
height: auto;
display: block;
}
tr.mod-booking-watinglist td.cell {
background-color: orange;
}
tr.mod-booking-invisible {
visibility: hidden;
height: 0;
display: none;
}
/** Styles for teachers.php */
.subscriberdiv,
.subscribertable {
width: 100%;
vertical-align: top;
}
.subscribertable tr td {
vertical-align: top;
}
.subscribertable tr td.actions {
width: 16%;
padding-top: 3em;
}
.subscribertable tr td.actions .actionbutton {
margin: 0.3em 0;
padding: 0.5em 0;
width: 100%;
}
.subscribertable tr td.existing,
.subscribertable tr td.potential {
width: 42%;
}
/** styles for displaying all bookings */
.mod-booking-regular {
display: table-cell;
padding: 5px;
}
.mod-booking-waiting {
display: table-cell;
padding: 5px;
}
.br-theme-css-stars .br-widget {
height: 28px;
white-space: nowrap;
}
.br-theme-css-stars .br-widget a {
text-decoration: none;
height: 18px;
width: 18px;
float: left;
font-size: 23px;
margin-right: 5px;
}
.br-theme-css-stars .br-widget a:after {
content: "\2605";
color: #d2d2d2;
}
.br-theme-css-stars .br-widget a.br-active:after {
color: #edb867;
}
.br-theme-css-stars .br-widget a.br-selected:after {
color: #edb867;
}
.br-theme-css-stars .br-widget .br-current-rating {
display: none;
}
.br-theme-css-stars .br-readonly a {
cursor: default;
}