Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2017-11-15 20:21:35 +0300
committerdartcafe <github@dartcafe.de>2017-11-15 20:21:35 +0300
commit18aae49cded3ebc9598bdee4eb914587cc8038b2 (patch)
tree2b17850cc4aecf949123ee405e8ca6765d1635e1 /css
parent6f4a511360be1197cd96f295cbd81473485512f0 (diff)
Added border to comment box
Diffstat (limited to 'css')
-rw-r--r--css/vote.css7
-rw-r--r--css/vote.scss9
2 files changed, 13 insertions, 3 deletions
diff --git a/css/vote.css b/css/vote.css
index 5bd8f055..76d34ade 100644
--- a/css/vote.css
+++ b/css/vote.css
@@ -261,6 +261,11 @@ div.crumb {
#commentsTabView .newCommentForm div.message:empty:before {
content: attr(data-placeholder);
color: grey; }
+#commentsTabView #commentBox {
+ border: 1px solid #dbdbdb;
+ border-radius: 3px;
+ padding: 7px 6px;
+ margin: 3px 3px 3px 40px; }
#commentsTabView .comment {
margin-bottom: 30px; }
#commentsTabView .comment .comment-header {
@@ -275,7 +280,7 @@ div.crumb {
right: 0;
top: 5px;
opacity: .5; }
-#commentsTabView .message, #commentsTabView textarea {
+#commentsTabView .message {
margin-left: 40px;
flex-grow: 1;
flex-shrink: 1; }
diff --git a/css/vote.scss b/css/vote.scss
index 636f91fb..43ed6353 100644
--- a/css/vote.scss
+++ b/css/vote.scss
@@ -384,7 +384,12 @@ div.crumb {
content: attr(data-placeholder);
color: grey;
}
-
+ #commentBox {
+ border: 1px solid #dbdbdb;
+ border-radius: 3px;
+ padding: 7px 6px;
+ margin: 3px 3px 3px 40px;
+ }
.comment {
margin-bottom: 30px;
@@ -407,7 +412,7 @@ div.crumb {
}
}
- .message, textarea {
+ .message {
margin-left: 40px;
flex-grow: 1;
flex-shrink: 1;