Enhancement: Fix #1, implement GtkProgressBar styles

This commit is contained in:
Rory Fewell
2020-08-29 21:32:10 +01:00
parent 6e74fa3b66
commit c7e5289d00
6 changed files with 50 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

View File

@@ -0,0 +1,49 @@
/**
* progressbar.scss - Progress Bar 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>
*/
progressbar
{
&.horizontal
{
progress
{
background-image: url("../Resources/progress_horz_chunk.png");
min-height: 12px;
}
trough
{
border-width: 3px 4px;
border-image: url("../Resources/progress_horz.png") 3 4 3 4 stretch;
min-height: 12px;
}
}
&.vertical
{
progress
{
background-image: url("../Resources/progress_vert_chunk.png");
min-width: 12px;
}
trough
{
border-width: 4px 3px;
border-image: url("../Resources/progress_vert.png") 4 3 4 3 stretch;
min-width: 12px;
}
}
trough
{
background-color: #FFF;
border-style: solid;
}
}

View File

@@ -14,6 +14,7 @@
@import "controls/menu";
@import "controls/menubar";
@import "controls/notebook";
@import "controls/progressbar";
@import "controls/radio";
@import "controls/scale";
@import "controls/scrollbar";