summaryrefslogtreecommitdiff
path: root/tt-rss.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-01-22 07:09:41 +0100
committerAndrew Dolgov <[email protected]>2007-01-22 07:09:41 +0100
commitc6008b620f86217b7c5288c85aad624d41af9f8c (patch)
treeddb5be7173227d4795891dacfeaf22de6e097028 /tt-rss.css
parent8063bf38a6db4ecbfe50068d9ef4adb12eaa2131 (diff)
add disabled prototype dhtml popup headline subtoolbar
Diffstat (limited to 'tt-rss.css')
-rw-r--r--tt-rss.css47
1 files changed, 47 insertions, 0 deletions
diff --git a/tt-rss.css b/tt-rss.css
index 3f40fb619..c005ed83e 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1343,3 +1343,50 @@ a.feedUpdErrLink {
.catCtrNoUnread {
display : none;
}
+
+ul.headlineDropdownMenu {
+ list-style-type : none;
+ margin : 0px;
+ padding : 0px;
+}
+
+ul.headlineDropdownMenu li.top {
+ float : left;
+ width : 130px;
+ background-image : url("images/down_arrow.png");
+ background-position : center right;
+ background-repeat : no-repeat;
+ margin-right : 10px;
+ cursor : pointer;
+}
+
+ul.headlineDropdownMenu li.top:hover {
+ color : black;
+ cursor : pointer;
+}
+
+ul.headlineDropdownMenu li.top:hover ul {
+ display : block;
+}
+
+ul.headlineDropdownMenu ul {
+ list-style-type : none;
+ position : absolute;
+ float : none;
+ margin : 0px;
+ padding : 0px;
+ display : none;
+ background-color : white;
+ border-width : 0px 1px 1px 1px;
+ border-color : #c0c0c0;
+ border-style : solid;
+ width : 130px;
+ z-index : 3;
+ top : auto;
+ left : auto;
+}
+
+ul.headlineDropdownMenu ul li {
+ float: none;
+ margin : 2px 2px 0px 2px;
+}