diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-07-05 20:29:00 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-07-05 20:29:00 +0200 |
commit | ca6094f3900fd463449d9973589b1d49aed28b2a (patch) | |
tree | 89b404a60b20bd5bf6b02271e0a2c57a7c99fac7 /core/css/whatsnew.scss | |
parent | 772bbd99bee83d17707c73a630a4d47c4b8bc807 (diff) | |
download | nextcloud-server-ca6094f3900fd463449d9973589b1d49aed28b2a.tar.gz nextcloud-server-ca6094f3900fd463449d9973589b1d49aed28b2a.zip |
wire the frontend
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'core/css/whatsnew.scss')
-rw-r--r-- | core/css/whatsnew.scss | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/core/css/whatsnew.scss b/core/css/whatsnew.scss new file mode 100644 index 00000000000..1c2ab08333a --- /dev/null +++ b/core/css/whatsnew.scss @@ -0,0 +1,31 @@ +/** + * @copyright Copyright (c) 2018, Arthur Schiwon <blizzz@arthur-schiwon.de> + * + * @license GNU AGPL version 3 or any later version + * + */ + +.whatsNewPopover { + bottom: 35px !important; + left: 15px !important; + width: 270px; + background-color: var(--color-background-dark); +} + +.whatsNewPopover p { + width: auto !important; +} + +.whatsNewPopover .caption { + font-weight: bolder; + cursor: auto !important; +} + +.whatsNewPopover .icon-close { + position: absolute; + right: 0; +} + +.whatsNewPopover::after { + content: none; +} |