Skip to content

Commit

Permalink
Merge pull request #288 from GilbN/develop
Browse files Browse the repository at this point in the history
1.6.4
  • Loading branch information
GilbN authored Nov 11, 2021
2 parents 52bee17 + 5cbe7db commit b2e35a4
Show file tree
Hide file tree
Showing 9 changed files with 110 additions and 70 deletions.
25 changes: 25 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# release.yml

changelog:
exclude:
labels:
- ignore-for-release
authors:
- github-actions
categories:
- title: Breaking Changes 🛠
labels:
- Semver-Major
- breaking-change
- title: Exciting New Features 🎉
labels:
- Semver-Minor
- enhancement
- added
- title: Fixes
labels:
- fix
- fixed
- title: Other Changes
labels:
- "*"
13 changes: 6 additions & 7 deletions css/base/lidarr/lidarr-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,12 @@ body {
}

/* LINKS */
[class*="Link-to-"] {
color: var(--text);
}

[class*="Link-to-"]:hover {
color: var(--text-hover);
text-decoration: none;
[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]) {
color: var(--link-color);
}

[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]):hover {
color: var(--link-color-hover);
}

a {
Expand Down
72 changes: 42 additions & 30 deletions css/base/organizr/organizr-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -1434,7 +1434,7 @@ a:hover,

.progress-bar-inverse,
.progress {
background: rgba(0, 0, 0, 0.25) !important;
background: rgba(255, 255, 255, 0.25) !important;
}

/* Homepage health checks */
Expand Down Expand Up @@ -1760,50 +1760,62 @@ body {

/*Sidebar*/

@media (max-width: 767px) {

.show-sidebar .sidebar,
.sidebar .sidebar-head {
background: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}

#wrapper > div.navbar-default.sidebar.nav-bar-rtl.os-host.os-theme-dark.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
background: rgb(0 0 0 / 0%) !important;
}
.navbar-default,
.sidebar .sidebar-head {
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}

.sidebar {
background: rgba(0, 0, 0, 0.26) !important;
.sidebar {
background: var(--main-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
transition: max-width .2s cubic-bezier(.4, 0, .2, 1), background-color .2s ease-out;
box-shadow: 1px 0px 20px rgb(0 0 0 / 20%);

}

.navbar-default,
.sidebar .sidebar-head {
background: transparent;
.sidebar:hover,
.sidebar:hover .sidebar-head {
background: var(--modal-bg-color) ;
background-repeat: repeat, no-repeat ;
background-attachment: fixed, fixed ;
background-position: center center, center center ;
background-size: auto, cover ;
-webkit-background-size: auto, cover ;
-moz-background-size: auto, cover ;
-o-background-size: auto, cover ;
transition: max-width .2s cubic-bezier(.4, 0, .2, 1), background-color .3s ease-out;
}

.sidebar:hover {
background: var(--modal-bg-color) !important;
background-repeat: repeat, no-repeat !important;
background-attachment: fixed, fixed !important;
background-position: center center, center center !important;
background-size: auto, cover !important;
-webkit-background-size: auto, cover !important;
-moz-background-size: auto, cover !important;
-o-background-size: auto, cover !important;
transition: max-width .2s cubic-bezier(.4, 0, .2, 1), background-color .2s ease-out;
@media (max-width: 767px) {

.show-sidebar .sidebar,
.sidebar .sidebar-head {
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
}
}

.sidebar .label-custom {
Expand Down
12 changes: 8 additions & 4 deletions css/base/overseerr/overseerr-base.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* TEXT */
[class*="text-gray-"]:not(button:disabled) {
[class*="text-gray-"]:not(button:disabled):not(button) {
color: var(--text);
}

Expand Down Expand Up @@ -68,22 +68,26 @@ button[class*="border-gray-"],
button.input-action {
background-color: var(--button-color);
border-color: var(--button-color);
color: var(--button-text);
}

button[class*="text-white"] {
button[type="submit"],
button[class="input-action"] {
color: var(--button-text)
}

button[class*="bg-indigo-"]:hover,
button[class*="bg-gray-"]:hover,
button[class*="border-indigo-"]:hover,
button[class*="border-gray-"]:hover,
button.input-action:hover {
button.input-action:hover,
button[class="input-action"]:hover {
background-color: var(--button-color-hover);
border-color: var(--button-color-hover);
color: var(--button-text-hover);
}

button[class*="text-white"]:hover,
button[type="submit"]:hover,
button.input-action:hover {
color: var(--button-text-hover)
}
Expand Down
6 changes: 5 additions & 1 deletion css/base/plex/plex-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ a[class*="MetadataPosterCardTitle-title-"],
}

a:hover,
[class*="Link-link-"]:hover:not([type="button"]):not([role="menuitem"]),
[class*="Link-link-"]:hover:not([type="button"]):not([role="menuitem"]):not([type="submit"]),
.artwork-file-container:hover a,
[class*="MetadataPosterCardTitle-title-"] a:hover,
a[class*="MetadataPosterCardTitle-title-"]:hover {
Expand Down Expand Up @@ -393,6 +393,10 @@ button:hover [class*="DisclosureArrow-disclosureArrow-"] {
stroke-dashoffset: 0;
}

circle {
stroke: rgb(var(--accent-color)) !important;
}

.loading {
border-color: rgb(var(--accent-color)) transparent transparent rgb(var(--accent-color));
}
Expand Down
13 changes: 6 additions & 7 deletions css/base/prowlarr/prowlarr-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,12 @@ body {
}

/* LINKS */
[class*="Link-to-"] {
color: var(--text);
}

[class*="Link-to-"]:hover {
color: var(--text-hover);
text-decoration: none;
[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]) {
color: var(--link-color);
}

[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]):hover {
color: var(--link-color-hover);
}

a {
Expand Down
13 changes: 6 additions & 7 deletions css/base/radarr/radarr-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,12 @@ body {
}

/* LINKS */
[class*="Link-to-"] {
color: var(--text);
}

[class*="Link-to-"]:hover {
color: var(--text-hover);
text-decoration: none;
[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]) {
color: var(--link-color);
}

[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]):hover {
color: var(--link-color-hover);
}

a {
Expand Down
13 changes: 6 additions & 7 deletions css/base/readarr/readarr-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,12 @@ body {
}

/* LINKS */
[class*="Link-to-"] {
color: var(--text);
}

[class*="Link-to-"]:hover {
color: var(--text-hover);
text-decoration: none;
[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]) {
color: var(--link-color);
}

[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]):hover {
color: var(--link-color-hover);
}

a {
Expand Down
13 changes: 6 additions & 7 deletions css/base/sonarr/sonarr-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,12 @@ body {
}

/* LINKS */
[class*="Link-to-"] {
color: var(--text);
}

[class*="Link-to-"]:hover {
color: var(--text-hover);
text-decoration: none;
[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]) {
color: var(--link-color);
}

[class*="Link-to-"]:not([class*="PageSidebarItem-link-"]):hover {
color: var(--link-color-hover);
}

a {
Expand Down

0 comments on commit b2e35a4

Please sign in to comment.