Merge branch 'dashboard-split-overview-block' of https://github.com/ryanwyllie/moodle

This commit is contained in:
Andrew Nicols 2018-09-27 14:08:55 +08:00
commit 20f9b981f9
137 changed files with 5871 additions and 2450 deletions

View file

@ -4808,6 +4808,20 @@ h3.sectionname .inplaceeditable.inplaceeditingon .editinstructions {
[data-drag-type="move"] {
cursor: move;
}
.bg-pulse-grey {
animation: bg-pulse-grey 2s infinite linear;
}
@keyframes bg-pulse-grey {
0% {
background-color: #eee;
}
50% {
background-color: #e1e1e1;
}
100% {
background-color: #eee;
}
}
/* admin.less */
.formtable tbody th {
font-weight: normal;
@ -16527,32 +16541,6 @@ body {
.block_myoverview .row-fluid [class*="span"] {
margin-left: 0;
}
.block_myoverview .event-list-item {
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 10px;
}
.block_myoverview .event-list-item:last-of-type {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.block_myoverview .event-list-item .event-icon {
vertical-align: middle;
}
.block_myoverview .event-list-item .event-icon::before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
.block_myoverview .event-list-item .event-name-container {
vertical-align: middle;
max-width: calc(100% - 50px);
}
.block_myoverview .event-list-item .event-name-container .event-name {
display: block;
}
.block_myoverview .empty-placeholder-image-sm {
height: 50px;
}