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: 2084f5e3d2998ca2dd2167bf890a7ab2b8acf56f (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
@import 'colors';

/** ADMIN STYlES **/

body > div.container {
  margin-top: 40px;
  padding-top: 1em;
}

#admin_nav {
  font-size: 1em;
  border-bottom: 2px solid #777;
  margin-bottom: 20px;

  ul {
    display: inline;
  }

  li {
    font-size: 0.8em;
    display: inline;
    margin-right: 0.5em;

    a { color: $blue; }
  }
}

/** 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 li {
      margin-top: .3em;
    }
  }
}

/** reported posts **/

@import 'report'