moodle-mod_hvp/styles.css
Frode Petterson 7f3163ddc3 Fixed #35, added report for each content
Teacher may now view the results of all students for a specifc
interactive content.
Note on the code: I was hoping we could have created some more
classes in core for the data view so that it would be easier
to use, however, we're a bit short on time now.

MDL-35
2016-01-29 14:09:24 +01:00

68 lines
1.5 KiB
CSS

.h5p-data-view table {
width: 100%;
border: 1px solid #e5e5e5;
box-shadow: 0 1px 1px rgba(0,0,0,.04);
table-layout: fixed;
}
.h5p-data-view td,
.h5p-data-view th {
padding: 8px 10px;
color: #555;
vertical-align: top;
font-size: 13px;
line-height: 1.5em;
word-wrap: break-word;
}
.h5p-data-view th {
font-size: 14px;
font-weight: normal;
line-height: 1.4em;
color: #32373c;
}
.h5p-data-view thead th {
border-bottom: 1px solid #e1e1e1;
}
.h5p-data-view tfoot td {
border-top: 1px solid #e1e1e1;
font-size: 14px;
}
.h5p-data-view tr:nth-child(odd) {
background-color: #F9F9F9;
}
.h5p-pagination {
text-align: center;
line-height: 2em;
}
.h5p-pagination > span, .h5p-pagination > input {
margin: 0 1em;
}
.h5p-pagination button {
margin: 0;
}
.h5p-data-view input[type="text"] {
margin-bottom: 0.5em;
}
.h5p-data-view input[type="text"]::-ms-clear {
display: none;
}
.h5p-data-view th[role="button"] {
cursor: pointer;
}
.h5p-data-view th[role="button"].h5p-sort:after,
.h5p-data-view th[role="button"]:hover:after,
.h5p-data-view th[role="button"].h5p-sort.h5p-reverse:hover:after {
content: "\25BE";
position: relative;
left: 0.5em;
top: -1px;
}
.h5p-data-view th[role="button"].h5p-sort.h5p-reverse:after,
.h5p-data-view th[role="button"].h5p-sort:hover:after {
content: "\25B4";
top: -2px;
}
.h5p-data-view th[role="button"]:hover:after,
.h5p-data-view th[role="button"].h5p-sort.h5p-reverse:hover:after,
.h5p-data-view th[role="button"].h5p-sort:hover:after {
color: #999;
}