DocumentServer/OfficeWeb/apps/common/main/resources/less/comments-panel.less
2015-04-28 17:59:00 +03:00

69 lines
1.5 KiB
Plaintext

.comments-panel {
display: table;
position: relative;
width: 100%;
height: 100%;
border-collapse: collapse;
font-size: 12px;
font-family: arial;
.row {
display: table-row;
}
.user-name {
color: @gray-darker;
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: default;
padding: 9px 10px 0 20px;
height: 25px;
}
.user-date {
color: @gray-darker;
font-size: 10px;
padding: 0 0 0 20px;
height: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: default;
}
.user-quote {
color: @gray-darker;
font-style: italic;
border-left: 1px solid @gray-darker;
margin-left: 20px;
margin-top: 3px;
padding: 5px 9px 5px 9px;
white-space: pre-wrap;
cursor: pointer;
}
.user-message {
.user-select(text);
color: @black;
padding: 9px 10px 0 20px;
white-space: pre-wrap;
word-wrap: break-word;
cursor: default;
}
.user-reply {
color: @black;
border-bottom-width: 1px solid @black;
box-sizing: border-box;
height: auto;
margin-left: 18px;
margin-top: 10px;
white-space: pre-wrap;
width: auto;
cursor: pointer;
}
}