Merge remote-tracking branch 'upstream/master'

* upstream/master:
  code cosmetics: use :: for pseudo elements
  emphasize data-skipped-edited main status message
  don't wrap the force-check button
This commit is contained in:
dana 2018-08-27 09:05:45 -07:00
commit da89c6dd77
2 changed files with 16 additions and 2 deletions

View File

@ -71,6 +71,11 @@ a:hover {
max-width: calc(100% - 30px);
}
#check-all-updates-force {
white-space: normal;
text-align: left;
}
#header h1 {
margin-top: 0;
margin-bottom: .3em;
@ -817,6 +822,15 @@ input[id^="manage.newUI"] {
margin-top: 1ex;
}
#update-all-no-updates[data-skipped-edited="true"] {
font-weight: bold;
}
#update-all-no-updates[data-skipped-edited="true"]::after {
font-weight: normal;
display: block;
}
/* highlight updated/added styles */
.highlight {
animation: highlight 10s cubic-bezier(0,.82,.47,.98);

View File

@ -106,10 +106,10 @@ function initGlobalEvents() {
.disabled h2::after {
content: "${t('genericDisabledLabel')}";
}
#update-all-no-updates[data-skipped-edited="true"]:after {
#update-all-no-updates[data-skipped-edited="true"]::after {
content: " ${t('updateAllCheckSucceededSomeEdited')}";
}
body.all-styles-hidden-by-filters:after {
body.all-styles-hidden-by-filters::after {
content: "${t('filteredStylesAllHidden')}";
}
`));