Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7920d26a authored by Florent VINCENT's avatar Florent VINCENT 👾
Browse files

Merge branch 'css-from-nc-theming-app' into 'nextcloud-19'

get all css and imgs from the theming app that we do want to disable

See merge request e/infra/nextcloud-theme!12
parents de19d14e e89ab37b
Loading
Loading
Loading
Loading
+13 −1
Original line number Original line Diff line number Diff line
Nextcloud theme for /e/ - nextcloud V18 compatible version
Nextcloud theme for /e/ - nextcloud V19 compatible version


# Installation

deploy theme in nextcloud/themes directory

use occ to update mimetypelist.js file and clear image cache : 

```
occ maintenance:theme:update
```



# License
# License


+50 −0
Original line number Original line Diff line number Diff line
@@ -87,3 +87,53 @@ button.primary:focus,
#header #nextcloud {
#header #nextcloud {
    padding-left: 70px;
    padding-left: 70px;
}
}

/* CSS TWEAKS TAKEN FROM THEMING APP (disabled now) */ 

.nc-theming-main-background{
    background-color:#999999
}
.nc-theming-main-text{
    color:#fff
}
.nc-theming-contrast{
    color:#fff
}
#appmenu:not(.inverted) svg{
    filter:none
}
#appmenu.inverted svg{
    filter:invert(1)
}
.icon-file,.icon-filetype-text{
    background-image:url(../img/text.svg)
}
.icon-folder,.icon-filetype-folder{
    background-image:url(../img/folder.svg)
}
.icon-filetype-folder-drag-accept{
    background-image:url(../img/folder-drag-accept.svg) !important
}
#header .logo{
    background-image:url('../img/logo-white.png')
}
#body-user #header,#body-settings #header,#body-public #header{
    background-color:#999999;
    background-image:none
}

#header .logo{
    background-size:contain
}
#body-login #header .logo{
    margin-bottom:22px
}

input.primary,#alternative-logins li a{
    background-color:#999999;
    border:1px solid #fff;
    color:#fff
}
footer{
    height:92px
}
+94.5 KiB
Loading image diff...
+1 −0
Original line number Original line Diff line number Diff line
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><path d="M1.46 2c-.25 0-.46.21-.46.46v11.08c0 .258.202.46.46.46h13.08c.258 0 .46-.202.46-.46V4.462c0-.25-.21-.463-.46-.463H8L6 2H1.46zM2 5h12v8H2V5z" fill="#999998"/></svg>
+1 −0
Original line number Original line Diff line number Diff line
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><path d="M1.46 2c-.25 0-.46.21-.46.46v11.08c0 .258.202.46.46.46h13.08c.258 0 .46-.202.46-.46V4.462c0-.25-.21-.463-.46-.463H8L6 2H1.46zm6.517 3.793h3.57v3.385L10.355 8.05 8.57 9.743l-1.19-1.13 1.786-1.69-1.19-1.13zm-2.38.564H7.38l.597.565h-2.38v4.514h4.758V9.178l.596.564v1.694c0 .312-.265.564-.595.564h-4.76c-.33 0-.595-.252-.595-.564V6.922c0-.313.266-.565.596-.565z" fill-rule="evenodd" fill="#999998"/></svg>
Loading