mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
868b28b503
We have to be careful and not set the background on the labels themselves. https://bugzilla.gnome.org/show_bug.cgi?id=670743
62 lines
682 B
CSS
62 lines
682 B
CSS
@import "reset-to-defaults.css";
|
|
|
|
.button {
|
|
background-image: url("border-image-balls.png");
|
|
color: black;
|
|
text-shadow: 1px 1px white;
|
|
}
|
|
|
|
#a {
|
|
background-size: cover;
|
|
}
|
|
|
|
#b {
|
|
background-size: contain;
|
|
}
|
|
|
|
#c {
|
|
background-size: auto 100%;
|
|
}
|
|
|
|
#d {
|
|
background-size: 100% auto;
|
|
}
|
|
|
|
#e {
|
|
background-size: 100%;
|
|
}
|
|
|
|
#f {
|
|
background-size: auto 40px;
|
|
}
|
|
|
|
#g {
|
|
background-size: 40px auto;
|
|
}
|
|
|
|
#h {
|
|
background-size: 40px;
|
|
}
|
|
|
|
#i {
|
|
background-size: 40px 100%;
|
|
}
|
|
|
|
#j {
|
|
background-size: 100% 40px;
|
|
}
|
|
|
|
#k {
|
|
background-size: 40px 40px;
|
|
}
|
|
|
|
#l {
|
|
/* Uh, I'm out of ideas... */
|
|
background-size: cover;
|
|
}
|
|
|
|
#reference * {
|
|
background-size: auto;
|
|
background-repeat: round;
|
|
}
|