mirror of
https://github.com/moodle/moodle.git
synced 2025-08-11 03:46:42 +02:00
Merge branch 'dashboard-split-overview-block' of https://github.com/ryanwyllie/moodle
This commit is contained in:
commit
20f9b981f9
137 changed files with 5871 additions and 2450 deletions
|
@ -10417,6 +10417,47 @@ div.editor_atto_toolbar button .icon {
|
|||
.w-auto {
|
||||
width: auto; }
|
||||
|
||||
.bg-pulse-grey {
|
||||
animation: bg-pulse-grey 2s infinite linear; }
|
||||
|
||||
@keyframes bg-pulse-grey {
|
||||
0% {
|
||||
background-color: #f8f9fa; }
|
||||
50% {
|
||||
background-color: #e9ecef; }
|
||||
100% {
|
||||
background-color: #f8f9fa; } }
|
||||
|
||||
.line-height-0 {
|
||||
line-height: 0 !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.line-height-1 {
|
||||
line-height: 0.25rem !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.line-height-2 {
|
||||
line-height: 0.5rem !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.line-height-3 {
|
||||
line-height: 1rem !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.line-height-4 {
|
||||
line-height: 1.5rem !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.line-height-5 {
|
||||
line-height: 3rem !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.dir-rtl .dir-rtl-hide {
|
||||
display: none; }
|
||||
|
||||
.dir-ltr .dir-ltr-hide {
|
||||
display: none; }
|
||||
|
||||
.icon {
|
||||
font-size: 16px;
|
||||
width: 16px;
|
||||
|
@ -10453,10 +10494,52 @@ div.editor_atto_toolbar button .icon {
|
|||
.icon-no-spacing a > .icon {
|
||||
margin: 0; }
|
||||
|
||||
.icon-no-margin .icon {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0; }
|
||||
|
||||
.icon-large > .icon {
|
||||
width: 32px;
|
||||
height: 32px; }
|
||||
|
||||
.icon-size-0 .icon {
|
||||
height: 0 !important;
|
||||
/* stylelint-disable-line declaration-no-important */
|
||||
width: 0 !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.icon-size-1 .icon {
|
||||
height: 4px !important;
|
||||
/* stylelint-disable-line declaration-no-important */
|
||||
width: 4px !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.icon-size-2 .icon {
|
||||
height: 8px !important;
|
||||
/* stylelint-disable-line declaration-no-important */
|
||||
width: 8px !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.icon-size-3 .icon {
|
||||
height: 16px !important;
|
||||
/* stylelint-disable-line declaration-no-important */
|
||||
width: 16px !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.icon-size-4 .icon {
|
||||
height: 24px !important;
|
||||
/* stylelint-disable-line declaration-no-important */
|
||||
width: 24px !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.icon-size-5 .icon {
|
||||
height: 48px !important;
|
||||
/* stylelint-disable-line declaration-no-important */
|
||||
width: 48px !important;
|
||||
/* stylelint-disable-line declaration-no-important */ }
|
||||
|
||||
.helplink .icon {
|
||||
margin-left: 0.5rem; }
|
||||
|
||||
|
@ -11297,25 +11380,6 @@ div.editor_atto_toolbar button .icon {
|
|||
width: 45px;
|
||||
font-size: 45px; }
|
||||
|
||||
.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 .content-centred {
|
||||
max-width: 900px;
|
||||
margin-left: auto;
|
||||
margin-right: auto; }
|
||||
|
||||
.block_myoverview .empty-placeholder-image-sm {
|
||||
height: 50px; }
|
||||
|
||||
|
@ -17008,3 +17072,27 @@ body {
|
|||
|
||||
.userpicture {
|
||||
border-radius: 50%; }
|
||||
|
||||
.btn-outline-secondary {
|
||||
color: #868e96;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
border-color: #868e96;
|
||||
border-color: #dee2e6; }
|
||||
.btn-outline-secondary:hover {
|
||||
color: #fff;
|
||||
background-color: #868e96;
|
||||
border-color: #868e96; }
|
||||
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
|
||||
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
|
||||
color: #868e96;
|
||||
background-color: transparent; }
|
||||
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
|
||||
.show > .btn-outline-secondary.dropdown-toggle {
|
||||
color: #fff;
|
||||
background-color: #868e96;
|
||||
border-color: #868e96; }
|
||||
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
|
||||
.show > .btn-outline-secondary.dropdown-toggle:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue