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

_interactions.scss « new_styles « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96c147eaf9ede6f069da27f19efe3bdbf8859f8f (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
.control-icons {
  a {
    margin-right: 5px;
    &:hover { text-decoration: none; }

    i.entypo {
      color: $text-grey;
      font-size: $font-size-text;
      line-height: $line-height;
      vertical-align: middle;
      &:hover { color: $text; }
      &.cross { font-size: $line-height; }
    }

    &.hide_conversation i {
      font-size: $line-height*1.5;
    }

    &.delete_conversation i {
      font-size: $font-size-text*1.5;
    }

    &.destroy_participation i {
      color: $black;
      &:hover { color: $text-dark-grey; }
    }
  }
}

.stream_container, #single-post-interactions {
  .control-icons {
    z-index: 6;
    float: right;

    .block_user,
    .comment_report,
    .create_participation,
    .delete,
    .destroy_participation,
    .post_report {
      display: inline-block;
    }

    & > a:hover {
      text-decoration: none;
    }
  }

  .stream_element, .comment, .photo, .stream_element:hover .comment {
    .control-icons > a {
      @include transition(opacity);
      opacity: 0;
    }

    &:hover .control-icons {
      & > a { opacity: 0.8; }
      & > a:hover { opacity: 1; }
    }
  }
}