mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 879606 - draw top window border for XP modern themes when lwtheme is active, r=jaws
This commit is contained in:
parent
1d094f07a0
commit
32dcbef66f
@ -127,6 +127,64 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* Render a window top border for lwthemes on WinXP modern themes: */
|
||||
@media (-moz-windows-theme: luna-blue) {
|
||||
#main-window[tabsintitlebar][sizemode="normal"] #titlebar-content:-moz-lwtheme {
|
||||
background-image: linear-gradient(to bottom,
|
||||
rgb(8, 49, 216) 0, rgb(8, 49, 216) 1px,
|
||||
rgb(15, 77, 227) 1px, rgb(15, 77, 227) 2px,
|
||||
rgb(22, 106, 238) 2px, rgb(22, 106, 238) 3px,
|
||||
rgb(8, 85, 221) 3px, rgb(8, 85, 221) 4px,
|
||||
transparent 4px);
|
||||
}
|
||||
|
||||
#main-window[tabsintitlebar][sizemode="normal"] #titlebar-content:-moz-lwtheme:-moz-window-inactive {
|
||||
background-image: linear-gradient(to bottom,
|
||||
rgb(91, 104, 205) 0, rgb(91, 104, 205) 1px,
|
||||
rgb(116, 128, 220) 1px, rgb(116, 128, 220) 2px,
|
||||
rgb(117, 140, 221) 2px, rgb(117, 140, 221) 4px,
|
||||
transparent 4px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (-moz-windows-theme: luna-silver) {
|
||||
#main-window[tabsintitlebar][sizemode="normal"] #titlebar-content:-moz-lwtheme {
|
||||
background-image: linear-gradient(to bottom,
|
||||
rgb(102,102,126) 0, rgb(102,102,126) 1px,
|
||||
rgb(168,167,191) 1px, rgb(168,167,191) 2px,
|
||||
white 2px, white 3px,
|
||||
rgb(188,188,207) 3px, rgb(188,188,207) 4px,
|
||||
transparent 4px);
|
||||
}
|
||||
|
||||
#main-window[tabsintitlebar][sizemode="normal"] #titlebar-content:-moz-lwtheme:-moz-window-inactive {
|
||||
background-image: linear-gradient(to bottom,
|
||||
rgb(186,186,197) 0, rgb(186,186,197) 1px,
|
||||
rgb(236,238,245) 1px, rgb(236,238,245) 2px,
|
||||
white 2px, white 3px,
|
||||
rgb(215,215,227) 3px, rgb(215,215,227) 4px,
|
||||
transparent 4px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (-moz-windows-theme: luna-olive) {
|
||||
#main-window[tabsintitlebar][sizemode="normal"] #titlebar-content:-moz-lwtheme {
|
||||
background-image: linear-gradient(to bottom,
|
||||
rgb(139,161,105) 0, rgb(139,161,105) 1px,
|
||||
rgb(171, 189, 133) 1px, rgb(171, 189, 133) 2px,
|
||||
rgb(164,178,127) 2px, rgb(164,178,127) 3px,
|
||||
transparent 3px);
|
||||
}
|
||||
|
||||
#main-window[tabsintitlebar][sizemode="normal"] #titlebar-content:-moz-lwtheme:-moz-window-inactive {
|
||||
background-image: linear-gradient(to bottom,
|
||||
rgb(207, 214, 188) 0, rgb(207, 214, 188) 1px,
|
||||
rgb(224, 226, 200) 1px, rgb(224, 226, 200) 2px,
|
||||
rgb(214, 216, 190) 2px, rgb(214, 216, 190) 3px,
|
||||
transparent 3px);
|
||||
}
|
||||
}
|
||||
|
||||
#nav-bar {
|
||||
background-image: linear-gradient(@toolbarHighlight@, rgba(255,255,255,0));
|
||||
box-shadow: 0 1px 0 @toolbarHighlight@ inset;
|
||||
|
Loading…
Reference in New Issue
Block a user