40 lines
879 B
CSS
40 lines
879 B
CSS
.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;
|
|
}
|