Skip to content
Commits on Source (1)
...@@ -10,14 +10,14 @@ ...@@ -10,14 +10,14 @@
<summary>Change what is displayed &amp; the order in the navbar.</summary> <summary>Change what is displayed &amp; the order in the navbar.</summary>
<description><![CDATA[This app allows admins &amp; users to change what is displayed and the order in the navbar. <description><![CDATA[This app allows admins &amp; users to change what is displayed and the order in the navbar.
The goal is to maintain the features of AppOrder for NC25 while avoiding introducing more with CustomMenu.]]></description> The goal is to maintain the features of AppOrder for NC25 while avoiding introducing more with CustomMenu.]]></description>
<version>0.0.1</version> <version>0.0.2</version>
<licence>agpl</licence> <licence>agpl</licence>
<author mail="contact@indiehosters.net" homepage="https://indiehosters.net/">IndieHosters</author> <author mail="contact@indiehosters.net" homepage="https://indiehosters.net/">IndieHosters</author>
<namespace>CustomNav</namespace> <namespace>CustomNav</namespace>
<category>customization</category> <category>customization</category>
<bugs>https://lab.libreho.st/libre.sh/nextcloud-apps/customnav/-/issues</bugs> <bugs>https://lab.libreho.st/libre.sh/nextcloud-apps/customnav/-/issues</bugs>
<dependencies> <dependencies>
<nextcloud min-version="25" max-version="25"/> <nextcloud min-version="25" max-version="26"/>
</dependencies> </dependencies>
<settings> <settings>
<admin>OCA\CustomNav\Settings\Admin</admin> <admin>OCA\CustomNav\Settings\Admin</admin>
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
{ {
"name": "customnav", "name": "customnav",
"description": "Change what is displayed &amp; the order in the navbar.", "description": "Change what is displayed &amp; the order in the navbar.",
"version": "0.0.1", "version": "0.0.2",
"author": "IndieHosters <contact@indiehosters.net>", "author": "IndieHosters <contact@indiehosters.net>",
"contributors": [], "contributors": [],
"bugs": { "bugs": {
......
...@@ -158,7 +158,6 @@ $header-icon-size: 20px; ...@@ -158,7 +158,6 @@ $header-icon-size: 20px;
position: relative; position: relative;
display: flex; display: flex;
opacity: 0.7; opacity: 0.7;
filter: var(--background-image-invert-if-bright);
&.app-menu-entry__active { &.app-menu-entry__active {
opacity: 1; opacity: 1;
...@@ -199,6 +198,7 @@ $header-icon-size: 20px; ...@@ -199,6 +198,7 @@ $header-icon-size: 20px;
height: $header-icon-size; height: $header-icon-size;
padding: calc((100% - $header-icon-size) / 2); padding: calc((100% - $header-icon-size) / 2);
box-sizing: content-box; box-sizing: content-box;
filter: var(--background-image-invert-if-bright);
} }
.app-menu-entry--label { .app-menu-entry--label {
...@@ -207,7 +207,6 @@ $header-icon-size: 20px; ...@@ -207,7 +207,6 @@ $header-icon-size: 20px;
font-size: 12px; font-size: 12px;
color: var(--color-primary-text); color: var(--color-primary-text);
text-align: center; text-align: center;
bottom: -5px;
left: 50%; left: 50%;
top: 45%; top: 45%;
display: block; display: block;
......