MDL-63044 theme: add background pulse grey class

This commit is contained in:
Ryan Wyllie 2018-08-27 17:01:31 +08:00
parent 9d1d5ae05c
commit edd7fa33d0
4 changed files with 57 additions and 0 deletions

View File

@ -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;
}
}

View File

@ -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;

View File

@ -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;
}
}

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;