1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-07-04 18:24:22 +00:00

Add styling for GpxPod and invert gpxpod icon in files right click menu. Fixes

This commit is contained in:
Magnus Walbeck 2021-02-28 16:12:54 +01:00
parent 0bb63e0b42
commit f15a657732
Signed by: mwalbeck
GPG key ID: CCB78CFF3F950769
3 changed files with 32 additions and 0 deletions

View file

@ -2,6 +2,10 @@
## [Unreleased]
### Add
- [#165](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/165) Add styling for GpxPod and invert gpxpod icon in files right click menu
### Changed
- Only load custom styling when there actually is custom styling to get

27
css/apps/thirdparty/_gpxpod.scss vendored Normal file
View file

@ -0,0 +1,27 @@
/***
* @copyright Copyright (c) 2021, Magnus Walbeck <mw@mwalbeck.org>
*
* @license GNU AGPL version 3 or any later version, see COPYING file for more.
*/
/* GpxPod ------------------------------------------------------------------- */
.app-gpxpod {
#stattable td.statnamecol {
background-color: unset;
}
.popuptable tr:nth-child(2n + 1) {
background-color: var(--color-background-darker);
}
.popuptable tr:hover {
background-color: var(--color-background-hover);
}
}
/* Icons -------------------------------------------------------------------- */
.icon-gpxpod-black {
filter: invert(95%);
}

View file

@ -71,6 +71,7 @@
@import "apps/thirdparty/flow-upload";
@import "apps/thirdparty/fulltextsearch";
@import "apps/thirdparty/gpxmotion";
@import "apps/thirdparty/gpxpod";
@import "apps/thirdparty/files-markdown";
@import "apps/thirdparty/files-markdown-syntax";
@import "apps/thirdparty/music";