1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-04 13:19:16 +00:00

add experimental floating title when scrolling long articles in combined mode

This commit is contained in:
Andrew Dolgov
2013-06-05 22:19:33 +04:00
parent a1495542fc
commit 08820be70b
5 changed files with 101 additions and 3 deletions

View File

@@ -215,3 +215,35 @@ div.cdmHeader span.author {
}
div#floatingTitle {
position : absolute;
z-index : 5;
top : 30px;
right : 20px;
border : 1px solid #ccc;
background : white;
border-radius : 3px;
box-shadow : 0px 0px 3px 0px rgba(0,0,0,0.1);
color : #555;
font-size : 10px;
padding : 3px;
}
div#floatingTitle > * {
display : table-cell;
white-space : nowrap;
vertical-align : middle;
}
div#floatingTitle img {
padding-right : 3px;
}
div#floatingTitle .dijit,
div#floatingTitle span.updated,
div#floatingTitle div.scoreWrap,
div#floatingTitle div.hlFeed,
div#floatingTitle span.author,
div#floatingTitle img.tinyFeedIcon {
display : none;
}

View File

@@ -1109,3 +1109,4 @@ body#ttrssPrefs hr {
.dijitTreeRowSelected .dijitTreeLabel {
text-shadow : 1px 1px 2px #fff;
}