Welcome to mirror list, hosted at ThFree Co, Russian Federation.

comments.css.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d4e4536132180b982d55d40fd243140b54433b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.comment_stream {
  .show_comments {
    margin-top: 5px;
    border-top: 1px solid $border-grey;
    a {
      color: $text-grey;
      font-size: 13px;
    }
    .media { margin-top: 10px; }
  }
  .comments > .comment {
    .avatar {
      height: 30px;
      width: 30px;
    }
    margin: 0;
    border-top: 1px dotted $border-grey;
    &.no-border { border: none; }
    padding: 10px 0;
    .comment-content p:last-of-type { margin-bottom: 0; }

    .info {
      margin-top: 5px;
      font-size: 11px;
      line-height: 11px;
    }

    >.highlighted {
      border-left: 3px solid $blue;
      padding-left: 3px;
    }
  }
  .submit_button {
    input {
      float: right;
    }
    padding-left: 12px;
    width: 95%;
  }
  .comment_box { width: 95%; }
  .comment_box:focus { min-height: 100px; }
}