summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-07-17 14:02:14 +0200
committerMorris Jobke <hey@morrisjobke.de>2018-07-17 14:02:14 +0200
commit07271087b06a75bd20d462b1a91233a1fe243ce9 (patch)
treea803fbcaf1947818152285d7fb3ae4bcd3c922bb
parent4b5d7b15ff1c5f3a7a8baeae56acc03fec61e139 (diff)
downloadnextcloud-server-07271087b06a75bd20d462b1a91233a1fe243ce9.tar.gz
nextcloud-server-07271087b06a75bd20d462b1a91233a1fe243ce9.zip
Fix style of the user facing whats new popup
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r--core/css/whatsnew.scss3
-rw-r--r--core/js/public/whatsnew.js2
2 files changed, 2 insertions, 3 deletions
diff --git a/core/css/whatsnew.scss b/core/css/whatsnew.scss
index 1c2ab08333a..e13cdf86256 100644
--- a/core/css/whatsnew.scss
+++ b/core/css/whatsnew.scss
@@ -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;
}
diff --git a/core/js/public/whatsnew.js b/core/js/public/whatsnew.js
index 20a871ada27..cd6873cfb3f 100644
--- a/core/js/public/whatsnew.js
+++ b/core/js/public/whatsnew.js
@@ -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');