This repository was archived by the owner on Aug 14, 2022. It is now read-only.
forked from danmarsden/moodle-mod_attendance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
170 lines (143 loc) · 3.26 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
.path-mod-attendance .attbtn {
border:1px solid #AAAAAA;
margin-left: 2px;
margin-right: 2px;
padding: 5px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-opera-border-radius: 5px;
-khtml-border-radius: 5px;
}
.path-mod-attendance .attcurbtn {
margin-left: 2px;
margin-right: 2px;
padding: 5px;
}
.path-mod-attendance .attfiltercontrols {
margin-bottom: 10px;
margin-right:auto;
margin-left:auto;
}
.path-mod-attendance .attfiltercontrols #currentdate{
display: inline;
}
.path-mod-attendance .attwidth {
width:90%;
margin: auto;
}
.path-mod-attendance .userwithoutenrol,
.path-mod-attendance .userwithoutenrol a{
color: gray;
}
.path-mod-attendance .userwithoutdata,
.path-mod-attendance .userwithoutdata a{
color: red;
}
.path-mod-attendance .takelist td {
vertical-align: middle;
}
.path-mod-attendance .takelist .userpicture {
margin:0 3px;
vertical-align:middle;
}
.path-mod-attendance .takegrid input {
margin: 0px 3px 0px 6px;
}
.path-mod-attendance .takegrid .fullname {
font-size: 0.8em;
}
.path-mod-attendance table.controls {
width: 100%;
text-align: center;
}
.path-mod-attendance table.controls tr {
vertical-align: top;
}
.path-mod-attendance table.controls td.right,
.path-mod-attendance table.controls td.left {
padding-bottom: 4px;
padding-left: 4px;
padding-right: 4px;
padding-top: 4px;
}
.path-mod-attendance table.controls .right {
text-align: right;
}
/* for IE7*/
.path-mod-attendance .filtercontrols td {
padding:6px;
}
.path-mod-attendance .takecontrols {
width: 800px;
margin: 0px auto 20px auto;
}
.path-mod-attendance .takecontrols table{
margin: 0px auto;
}
.path-mod-attendance .takecontrols .c0 {
width: 500px;
text-align: left;
}
.path-mod-attendance .takecontrols .c1 {
text-align: right;
}
.path-mod-attendance .inline,
.path-mod-attendance .inline form,
.path-mod-attendance .inline div {
display: inline;
}
.path-mod-attendance table.userinfobox {
border: 1px solid #EEEEEE;
padding: 0px;
}
.path-mod-attendance table.userinfobox td.left {
background-color: #EEEEEE;
padding: 30px 10px;
}
.path-mod-attendance table.attlist td.c0 {
text-align: right;
}
#page-mod-attendance-preferences .generalbox {
text-align: center;
}
.path-mod-attendance .attsessions_manage_table .action-icon img.smallicon {
margin-left: 5px;
}
#page-mod-attendance-sessions input[type="checkbox"] {
margin-right: 2px;
}
.path-mod-attendance .setallstatuses {
text-align: right;
}
.path-mod-attendance .remarkholder {
position: relative;
}
.path-mod-attendance .remarkholder .remarkcontent {
display: none;
position: absolute;
border: 1px solid #ccc;
border-radius: 3px;
box-shadow: 3px 3px 5px #ccc;
background-color: white;
left: 20px;
top: 0;
padding: 5px;
width: 150px;
z-index: 5000;
}
.path-mod-attendance .remarkholder:hover .remarkcontent {
display: inline-block;
}
.path-mod-attendance .attendancestatus-P {
color: green;
}
.path-mod-attendance .attendancestatus-E {
color: #00AEE3;
}
.path-mod-attendance .attendancestatus-L {
color: #F7931E;
}
.path-mod-attendance .attendancestatus-A {
color: red;
}