nextcloud/apps/comments/css/comments.css

164 lines
3.4 KiB
CSS
Raw Normal View History

2016-02-01 18:37:33 +03:00
/*
* Copyright (c) 2016
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
*/
2016-08-03 14:18:09 +03:00
#commentsTabView .emptycontent {
margin-top: 0;
}
2016-02-01 18:37:33 +03:00
#commentsTabView .newCommentForm {
2016-08-03 14:18:09 +03:00
position: relative;
2016-02-01 18:37:33 +03:00
margin-bottom: 20px;
}
#commentsTabView .newCommentForm .message {
width: calc(100% - 81px); /* 36 (left margin) + 30 (right padding) + 15 (right padding of surrounding box) */
margin-left: 36px;
2016-08-03 14:18:09 +03:00
padding-right: 30px;
}
#commentsTabView .newCommentForm .submit {
position: absolute;
top: 1px;
right: 8px;
2016-08-03 14:18:09 +03:00
width: 30px;
margin: 0;
padding: 9px;
background-color: transparent;
border: none;
opacity: .3;
}
#commentsTabView .newCommentForm .submit:hover,
#commentsTabView .newCommentForm .submit:focus {
opacity: 1;
2016-02-01 18:37:33 +03:00
}
2016-02-02 14:06:12 +03:00
#commentsTabView .newCommentForm .submitLoading {
background-position: left;
2016-02-01 18:37:33 +03:00
}
#commentsTabView .newCommentForm .cancel {
margin-right: 6px;
}
2016-02-01 18:37:33 +03:00
#commentsTabView .comment {
2016-08-03 14:18:09 +03:00
position: relative;
z-index: 1;
2016-02-01 18:37:33 +03:00
margin-bottom: 30px;
}
#commentsTabView .comment .avatar {
2016-08-03 14:18:09 +03:00
width: 32px;
height: 32px;
line-height: 32px;
}
#commentsTabView .comment.collapsed .message {
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
2016-08-03 14:18:09 +03:00
white-space: -webkit-pre-wrap; /*Chrome & Safari */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* css-3 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
}
#commentsTabView .comment.collapsed .message {
max-height: 70px;
overflow: hidden;
}
#commentsTabView .comment .message-overlay {
display: none;
}
#commentsTabView .comment.collapsed .message-overlay {
display: block;
position: absolute;
z-index: 2;
height: 50px;
pointer-events: none;
left: 0;
right: 0;
bottom: 0;
background: -moz-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
background: -webkit-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
background: -o-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
background: -ms-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00FFFFFF', endColorstr='#FFFFFFFF');
background-repeat: no-repeat;
}
2016-02-01 18:37:33 +03:00
#commentsTabView .authorRow>div {
display: inline-block;
vertical-align: middle;
}
#commentsTabView .comment .authorRow {
position: relative;
}
2016-08-03 14:18:09 +03:00
#commentsTabView .comment .author,
#commentsTabView .comment .date {
opacity: .5;
}
2016-02-01 18:37:33 +03:00
#commentsTabView .comment .author {
2016-08-03 14:18:09 +03:00
margin-left: 5px;
2016-02-01 18:37:33 +03:00
}
#commentsTabView .comment .date {
2016-02-03 20:44:14 +03:00
position: absolute;
right: 0;
2016-08-03 14:18:09 +03:00
top: 5px;
}
2016-08-17 12:35:18 +03:00
#commentsTabView .comments li .message {
2016-08-03 14:18:09 +03:00
padding-left: 40px;
2016-02-03 20:44:14 +03:00
}
#commentsTabView .comment .action {
opacity: 0;
vertical-align: middle;
display: inline-block;
}
#commentsTabView .comment:hover .action {
opacity: 0.3;
}
#commentsTabView .comment .action:hover {
opacity: 1;
}
#commentsTabView .comment .action.delete {
2016-02-01 18:37:33 +03:00
position: absolute;
right: 0;
}
2016-02-03 20:44:14 +03:00
#commentsTabView .comment.disabled {
opacity: 0.3;
}
#commentsTabView .comment.disabled .action {
visibility: hidden;
}
#commentsTabView .message.error {
color: #e9322d;
border-color: #e9322d;
-webkit-box-shadow: 0 0 6px #f8b9b7;
-moz-box-shadow: 0 0 6px #f8b9b7;
box-shadow: 0 0 6px #f8b9b7;
}
.app-files .action-comment {
padding: 16px 14px;
}