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

people.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8daa65c1ade8c5a08cd564864dfd888ea3f4f73f (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
#people_search {
  #search_title {
    .term { font-weight: 700; }
    small { margin-left: 15px; }
  }
  .invitations-button { padding-left: 0; }
}

#people-stream {
  .media, .media-body {
    overflow: visible;
  }
  .stream-element.media {
    border-bottom: 1px solid $border-grey;
    padding: 10px;
    margin: 0;
    font-size: 13px;
    line-height: 16px;
    min-height: 50px;
    .avatar {
      width: 50px;
      height: 50px;
    }
    .btn-group.aspect-membership-dropdown { margin: 12px 0; }
    .thats_you {
      line-height: 50px;
      margin-right: 10px;
    }
    .info { font-size: $font-size-small; }
  }
}

#blocked_people {
  .blocked-person {
    border-bottom: 1px solid $border-grey;
    font-size: 13px;
    line-height: 16px;
    margin: 0;
    min-height: 50px;
    padding: 10px 0;
    &:last-of-type { border-bottom: 0; }
    .avatar {
      width: 50px;
      height: 50px;
    }
    .info { font-size: $font-size-small; }
    .btn-danger { margin-top: 9px; }
  }
}

#sharing_message {
  &.entypo-check {
    color: darken($brand-success, 20%);
  }

  &.entypo-record {
    color: $text-grey;
  }
}