summaryrefslogtreecommitdiffstats
path: root/core/css
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-08-18 17:37:22 +0200
committerkondou <kondou@ts.unde.re>2013-08-18 17:37:22 +0200
commit7c296a6cf915da6630422ceb8e253ebf9f004964 (patch)
tree0b250c2556045574d645235dead6ee89cb44f815 /core/css
parentdb424cc86b005d2edfcfcf55ee7f5294dfffc8b6 (diff)
downloadnextcloud-server-7c296a6cf915da6630422ceb8e253ebf9f004964.tar.gz
nextcloud-server-7c296a6cf915da6630422ceb8e253ebf9f004964.zip
Move .errormsg from settings-css to .warning in core. Reusable!
Diffstat (limited to 'core/css')
-rw-r--r--core/css/styles.css12
1 files changed, 11 insertions, 1 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index becf0af9056..39121fccb23 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -389,7 +389,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
/* Warnings and errors are the same */
-.warning, .update, .error {
+#body-login .warning, #body-login .update, #body-login .error {
display: block;
padding: 10px;
color: #dd3b3b;
@@ -401,6 +401,16 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
border-radius: 5px;
cursor: default;
}
+
+#body-user .warning, #body-settings .warning {
+ margin-top: 8px;
+ padding: 5px;
+ background: #fdd;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
.warning legend,
.warning a,
.error a {