Adrian Greeve e90a0a7415 MDL-62491 core_privacy: Add html files to the user data export.
This adds html to the data export that allows for easier navigation
and reading of data.
2018-10-08 09:00:08 +08:00

51 lines
722 B
CSS

.hide {
display: none;
}
li.menu-item {
cursor: pointer;
}
li[aria-expanded=false]:not(.item) {
list-style-image: url('pix/collapsed.svg');
}
li[aria-expanded=true]:not(.item) {
list-style-image: url('pix/expanded.svg');
}
[aria-expanded="false"] > [role="group"] {
display: none;
}
#navigation {
display: inline-block;
width: 20%;
vertical-align: top;
overflow: scroll;
border-radius: 0.3rem;
}
[data-main-content] {
display: inline-block;
width: 69%;
vertical-align: top;
}
.title {
font-size: large;
font-weight: bold;
}
.block {
padding: 19px;
}
.item {
list-style-image: url('pix/navigationitem.svg');
}
.moodle-logo {
width: 110px;
}