File: carousel.css

package info (click to toggle)
malcontent 0.13.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,756 kB
  • sloc: ansic: 7,418; python: 418; xml: 377; sh: 36; makefile: 14
file content (39 lines) | stat: -rw-r--r-- 879 bytes parent folder | download | duplicates (2)
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
.carousel-arrow-container {
  border-bottom: 1px solid @borders;
}

.carousel-arrow,
.carousel-inner-arrow {
  border-width: 20px; /* ARROW_SIZE */
  border-style: solid;
  border-color: transparent;
}

.carousel-arrow {
  border-bottom-color: @borders;
  margin-bottom: -1px;
  animation-duration: 200ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.carousel-inner-arrow {
  border-bottom-color: @theme_bg_color;
  margin-bottom: -2px;
}

carousel-item {
  background: transparent;
  box-shadow: none;
  border: none;
  color: @theme_fg_color;
}

carousel-item:focus:focus-visible avatar {
  /* this should actually be $focus_border_color from
   * gtk/theme/Default/_colors.scss, but we have to simplify the theming slightly */
  outline-color: @theme_selected_bg_color;
  outline-offset: -2px;
  outline-width: 2px;
  outline-style: solid;
}