1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

Use more specific definitions for applying stuck effects.

https://git.tt-rss.org/fox/tt-rss/pulls/143
This commit is contained in:
Andrew Dolgov
2020-05-17 08:35:01 +03:00
parent 9ae9302b6b
commit eae79615a2
11 changed files with 64 additions and 73 deletions
+14 -13
View File
@@ -62,15 +62,6 @@
}
}
.header[stuck] {
box-shadow : 0 1px 1px -1px rgba(0,0,0,0.1);
border: 0 solid @border-default;
border-bottom-width: 1px;
background : @default-bg ! important;
opacity: 0.9;
backdrop-filter: blur(6px);
}
.footer {
height : 30px;
padding-left : 5px;
@@ -129,10 +120,6 @@
}
div.cdm.expanded .header:not([stuck]) {
background: transparent ! important;
}
div.cdm.expanded div.header a.title {
font-size : 16px;
color : #999;
@@ -324,3 +311,17 @@ div.cdm.expandable:not(.active) {
display : none;
}
}
div.cdm {
&.expandable.active,
&.expanded {
.header[stuck] {
box-shadow : 0 1px 1px -1px rgba(0,0,0,0.1);
border: 0 solid @border-default;
border-bottom-width: 1px;
background : @default-bg ! important;
opacity: 0.9;
backdrop-filter: blur(6px);
}
}
}