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

emojis.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16ad6f62c642d0a1aa1b334a83e892bd666b61cf (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
gl-emoji {
  font-style: normal;
  display: inline-flex;
  vertical-align: baseline;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  font-size: 1.2em;
  line-height: 1;
}

.user-status-emoji {
  margin-left: $gl-padding-4;
  margin-right: $gl-padding-4;

  gl-emoji {
    font-size: 1em;
    line-height: 16px;
    vertical-align: baseline;
  }
}

.emoji-picker-category-header {
  @include gl-sticky;
  background-color: $white-transparent;
}

.emoji-picker-emoji {
  height: 30px;
  // Create a width that fits 9 emojis per row
  width: 100 / 9 * 1%;
  transition: transform 0.15s cubic-bezier(0.3, 0, 0.2, 2) !important;
  will-change: transform;

  &:hover,
  &:focus {
    transform: scale(1.3);
  }
}

.emoji-picker .gl-dropdown .dropdown-menu {
  width: 350px;
}

.emoji-picker-category-tab {
  border-bottom-color: transparent;
}

.emoji-picker-category-active {
  border-bottom-color: var(--gl-theme-accent, $theme-indigo-500);
}

.emoji-picker .gl-dropdown-inner > :last-child {
  padding-bottom: 0;
}