32 lines
527 B
SCSS
32 lines
527 B
SCSS
|
/**
|
||
|
* @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;
|
||
|
}
|