mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 17:02:03 +02:00
MDL-63044 theme: add background pulse grey class
This commit is contained in:
parent
9d1d5ae05c
commit
edd7fa33d0
@ -2119,3 +2119,19 @@ div.editor_atto_toolbar button .icon {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.bg-pulse-grey {
|
||||
animation: bg-pulse-grey 2s infinite linear;
|
||||
}
|
||||
|
||||
@keyframes bg-pulse-grey {
|
||||
0% {
|
||||
background-color: $gray-100;
|
||||
}
|
||||
50% {
|
||||
background-color: darken($gray-100, 5%);
|
||||
}
|
||||
100% {
|
||||
background-color: $gray-100;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -10427,6 +10427,17 @@ 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; } }
|
||||
|
||||
.icon {
|
||||
font-size: 16px;
|
||||
width: 16px;
|
||||
|
@ -2426,3 +2426,19 @@ 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: @grayLighter;
|
||||
}
|
||||
50% {
|
||||
background-color: darken(@grayLighter, 5%);
|
||||
}
|
||||
100% {
|
||||
background-color: @grayLighter;
|
||||
}
|
||||
}
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user