summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-06-05 22:19:33 +0400
committerAndrew Dolgov <[email protected]>2013-06-05 22:20:22 +0400
commit08820be70b4d5cbe66e9ca9d5986c429c5186ca5 (patch)
tree94f9dc2e789de967a0c26c55b84c5b60cba1befa /css
parenta1495542fcbe85e5dbe84d4eea26a8364924e2f0 (diff)
add experimental floating title when scrolling long articles in combined mode
Diffstat (limited to 'css')
-rw-r--r--css/cdm.css32
-rw-r--r--css/tt-rss.css1
2 files changed, 33 insertions, 0 deletions
diff --git a/css/cdm.css b/css/cdm.css
index 900c83791..8b9693c33 100644
--- a/css/cdm.css
+++ b/css/cdm.css
@@ -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;
+}
diff --git a/css/tt-rss.css b/css/tt-rss.css
index 10fec5a55..b1928bb48 100644
--- a/css/tt-rss.css
+++ b/css/tt-rss.css
@@ -1109,3 +1109,4 @@ body#ttrssPrefs hr {
.dijitTreeRowSelected .dijitTreeLabel {
text-shadow : 1px 1px 2px #fff;
}
+