aboutsummaryrefslogtreecommitdiff
path: root/app/src/web/scss/core/core.scss
blob: 38086529b83ceef74fccd92423806b622fcc66e3 (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
@import "colors";
@import "base";
@import "core_text";
@import "core_bg";
@import "core_border";
@import "core_messenger";

//GLOBAL overrides; use with caution
*, *::after, *::before {
  text-shadow: none !important;
  box-shadow: none !important;
}

// .touch .btnS, button, ._94v, ._590n {
//   box-shadow: none !important;
// }

[data-sigil=m_login_upsell],
[data-sigil="m-loading-indicator-animate m-loading-indicator-root"] {
  display: none !important;
}

@include placeholder {
  color: $text !important;
}

.excessItem {
  outline: $divider !important;
}

._3m1m {
  background: linear-gradient(transparent, $bg_opaque) !important;
}

//new comment
@include keyframes(highlightFade) {
  0%, 50% {
    background: $background2;
  }

  100% {
    background: $bg_transparent;
  }
}

@include keyframes(chatHighlightAnimation) {
  0%, 100% {
    background: $bg_transparent;
  }

  50% {
    background: $background2;
  }
}