Blame view

common/modules/comment/resources/comment.css 860 Bytes
2d107e9e   Yarik   test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  .artbox_comment_reply_author, .artbox_comment_update_reply {
      position: relative;
      width: 25%;
  }
  .artbox_comment_update_reply {
      width: 25%;
      float: none;
  }
  .artbox_comment_reply_author:after, .artbox_comment_update_reply:after {
      content: '';
      background-image: url('delete-ico.png');
      display: block;
      position: absolute;
      right: -13px;
      width: 13px;
      height: 13px;
      top: 0;
      cursor: pointer;
8a551494   Yarik   test
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  }
  .removeable {
      color: #a94442;
      background-color: #f2dede;
      border-color: #ebccd1;
      border-radius: 4px;
      padding: 15px;
      padding-right: 35px;
      position: relative;
  }
  .removeable::after {
      content: ' ';
      display: block;
      position: absolute;
      right: 5px;
      top: 5px;
      width: 15px;
      height: 15px;
      background: url('delete-ico.png');
      background-size: cover;
      cursor: pointer;
  }