aboutsummaryrefslogtreecommitdiff
path: root/p/themes/BlueLagoon/BlueLagoon.css
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2018-12-22 13:22:20 +0100
committerGravatar GitHub <noreply@github.com> 2018-12-22 13:22:20 +0100
commitf0a359619fa2936d66a2b96dd086d4686e7405fa (patch)
treeddad42a7f6813bd458f39d5203d083daad4cc1c5 /p/themes/BlueLagoon/BlueLagoon.css
parente04804d0f67dd43fd3f072b9a127768ee7b7b56c (diff)
parent4a1a852f457d52fa47191e3f7e3e9073e1324cd9 (diff)
Merge pull request #2186 from FreshRSS/dev1.13.0
FreshRSS 1.13.0
Diffstat (limited to 'p/themes/BlueLagoon/BlueLagoon.css')
-rw-r--r--p/themes/BlueLagoon/BlueLagoon.css31
1 files changed, 24 insertions, 7 deletions
diff --git a/p/themes/BlueLagoon/BlueLagoon.css b/p/themes/BlueLagoon/BlueLagoon.css
index 164088f4b..94eb8e3a8 100644
--- a/p/themes/BlueLagoon/BlueLagoon.css
+++ b/p/themes/BlueLagoon/BlueLagoon.css
@@ -137,8 +137,6 @@ button.as-link[disabled] {
.stick .btn:first-child,.stick input:first-child {
border-radius: 6px 0 0 6px;
}
-.stick .btn-important:first-child {
-}
.stick .btn:last-child, .stick input:last-child {
border-radius: 0 6px 6px 0;
}
@@ -566,11 +564,29 @@ a.btn {
color: #0090FF
}
+/*=== Scrollbar */
+
+@supports (scrollbar-width: thin) {
+ #sidebar {
+ scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
+ }
+ #sidebar:hover {
+ scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
+ }
+}
+@supports not (scrollbar-width: thin) {
+ #sidebar::-webkit-scrollbar-thumb {
+ background: rgba(255, 255, 255, 0.1);
+ }
+ #sidebar:hover::-webkit-scrollbar-thumb {
+ background: rgba(255, 255, 255, 0.3);
+ }
+}
+
/*=== STRUCTURE */
/*===============*/
/*=== Header */
.header {
- height: 55px;
background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
border-bottom: solid 1px #BDB7AE;
@@ -582,14 +598,14 @@ a.btn {
text-align: center;
}
.header > .item.title .logo {
- height: 60px;
- width: 60px;
+ height: 40px;
+ width: 40px;
}
.header > .item.title{
width: 250px;
}
.header > .item.title h1 {
- margin: 0.5em 0;
+ margin: 10px 0;
}
.header > .item.title h1 a {
text-decoration: none;
@@ -607,7 +623,8 @@ a.btn {
/*=== Body */
#global {
background:#F9F7F4;
- height: calc(100% - 60px);
+ /* Header : 60px + 1px border bottom */
+ height: calc(100% - 61px);
}
.aside {
box-shadow: 0 2px 2px #171717 inset;