mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
c184458ab3
We want to have .top etc also on the notebook frame, not only on the header frame. The patch includes a reftest by Benjamin.
29 lines
452 B
CSS
29 lines
452 B
CSS
@import "reset-to-defaults.css";
|
|
|
|
* {
|
|
color: transparent;
|
|
}
|
|
|
|
.notebook.frame,
|
|
.notebook.header.frame {
|
|
border: 1px solid tomato;
|
|
}
|
|
|
|
.reference.notebook.frame.bottom {
|
|
border-bottom-style: none;
|
|
}
|
|
|
|
.reference.notebook.header.frame.bottom {
|
|
border-top-style: none;
|
|
border-bottom-style: solid;
|
|
}
|
|
|
|
.test.notebook.frame.top {
|
|
border-top-style: none;
|
|
}
|
|
|
|
.test.notebook.header.frame.top {
|
|
border-top-style: solid;
|
|
border-bottom-style: none;
|
|
}
|