mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 20:30:11 +00:00
01ba11fc71
These are always set to the same value as the corresponding border radius properties. They are also non-standard, so remove them and replace them with the border radius properties everywhere. Fixes #2414
63 lines
1.3 KiB
CSS
63 lines
1.3 KiB
CSS
a {
|
|
border-bottom-left-radius: initial;
|
|
border-bottom-right-radius: initial;
|
|
border-top-left-radius: initial;
|
|
border-top-right-radius: initial;
|
|
}
|
|
|
|
b {
|
|
border-bottom-left-radius: inherit;
|
|
border-bottom-right-radius: inherit;
|
|
border-top-left-radius: inherit;
|
|
border-top-right-radius: inherit;
|
|
}
|
|
|
|
c {
|
|
border-bottom-left-radius: unset;
|
|
border-bottom-right-radius: unset;
|
|
border-top-left-radius: unset;
|
|
border-top-right-radius: unset;
|
|
}
|
|
|
|
d {
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
e {
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
f {
|
|
border-bottom-left-radius: 50%;
|
|
border-bottom-right-radius: 50%;
|
|
border-top-left-radius: 50%;
|
|
border-top-right-radius: 50%;
|
|
}
|
|
|
|
g {
|
|
border-bottom-left-radius: 5px 6px;
|
|
border-bottom-right-radius: 5px 6px;
|
|
border-top-left-radius: 5px 6px;
|
|
border-top-right-radius: 5px 6px;
|
|
}
|
|
|
|
h {
|
|
border-bottom-left-radius: 5px 20%;
|
|
border-bottom-right-radius: 5px 20%;
|
|
border-top-left-radius: 5px 20%;
|
|
border-top-right-radius: 5px 20%;
|
|
}
|
|
|
|
i {
|
|
border-bottom-left-radius: 10% 20%;
|
|
border-bottom-right-radius: 10% 20%;
|
|
border-top-left-radius: 10% 20%;
|
|
border-top-right-radius: 10% 20%;
|
|
}
|