A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 _ripple-box.scss

View raw Download
text/plain • 455 B
ASCII text
        
            
1
/* Activities Ripple */
2
3
@use "../../../../theme-color";
4
5
.ripple-box {
6
width: 48px;
7
height: 48px;
8
border-radius: 0 0 48px 0; // radius equals the size of the box to give us the curve
9
box-shadow: none;
10
background-color: theme-color.stroke(theme-color.$on-dark);
11
background-image: none;
12
background-size: auto;
13
14
// just a simple change to the border radius position
15
&:rtl {
16
border-radius: 0 0 0 48px;
17
background-image: none;
18
}
19
}
20