mirror of
https://github.com/rozniak/xfce-winxp-tc.git
synced 2026-05-01 11:41:30 +00:00
Enhancement: Fixes #4, implement GtkComboBox styles
This commit is contained in:
BIN
themes/luna/blue/Resources/combobox_button.png
Normal file
BIN
themes/luna/blue/Resources/combobox_button.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 648 B |
BIN
themes/luna/blue/Resources/combobox_button_hover.png
Normal file
BIN
themes/luna/blue/Resources/combobox_button_hover.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 668 B |
BIN
themes/luna/blue/Resources/combobox_button_inactive.png
Normal file
BIN
themes/luna/blue/Resources/combobox_button_inactive.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 470 B |
BIN
themes/luna/blue/Resources/combobox_button_press.png
Normal file
BIN
themes/luna/blue/Resources/combobox_button_press.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 714 B |
49
themes/luna/blue/gtk-3.0/controls/combobox.scss
Normal file
49
themes/luna/blue/gtk-3.0/controls/combobox.scss
Normal file
@@ -0,0 +1,49 @@
|
||||
/**
|
||||
* combobox.scss - Combobox Widget Luna (Blue) Styles
|
||||
*
|
||||
* This source-code is part of Windows XP stuff for XFCE:
|
||||
* <<https://www.oddmatics.uk>>
|
||||
*
|
||||
* Author(s): Rory Fewell <roryf@oddmatics.uk>
|
||||
*/
|
||||
|
||||
combobox
|
||||
{
|
||||
background-color: #FFF;
|
||||
border: 1px solid #7F9DB9;
|
||||
|
||||
|
||||
button
|
||||
{
|
||||
background-image: url("../Resources/combobox_button.png");
|
||||
background-position: right;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
border-width: 0px;
|
||||
margin: 1px;
|
||||
min-height: 18px;
|
||||
min-width: 15px;
|
||||
|
||||
|
||||
&:hover
|
||||
{
|
||||
background-image: url("../Resources/combobox_button_hover.png");
|
||||
}
|
||||
|
||||
&:active
|
||||
{
|
||||
background-image: url("../Resources/combobox_button_press.png");
|
||||
}
|
||||
|
||||
&:disabled
|
||||
{
|
||||
background-image: url("../Resources/combobox_button_inactive.png");
|
||||
}
|
||||
}
|
||||
|
||||
entry
|
||||
{
|
||||
border-width: 0px;
|
||||
padding-top: 2px;
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,7 @@
|
||||
@import "controls/_base";
|
||||
@import "controls/button";
|
||||
@import "controls/checkbox";
|
||||
@import "controls/combobox";
|
||||
@import "controls/entry";
|
||||
@import "controls/menu";
|
||||
@import "controls/menubar";
|
||||
|
||||
Reference in New Issue
Block a user