summaryrefslogtreecommitdiffstats
path: root/webapp/sass/layout/_sidebar-right.scss
diff options
context:
space:
mode:
authorNick Frazier <nrflaw@gmail.com>2016-12-26 09:25:50 -0500
committerChristopher Speller <crspeller@gmail.com>2016-12-26 09:25:50 -0500
commit0a1b0d051a1a7d83ad01502f8073d35ee5da95cc (patch)
tree24901635fc7bc3bc78f45efd4a92d943ba2efc54 /webapp/sass/layout/_sidebar-right.scss
parent87d84dfc30d30a24af35411bac7dafb188575749 (diff)
downloadchat-0a1b0d051a1a7d83ad01502f8073d35ee5da95cc.tar.gz
chat-0a1b0d051a1a7d83ad01502f8073d35ee5da95cc.tar.bz2
chat-0a1b0d051a1a7d83ad01502f8073d35ee5da95cc.zip
Add error to RHS reply box for messages > 4000 chars, consistent with create post and edit post errors (#4871)
* functionality * CSS updates * cleanup * moved message length checks to Textbox component * cleanup
Diffstat (limited to 'webapp/sass/layout/_sidebar-right.scss')
-rw-r--r--webapp/sass/layout/_sidebar-right.scss18
1 files changed, 18 insertions, 0 deletions
diff --git a/webapp/sass/layout/_sidebar-right.scss b/webapp/sass/layout/_sidebar-right.scss
index 915bb2d09..8d5a1d044 100644
--- a/webapp/sass/layout/_sidebar-right.scss
+++ b/webapp/sass/layout/_sidebar-right.scss
@@ -59,6 +59,24 @@
form {
padding: .5em 15px 0;
}
+
+ .post-create-footer {
+ @include clearfix;
+ font-size: 13px;
+ overflow: visible;
+ position: relative;
+ clear: both;
+
+ .post-error {
+ font-weight: normal;
+ margin-bottom: 0;
+ display: inline-block;
+ font-size: .85em;
+ @include opacity(.55);
+ position: absolute;
+ top: -25px;
+ }
+ }
}
.help__format-text {