Merge pull request #10268 from nextcloud/whatsnew-icon
Change what's new popover icon to checkmark, fix #10047
This commit is contained in:
commit
3148e9b171
6 changed files with 12 additions and 8 deletions
Binary file not shown.
Binary file not shown.
13
apps/updatenotification/package-lock.json
generated
13
apps/updatenotification/package-lock.json
generated
|
@ -1664,7 +1664,8 @@
|
|||
"ansi-regex": {
|
||||
"version": "2.1.1",
|
||||
"bundled": true,
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"aproba": {
|
||||
"version": "1.2.0",
|
||||
|
@ -2079,7 +2080,8 @@
|
|||
"safe-buffer": {
|
||||
"version": "5.1.1",
|
||||
"bundled": true,
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"safer-buffer": {
|
||||
"version": "2.1.2",
|
||||
|
@ -2135,6 +2137,7 @@
|
|||
"version": "3.0.1",
|
||||
"bundled": true,
|
||||
"dev": true,
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"ansi-regex": "^2.0.0"
|
||||
}
|
||||
|
@ -2178,12 +2181,14 @@
|
|||
"wrappy": {
|
||||
"version": "1.0.2",
|
||||
"bundled": true,
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"yallist": {
|
||||
"version": "3.0.2",
|
||||
"bundled": true,
|
||||
"dev": true
|
||||
"dev": true,
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -227,7 +227,7 @@
|
|||
}
|
||||
var whatsNew = [];
|
||||
for (var i in this.whatsNewData) {
|
||||
whatsNew[i] = { icon: 'icon-star-dark', longtext: this.whatsNewData[i] };
|
||||
whatsNew[i] = { icon: 'icon-checkmark', longtext: this.whatsNewData[i] };
|
||||
}
|
||||
if(this.changelogURL) {
|
||||
whatsNew.push({
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
bottom: 35px !important;
|
||||
left: 15px !important;
|
||||
width: 270px;
|
||||
background-color: var(--color-background-dark);
|
||||
}
|
||||
|
||||
.whatsNewPopover p {
|
||||
|
@ -17,7 +16,7 @@
|
|||
}
|
||||
|
||||
.whatsNewPopover .caption {
|
||||
font-weight: bolder;
|
||||
font-weight: bold;
|
||||
cursor: auto !important;
|
||||
}
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
menuItem.className = "menuitem";
|
||||
|
||||
icon = document.createElement('span');
|
||||
icon.className = 'icon-star-dark';
|
||||
icon.className = 'icon-checkmark';
|
||||
menuItem.appendChild(icon);
|
||||
|
||||
text = document.createElement('p');
|
||||
|
|
Loading…
Reference in a new issue