Skip to content

Commit

Permalink
Merge branch 'develop' into 12
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalbeck committed Feb 6, 2018
2 parents 574db2b + c7b73dc commit 0c92bd5
Show file tree
Hide file tree
Showing 11 changed files with 280 additions and 19 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ The icons are from the default Nextcloud theme and the individual apps, with the
![screenshot of theme](screenshot.png)

## Version number

The first number is the Nextcloud version. The second number is the Nextcloud point release version. The third number is the theme version.

## Progress
Expand All @@ -24,7 +23,16 @@ To enable the theme, add or change the theme option in your **config.php** to:
'theme' => 'nextcloud-breeze-dark',

## Contributions

The theme is written with [Sass](http://sass-lang.com/).

Please have a look at the CONTRIBUTING.md for details on how to contribute.
Please have a look at the CONTRIBUTING.md for details on how to contribute.

## Donations
If you like the theme and would like to donate you can use the following cryptocurrency addresses:

BTC: 1Pp3UG9k6ZkwrVXrhr9kwwvjwDk5Vchu3f
BCH: 1C7dQLqMU6Kucxx9GcFDMnTTTsBpeNT9vo
LTC: LLii6QbQiHnkjq2TNcNYC3JafV4mWYXWnx
DOGE: DNsXstU98g61QtF4CKwL6NZE8UAf4eJSdC

Thank you.
6 changes: 6 additions & 0 deletions core/css/apps/_audio-player.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,10 @@
img {
filter: invert(95%);
}
}

// Settings

#audio-settings li.audio-settings-item {
opacity: 1;
}
107 changes: 107 additions & 0 deletions core/css/apps/_deck.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
#app-navigation .editing .app-navigation-entry-edit {
background: $background-normal;
border-right: 1px solid $decoration-normal;
}

#boardlist {

td {
border-bottom-color: $decoration-normal;
}

thead td {
opacity: 1;
}

tbody {

.board-create td {
border-bottom: none;
}
}
}

.board-header-controls {

#stack-add {
background-color: $background-dark;
border: 1px solid $decoration-normal;

&:hover {
border-color: $decoration-active;
}
}
}

#board-detail-labels ul li .label-edit {

input {
color: $foreground-normal !important;
}

&.ng-scope input {
color: #000000 !important;
}
}

#sidebar-header {

h3 {
background-color: $background-normal;
}
}

.labels .label-edit input {
border-bottom-color: $decoration-normal;
}

.stack {
border-right-color: $decoration-normal;
}

#board {

.card {
background-color: $background-normal;
border: 1px solid $decoration-normal;
box-shadow: none;

&:hover {
border-color: $decoration-active;
}

.card-controls {
background-color: $background-dark;

.due {
opacity: 0.7;
}
}
}

&.card-selected .card.current {
opacity: 1;
box-shadow: none;
border-color: $decoration-active;
}
}

#card-meta {

#card-dates {
opacity: 0.7;
}

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

.card-description.section-content .container {
background-color: $background-normal;
}

.save-indicator.unsaved {
background-color: $background-alternate;
color: $foreground-normal;
}
}
10 changes: 10 additions & 0 deletions core/css/apps/_mail.scss
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,14 @@ textarea.message-body {
opacity: 1;
border-color: transparent;
}
}

#app-navigation > ul > .navigation-account {

> li > a,
> .folders > li > a,
> .folders > li > .folders > .folders > li > a {
color: $foreground-normal;
opacity: 0.75;
}
}
4 changes: 4 additions & 0 deletions core/css/apps/_music.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,8 @@
}
}
}

img.control {
filter: invert(95%);
}
}
2 changes: 1 addition & 1 deletion core/css/core/_apps.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
background-color: $background-active;
box-shadow: inset 2px 0 $background-active-alternate;

a {
> a {
color: $foreground-active;
font-weight: 600;
}
Expand Down
22 changes: 21 additions & 1 deletion core/css/core/_icons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
/* Home --------------------------------------------------------------------- */

#oc-dialog-filepicker-content .dirtree div:first-child a,
.icon-inbox {
.icon-inbox,
.icon-home {
background-image: url('../img/places/home.svg?v=1');
}

Expand Down Expand Up @@ -150,6 +151,7 @@
/* Settings ----------------------------------------------------------------- */

.settings-button,
.icon-settings,
.icon-settings-dark {
background-image: url('../img/actions/settings.svg?v=1');
}
Expand Down Expand Up @@ -225,6 +227,12 @@ select {
opacity: 0.5;
}

/* Help --------------------------------------------------------------------- */

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

/* Clippy ------------------------------------------------------------------- */

.icon-clippy {
Expand Down Expand Up @@ -321,6 +329,12 @@ select {
background-image: url('../img/email.svg');
}

/* Calendar ----------------------------------------------------------------- */

.icon-badge {
background-image: url('../img/places/calendar.svg');
}

/* Play Big ----------------------------------------------------------------- */

.play-pause,
Expand Down Expand Up @@ -421,6 +435,12 @@ select {
background: url("../img/actions/timezone.svg") center center no-repeat;
}

/* Deck App ----------------------------------------------------------------- */

.icon-deck {
background: url("../img/deck.svg");
}

/* News App ----------------------------------------------------------------- */

// Unpinned
Expand Down
20 changes: 15 additions & 5 deletions core/css/core/_server.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,22 @@ div.crumb span.icon-shared, div.crumb span.icon-public {
color: $foreground-inactive;
}

.popovermenu li .menuitem {
color: $foreground-inactive;
opacity: 0.7;
.popovermenu {
background-color: $background-normal;
color: $foreground-normal;
border: 1px solid $decoration-normal;

&:hover {
color: $foreground-active;
&::after {
border-bottom-color: $decoration-normal;
}

li .menuitem {
color: $foreground-inactive;
opacity: 0.7;

&:hover {
color: $foreground-active;
}
}
}

Expand Down
Loading

0 comments on commit 0c92bd5

Please sign in to comment.