summaryrefslogtreecommitdiffstats
path: root/css/app.css
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-23 01:37:39 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-23 01:37:39 +0200
commitdca8431750afc77f132afa1d96018ba78d7e845b (patch)
tree7c335aa1938c074551ad83fbe52768c9d85adb97 /css/app.css
parente5fb131283de10c797a33bac668876f6c198e81f (diff)
get rid of addnew css
Diffstat (limited to 'css/app.css')
-rw-r--r--css/app.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/css/app.css b/css/app.css
index bf1e695a1..b8ca4ec64 100644
--- a/css/app.css
+++ b/css/app.css
@@ -1,3 +1,12 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2014
+ */
.loading-icon {
background-image: url('../img/loading.gif');
background-position: center;
@@ -9,5 +18,37 @@
height: 100%;
}
+#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;
+}