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

tag.css.scss « stylesheets « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f13a6fc7dab503e7081fa52e7b9b2e7600c1ed1e (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
.tag {
  display: inline-block;
  font-weight: bold;
  &:hover {
    text-decoration: underline;
    background-color: lighten($blue, 47%);
  }
}

h1.tag {
  border-bottom: 2px dotted $blue;
  &:hover { border-bottom: 2px dotted $blue; }
}

.info {
  .tag {
    background-color: #efefef;
    color: $text-grey;
    border-bottom: 1px dotted $border-dark-grey;
    &:hover { border-bottom: 1px solid $border-dark-grey; }
  }
}

#tags_show {
  .span3 {
    border-right: 1px solid $border-grey;
    .side_stream #people_stream {
      .name { display: block; }
      .name, .diaspora_handle, .tags {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }
  }
}