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

read_more.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b84b6e0b256e2c876d220b1c001699cc7430f09a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.read-more-container {
  @include media-breakpoint-down(md) {
    &:not(.is-expanded) {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;

      > * {
        display: inline;
      }
    }
  }
}