css: Add style entries for client side decorations to default CSS

This commit is contained in:
Rob Bradford
2013-02-19 12:55:07 +00:00
parent 5cf4353a6f
commit 0331c16af9

View File

@@ -729,3 +729,65 @@ GtkCalendar.button:hover {
-gtk-gradient(radial, center center, 0, center center, 0.5, to(currentColor), to(transparent));
animation: spinner 1s infinite linear;
}
/* Client side decorations */
.titlebar > GtkLabel:backdrop {
color: darker (@bg_color);
text-shadow: none;
}
.titlebar GtkLabel {
font: Sans Bold 10;
text-shadow: 1px 1px lighter (@bg_color);
}
.titlebar GtkButton:backdrop {
border-image: none;
background-image: none;
}
.titlebar GtkButton GtkLabel:backdrop {
text-shadow: none;
color: darker (@bg_color);
}
.titlebar GtkButton GtkLabel {
font: Sans Bold 12;
color: white;
text-shadow: 0px 1px darker (darker (@bg_color));
}
.titlebar GtkButton {
border-style: none;
border-color: darker (@bg_color);
background-image: -gtk-gradient (linear, center top, center bottom,
from (@bg_color),
color-stop (0.5, darker (@bg_color)),
to (@bg_color));
}
.titlebar:backdrop {
background-image: none;
}
.titlebar {
background-image: -gtk-gradient (linear, center top, center bottom,
from (white),
to (@bg_color));
border-radius: 5px 5px 0px 0px;
}
.window-border {
border-color: darker (@bg_color);
border-radius: 5px;
border-width: 3px 3px 3px 3px;
border-style: solid;
}
.window-border-bar {
border-style: solid;
border-width: 1px 1px 2px 1px;
border-color: darker (@bg_color);
border-radius: 5px 5px 0px 0px;
}