Skip to content
Commits on Source (1)
......@@ -10,14 +10,14 @@
<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.
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>
<author mail="contact@indiehosters.net" homepage="https://indiehosters.net/">IndieHosters</author>
<namespace>CustomNav</namespace>
<category>customization</category>
<bugs>https://lab.libreho.st/libre.sh/nextcloud-apps/customnav/-/issues</bugs>
<dependencies>
<nextcloud min-version="25" max-version="25"/>
<nextcloud min-version="25" max-version="26"/>
</dependencies>
<settings>
<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",
"description": "Change what is displayed &amp; the order in the navbar.",
"version": "0.0.1",
"version": "0.0.2",
"author": "IndieHosters <contact@indiehosters.net>",
"contributors": [],
"bugs": {
......
......@@ -158,7 +158,6 @@ $header-icon-size: 20px;
position: relative;
display: flex;
opacity: 0.7;
filter: var(--background-image-invert-if-bright);
&.app-menu-entry__active {
opacity: 1;
......@@ -199,6 +198,7 @@ $header-icon-size: 20px;
height: $header-icon-size;
padding: calc((100% - $header-icon-size) / 2);
box-sizing: content-box;
filter: var(--background-image-invert-if-bright);
}
.app-menu-entry--label {
......@@ -207,7 +207,6 @@ $header-icon-size: 20px;
font-size: 12px;
color: var(--color-primary-text);
text-align: center;
bottom: -5px;
left: 50%;
top: 45%;
display: block;
......