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

admin.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f796777a6a646eff769557dcb2d0ec7d3026fcea (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
61
62
63
64
65
66
@import 'colors';
@import 'new_styles/animations';

/** ADMIN STYlES **/
/** user search **/

.users {
  li.user {
    border-bottom: 1px solid $light-grey;
    margin-bottom: .4em;
    padding-bottom: .4em;

    &:last-child { border: none; }

    .avatar {
      width: 50px;
      height: 50px;
    }

    .actions{ width: 150px; }

    .pull-right .label{ display: inline-block; }
  }
}

/** Invites panel **/
.more_invites{
  #add-invites-section{
    line-height: 34px;
    margin-bottom: 15px;
  }
}

/** reported posts **/

@import 'report';

/** pod list **/

#pod-list {
  th.added,
  td.added,
  td.actions { white-space: nowrap; }

  tr.deleting {
    opacity: .5;
  }

  tr.checking .recheck i {
    animation-duration: .4s;
    animation-name: pulsate;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

  td.actions {
    text-align: right;

    a { color: inherit; }
  }

  pre.details {
    margin-top: 1em;
    white-space: normal;
  }
}