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-14 23:50:20 +0300
committerdartcafe <github@dartcafe.de>2017-11-14 23:50:20 +0300
commitddefa2f287db1691e5df7f811d035dab815a2973 (patch)
treeb9fbf61c83e2812f71a08c85fbcbab12f702529c /css
parentd6668062eadb5b6f8b74b87d791adf7d761dfc6f (diff)
Updates on comments
Diffstat (limited to 'css')
-rw-r--r--css/createpoll.css2
-rw-r--r--css/list.css2
-rw-r--r--css/main.css2
-rw-r--r--css/public.css2
-rw-r--r--css/vote.css37
-rw-r--r--css/vote.scss11
6 files changed, 28 insertions, 28 deletions
diff --git a/css/createpoll.css b/css/createpoll.css
index b94d2cb4..a4b2a36b 100644
--- a/css/createpoll.css
+++ b/css/createpoll.css
@@ -73,5 +73,3 @@ table .icon-checkmark {
#expiration {
max-width: 200px; }
-
-/*# sourceMappingURL=createpoll.css.map */
diff --git a/css/list.css b/css/list.css
index a8e457b5..a37c266c 100644
--- a/css/list.css
+++ b/css/list.css
@@ -130,5 +130,3 @@
@media all and (max-width: 548px) {
.group-2 {
display: none; } }
-
-/*# sourceMappingURL=list.css.map */
diff --git a/css/main.css b/css/main.css
index 4fbe1028..8402d5ae 100644
--- a/css/main.css
+++ b/css/main.css
@@ -295,5 +295,3 @@ td.td_shown {
/* OC10 and NC11 fixes*/
.symbol {
display: inline-block; }
-
-/*# sourceMappingURL=main.css.map */
diff --git a/css/public.css b/css/public.css
index f374bcdb..61ee46d3 100644
--- a/css/public.css
+++ b/css/public.css
@@ -3,5 +3,3 @@
div.crumb {
background-image: none; }
-
-/*# sourceMappingURL=public.css.map */
diff --git a/css/vote.css b/css/vote.css
index b5024a2d..264fd1cf 100644
--- a/css/vote.css
+++ b/css/vote.css
@@ -203,20 +203,22 @@ div.crumb {
padding-right: 15px; }
.pollInformation .authorRow .leftLabel {
margin-right: 4px; }
- .pollInformation .cloud > span {
- color: #fff;
- margin: 2px;
- padding: 2px 4px;
- border-radius: 3px;
- float: left;
- text-shadow: 1px 1px #666;
- background-color: #aaa; }
- .pollInformation .cloud .open {
- background-color: #49bc49; }
- .pollInformation .cloud .expired {
- background-color: #f45573; }
- .pollInformation .cloud .information {
- background-color: #b19c3e; }
+ .pollInformation .cloud {
+ margin: 4px0; }
+ .pollInformation .cloud > span {
+ color: #fff;
+ margin: 2px;
+ padding: 2px 4px;
+ border-radius: 3px;
+ float: left;
+ text-shadow: 1px 1px #666;
+ background-color: #aaa; }
+ .pollInformation .cloud .open {
+ background-color: #49bc49; }
+ .pollInformation .cloud .expired {
+ background-color: #f45573; }
+ .pollInformation .cloud .information {
+ background-color: #b19c3e; }
.pollActions {
display: flex;
@@ -256,6 +258,9 @@ div.crumb {
.pollActions > ul > li .app-navigation-entry-deleted {
padding-left: 44px !important; }
+#commentsTabView .newCommentForm div.message:empty:before {
+ content: attr(data-placeholder);
+ color: grey; }
#commentsTabView .comment {
margin-bottom: 30px; }
#commentsTabView .comment .comment-header {
@@ -270,7 +275,7 @@ div.crumb {
right: 0;
top: 5px;
opacity: .5; }
-#commentsTabView .message {
+#commentsTabView .message, #commentsTabView textarea {
margin-left: 40px;
flex-grow: 1;
flex-shrink: 1; }
@@ -383,5 +388,3 @@ div.crumb {
@media all and (max-width: 320px) {
.table {
padding-bottom: 105px; } }
-
-/*# sourceMappingURL=vote.css.map */
diff --git a/css/vote.scss b/css/vote.scss
index a2f6d4be..bbed671e 100644
--- a/css/vote.scss
+++ b/css/vote.scss
@@ -35,7 +35,6 @@ $user-column-width: 265px;
flex-shrink: 0;
}
-
#votings {
position: relative !important;
.description {
@@ -303,6 +302,8 @@ div.crumb {
}
.cloud {
+ margin: 4px0;
+
> span {
color: #fff;
margin: 2px;
@@ -377,9 +378,13 @@ div.crumb {
}
}
+#commentsTabView {
+ .newCommentForm div.message:empty:before {
+ content: attr(data-placeholder);
+ color: grey;
+ }
-#commentsTabView {
.comment {
margin-bottom: 30px;
@@ -402,7 +407,7 @@ div.crumb {
}
}
- .message {
+ .message, textarea {
margin-left: 40px;
flex-grow: 1;
flex-shrink: 1;