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: 63858cb6bf4f81ffa8f0f94b90d98cf00c0dd01d (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
.stream_container, #single-post-interactions {
  .controls {
    z-index: 6;
    float: right;
    .comment_report {
      display: inline-block;
      .icons-report {
        height: 14px;
        width: 14px;
      }
    }
    .delete {
      display: inline-block;
      .icons-deletelabel {
        height: 14px;
        width: 14px;
      }
    }
    & > a:hover {
      text-decoration: none;
    }
  }

  .stream_element, .comment, .stream_element:hover .comment {
    .controls > a { @include opacity(0); }

    &:hover .controls {
      & > a { @include opacity(0.3); }
      & > a:hover { @include opacity(1); }
    }
  }
}