123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- .comment-editor-toolbar {
- text-align: right;
- padding: 0 20px 10px 0;
- }
-
- .comment-editor-toolbar-error {
- color: red;
- }
-
- .comment-editor {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- width: 100%;
- max-width: 100%;
- list-style: none;
- position: relative;
- display: block;
- font-size: 14px;
- line-height: 1.5;
- color: rgba(0, 0, 0, 0.65);
- background-color: #fff;
- background-image: none;
- border: 1px solid #d9d9d9;
- border-radius: 4px;
- transition: all 0.3s, height 0s;
- }
-
- .comment-editor textarea.ant-input {
- border: none;
- border-bottom: 1px solid #eee;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
- }
-
- .comment-editor textarea.ant-input:hover {
- border: none;
- border-bottom: 1px solid #eee;
- }
-
- .comment-editor textarea.ant-input:focus {
- box-shadow: none;
- border-bottom: 1px solid #eee;
- }
-
- .comment-editor [contentEditable="true"]:empty:not(:focus):before {
- content: attr(data-text);
- color: #bfbfbf;
- }
-
- .comment-editor:focus,
- .comment-editor:hover {
- border-color: #40a9ff;
- outline: 0;
- box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
- }
-
- .comment-toolbar {
- display: inline-block;
- width: 100%;
- margin: 5px 0 0 0;
- }
-
- .comment-toolbar .comment-toolbar-icon {
- width: 25px;
- font-size: 23px;
- cursor: pointer;
- transition: color 0.3s;
- }
-
- .comment-toolbar .comment-toolbar-icon:hover {
- color: #40a9ff;
- }
-
- .comment-toolbar-left {
- float: left;
- margin: 8px 11px;
- }
-
- .comment-toolbar-right {
- float: right;
- margin: 5px 11px;
- }
-
- .comment-emoji-popover .ant-popover-inner-content {
- padding: 12px 16px 20px 16px;
- }
-
- .comment-emoji-popover .ant-carousel .slick-dots {
- bottom: -10px;
- }
-
- .comment-emoji-popover .ant-carousel .slick-dots li.slick-active button {
- background-color: #7b868a;
- }
-
- .comment-emoji-popover .ant-carousel .slick-dots li button {
- background-color: #a2aeb5;
- }
-
- .clearfix {
- clear: both;
- }
-
- .comment-unlogin-tip {
- padding: 56px 0 24px 0;
- text-align: center;
- font-size: 16px;
- color: #393939;
- }
-
- .comment-unlogin-button {
- display: flex;
- justify-content: center;
- }
-
- .comment-unlogin-button button {
- width: 112px;
- height: 36px;
- }
-
- @media (max-width: 575px) {
- .comment-unlogin-tip {
- padding: 36px 0 16px 0;
- font-size: 14px;
- }
-
- .comment-unlogin-button button {
- width: 82px;
- height: 28px;
- }
- }
|