summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-22 16:05:45 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-22 16:05:45 +0200
commitb9099435cb6535db835d25361e7b706b85744b20 (patch)
tree2a681b1f9ff0de9780f1f4a785be8378d7f577ab /css
parentac5c8f5f4faae74c034a5cfd1e7f85ca26815bc5 (diff)
add undo for feed and folder deletion, fix #56
Diffstat (limited to 'css')
-rw-r--r--css/feeds.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/css/feeds.css b/css/feeds.css
index 93a689a10..fcbfee21a 100644
--- a/css/feeds.css
+++ b/css/feeds.css
@@ -19,6 +19,39 @@
*
*/
+#undo-container {
+ position: fixed;
+ top: 0px;
+ width: 100%;
+ text-align: center;
+ z-index: 101;
+ line-height: 1.2;
+}
+
+#undo {
+ z-index:101;
+ background-color:#fc4;
+ border:0;
+ padding:0 .7em .3em;
+ display:none;
+ position: relative;
+ top:0;
+ -moz-border-radius-bottomleft:1em;
+ -webkit-border-bottom-left-radius:1em;
+ border-bottom-left-radius:1em;
+ -moz-border-radius-bottomright:1em;
+ -webkit-border-bottom-right-radius:1em;
+ border-bottom-right-radius:1em;
+}
+
+#undo a {
+ font-weight: bold;
+}
+
+#undo a:hover {
+ text-decoration: underline;
+}
+
.starred-icon {
background-image: url('%appswebroot%/news/img/starred.png');