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

hovercard.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89e3b4cde5743ce392cd44c91a4cafe62e4726c4 (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
67
68
69
70
71
72
73
74
75
76
#hovercard {
  border-radius: 2px;
  box-shadow: 0 0 5px #666666;

  position: relative;
  display: inline-block;
  min-width: 250px;
  max-width: 400px;

  background-color: $hovercard-background;
  border: 1px solid $border-dark-grey;
  font-size: small;

  .avatar {
    float: left;
    height: 70px;
    object-fit: cover;
    width: 70px;
  }

  $image_width: 80px; /* including margin */

  > h4,
  > div:not(.card-footer) {
    margin-left: $image_width;
  }

  > h4,
  > div,
  .hashtags {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  #hovercard_dropdown_container {
    overflow: visible !important; /* otherwise the aspect dropdown is cropped */
  }

  padding: 5px {
    bottom: 25px;
  };

  h4 {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 16px;
    a {
      font-weight: bold !important;
    }
  }

  .handle {
    color: $text-grey;
    line-height: 18px;
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 5px;
  }

  .btn-group.aspect-membership-dropdown { margin: 0 !important; }
}

#hovercard_container {
  position: absolute;
  display: none;
  z-index: 2000;

  min-width: 250px;
  max-width: 400px;

  padding: 10px {
    top: 5px;
  }
}