summaryrefslogtreecommitdiff
path: root/tt-rss.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-20 18:46:21 +0100
committerAndrew Dolgov <[email protected]>2009-01-20 18:46:21 +0100
commitbf3c98384d5de2f319ef19f934fc324eb33f399a (patch)
tree2a0d0d9801d68b3f12e06b7acc0ca6ff333cf385 /tt-rss.css
parent3381c755bef4358750dcbd90986747e37c632651 (diff)
rework subtoolbar actions dropdown
Diffstat (limited to 'tt-rss.css')
-rw-r--r--tt-rss.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/tt-rss.css b/tt-rss.css
index fe8f11a28..48db0f9a6 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -2130,3 +2130,39 @@ pre, code {
font-size : 12px;
font-family : monospace;
}
+
+span#headlineActionsDrop {
+ border : 1px solid #c0c0c0;
+ padding : 1px 5px 1px 10px;
+ color : #063064;
+ cursor : pointer;
+}
+
+ul#headlineActionsBody {
+ list-style-type : none;
+ position : absolute;
+ margin : 0px;
+ padding : 0px;
+ background-color : white;
+ width : 150px;
+ z-index : 4;
+ top : auto;
+ left : auto;
+ border-width : 1px 1px 1px 1px;
+ border-color : #c0c0c0;
+ border-style : solid;
+ margin-left : -1px;
+ max-height : 250px;
+ overflow : auto;
+}
+
+ul#headlineActionsBody li {
+ padding : 2px 5px 2px 10px;
+ color : black;
+}
+
+ul#headlineActionsBody li:hover {
+ color : #4684ff;
+ cursor : pointer;
+ background : #ecf4ff;
+}