Skip to content

Commit

Permalink
Update to 13.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalbeck committed Feb 21, 2018
2 parents 192c3f1 + 9733f1a commit 620eb4c
Show file tree
Hide file tree
Showing 10 changed files with 249 additions and 33 deletions.
1 change: 1 addition & 0 deletions ICONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ The icons for this theme are from the following projects:
* Nextcloud Social Sharing, AGPLv3 - [https://github.com/nextcloud/socialsharing](https://github.com/nextcloud/socialsharing)
* Nextcloud Mail, AGPLv3 - [https://github.com/nextcloud/mail](https://github.com/nextcloud/mail)
* Audio Player, AGPLv3 - [https://github.com/Rello/audioplayer](https://github.com/Rello/audioplayer)
* FullTextSearch, AGPLv3 - [https://github.com/nextcloud/fulltextsearch](https://github.com/nextcloud/fulltextsearch)

The colours of the icons have been changed to better fit the style of the theme.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The icons are from the default Nextcloud theme and the individual apps, with the
The first number is the Nextcloud version. The second number is the Nextcloud major point release version. The third number is the theme version.

## Progress
Theming for Core Nextcloud functionality is done. You can check on the progress of App styling and request styling for specific apps [here](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/2)
Theming for Core Nextcloud functionality is done. You can check on the progress of App styling and request styling for specific apps [here](https://github.com/mwalbeck/nextcloud-breeze-dark/wiki/App-Styling)

## Installation
The master branch will always be the current stable release so you can clone that for easy installation and updates. Using git is currently the recommended way of installing the theme. You can also download it as a zip file either straight from the master branch, or on the release page.
Expand Down
32 changes: 32 additions & 0 deletions core/css/apps/_fulltextsearch.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.app-settings #app-content {

#fns, #elastic_search, #files {

.div-table .div-table-row .div-table-col {

select, input {
background-color: $background-dark !important;
}
}
}
}

.provider_navigation {
color: $foreground-normal;
background: $background-normal;
}

.result_entry_default {
background: $background-normal;
}

#fts-popup {

.div-table-col-left {
color: $foreground-normal;
}
}

#fulltextsearch .menutoggle:hover {
opacity: 1 !important;
}
11 changes: 6 additions & 5 deletions core/css/apps/_news.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@
}

.app-news #app-navigation {
li.collapsible.open {
a {
background-color: $background-dark;
}
}

li.folder {
border-right: 1px solid $decoration-normal;
background: $background-normal;
}

> ul > li > a,
> ul > li > ul > li > a {
color: $foreground-normal;
opacity: 1;
}
}

.app-news #app-content {
Expand Down
54 changes: 54 additions & 0 deletions core/css/apps/_weather.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
.app-weather {

table tr {
background-color: unset;
}
}

#city-list-left {
background-color: $background-normal;
border-left: none;
border-right-color: $decoration-normal;

.city-list {

li {

a {
color: $foreground-normal;
}

&:hover, &:hover > a {
background-color: $background-active-hover;
box-shadow: inset 2px 0 $background-active-alternate;
}

&.selected, &.selected a {
background-color: $background-active;
color: $foreground-active;
font-weight: 600;
box-shadow: inset 2px 0 $background-active-alternate;
}
}

#create-city {
background-color: $background-normal;
border-left: none;
border-right: none;
border-top-color: $decoration-active;
border-bottom-color: $decoration-active;

h1 {
color: $foreground-active;
}

hr {
background: $decoration-normal;
}
}
}
}

#city-right {
border-top: 1px solid $decoration-normal;
}
16 changes: 12 additions & 4 deletions core/css/core/_icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ button:not([class^="icon-"]):not([class*=" icon-"]) {

/* Download ----------------------------------------------------------------- */

.icon-download {
.icon-download,
.icon-category-updates {
background-image: url('../img/actions/download.svg?v=1');
}

Expand All @@ -201,7 +202,7 @@ button:not([class^="icon-"]):not([class*=" icon-"]) {
/* Triangle-S --------------------------------------------------------------- */

.icon-triangle-s,
#app-navigation .collapsible > .collapse {
#app-navigation .collapsible::after {
background-image: url('../img/actions/triangle-s.svg?v=1');
}

Expand Down Expand Up @@ -635,6 +636,12 @@ select {
background-image: url('../img/twofactor-u2f.svg?v=1');
}

/* FullTextSearch ----------------------------------------------------------- */

div.icon-fulltextsearch-white {
background-image: url('../img/fulltextsearch.svg');
}

/* CSS tricks to change icon color ------------------------------------------ */

// Audio player
Expand Down Expand Up @@ -708,8 +715,9 @@ a.impersonate img.svg {
filter: invert(95%);
}

// In admin section
#app-navigation img[src$="/settings/img/password.svg"] {
// In admin settings
#app-navigation img[src$="/settings/img/password.svg"],
#app-navigation img[src$="/apps/fulltextsearch/img/fulltextsearch_black.svg"] {
filter: invert(95%);
}

Expand Down
45 changes: 31 additions & 14 deletions core/css/core/_server.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,18 @@
/* Search ------------------------------------------------------------------- */

.searchbox input[type="search"]:focus, .searchbox input[type="search"]:active,
.searchbox input[type="search"]:valid {
color: $foreground-active;
border-color: $decoration-active !important;
background-color: $background-dark !important;
}
.searchbox input[type="search"]:valid {
color: $foreground-active;
border-color: $decoration-active !important;
background-color: $background-dark !important;
}

.searchbox input[type="search"]:hover {
background-color: $background-normal;
}

#app-content #searchresults {
background-color: $background-normal;
background-color: $background-normal;
}

/* Controls ----------------------------------------------------------------- */
Expand Down Expand Up @@ -106,18 +110,25 @@ div.crumb span.icon-shared, div.crumb span.icon-public {
}
}

#contactsmenu > .menu {

.contact {
border-bottom-color: $decoration-normal;
}
#contactsmenu {

.content .footer a {
.menutoggle:hover {
opacity: 1;
}

> .menu {

.contact {
border-bottom-color: $decoration-normal;
}

.content .footer a {
opacity: 1;
}
}
}

#emptycontent, .emptycontent {
#emptycontent, .emptycontent {
color: $foreground-inactive;
}

Expand Down Expand Up @@ -807,14 +818,20 @@ ul.multiselectoptions {
background-color: $background-normal;
color: $foreground-normal;
box-shadow: none;
border: 1px solid $decoration-normal;
border: 1px solid $decoration-normal !important;
padding: 10px;
}

#adminaccount .tooltip-inner {
background-color: transparent;
border: none;
}

// Fix for tooltip arrow not being aligned in contacts dropdown
.contact .tooltip .tooltip-arrow {
right: -4px;
}

/* Public view for file sharing --------------------------------------------- */

#body-public {
Expand Down
Loading

0 comments on commit 620eb4c

Please sign in to comment.