Theme updates

Fixed the DOSrc prompt message
Adjusted combobox arrows again
Replaced the expander arrows in treeviews with plus / negative boxes for theme accuracy
This commit is contained in:
EMH-Mark-I 2020-06-24 20:55:36 -05:00
parent dd233d04a2
commit 34f88813d5
9 changed files with 18 additions and 12 deletions

View File

@ -11,7 +11,6 @@
function msdos_pwd function msdos_pwd
{ {
local dir="`pwd`" local dir="`pwd`"
dir=${dir/$HOME/'~'}
echo $dir | tr '/' '\\' echo $dir | tr '/' '\\'
} }

View File

@ -2,8 +2,6 @@
* Thunar * * Thunar *
**********/ **********/
/* Created 2020-04-01 by EMH-Mark-I */
/*Contributor notes: /*Contributor notes:
Please use two space indentions. Please use two space indentions.
Stack all related and child selectors and selector states into a logical hierarchy to a readable degree. Stack all related and child selectors and selector states into a logical hierarchy to a readable degree.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 627 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 577 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 577 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 584 B

View File

@ -20,7 +20,7 @@ combobox {
margin-right: 2px; margin-right: 2px;
margin-left: 2px; margin-left: 2px;
min-width: 16px; min-width: 16px;
min-height: 16px; } min-height: 15px; } /* Set to 15px to prevent scaling issues with arrow icon. */
combobox button:active, combobox button:active,
combobox button:checked { combobox button:checked {
border-color: @border_shade; border-color: @border_shade;
@ -29,9 +29,7 @@ combobox {
padding-left: 0px; } padding-left: 0px; }
/* The default cellview top or bottom margin will affect the arrow icon scaling in the combobox button. To resolve this, we will add a negative margin. */ /* The default cellview top or bottom margin will affect the arrow icon scaling in the combobox button. To resolve this, we will add a negative margin. */
combobox button cellview {
margin-bottom: -1px;
padding-left: 1px; }
/* Combobox entry */ /* Combobox entry */
combobox entry { combobox entry {
@ -70,12 +68,15 @@ combobox window menu { /* The combobox window menu is included for sub-menus
padding-right: 2px; /* Need padding on the right to keep menuitem images from touching the border. */ padding-right: 2px; /* Need padding on the right to keep menuitem images from touching the border. */
min-height: 16px; } min-height: 16px; }
/* Combobox arrows */ /* Combobox arrows */
combobox arrow { combobox arrow {
-gtk-icon-source: url("assets/vcl-combobox-arrow-down.png"); -gtk-icon-source: url("assets/vcl-combobox-arrow-down.png");
margin-bottom: -1px;
min-width: 16px; min-width: 16px;
min-height: 16px; } /* 16px icons only or else Libreoffice will distort the icon. */ min-height: 16px; } /* 16px icons only or else Libreoffice will distort the icon. */
combobox:disabled arrow:disabled { combobox:disabled arrow:disabled {
margin-bottom: -1px;
min-width: 16px; min-width: 16px;
min-height: 16px; min-height: 16px;
-gtk-icon-source: url("assets/vcl-combobox-arrow-down-disabled.png"); -gtk-icon-source: url("assets/vcl-combobox-arrow-down-disabled.png");
@ -84,16 +85,18 @@ combobox arrow {
combobox > box > button > box > arrow { combobox > box > button > box > arrow {
background-image: url("assets/vcl-combobox-arrow-down.png"); background-image: url("assets/vcl-combobox-arrow-down.png");
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0px 0px; background-position: 50% 50%;
background-size: 16px 16px; background-size: 16px 16px;
margin-bottom: -1px;
min-width: 16px; min-width: 16px;
min-height: 16px; min-height: 16px;
-gtk-icon-source: none; } -gtk-icon-source: none; }
combobox:disabled > box > button > box > arrow:disabled { combobox:disabled > box > button > box > arrow:disabled {
background-image: url("assets/vcl-combobox-arrow-down-disabled.png"); background-image: url("assets/vcl-combobox-arrow-down-disabled.png");
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 0px 0px; background-position: 50% 50%;
background-size: 16px 16px; background-size: 16px 16px;
margin-bottom: -1px;
min-width: 16px; min-width: 16px;
min-height: 16px; min-height: 16px;
-gtk-icon-source: none; } -gtk-icon-source: none; }

View File

@ -19,7 +19,7 @@
-GtkTextView-error-underline-color: @error_color; -GtkTextView-error-underline-color: @error_color;
-GtkToolButton-icon-spacing: 6; -GtkToolButton-icon-spacing: 6;
-GtkToolItemGroup-expander-size: 8; -GtkToolItemGroup-expander-size: 8;
-GtkTreeView-expander-size: 18; -GtkTreeView-expander-size: 16;
-GtkWindow-resize-grip-default: true; -GtkWindow-resize-grip-default: true;
-GtkWindow-resize-grip-height: 16; -GtkWindow-resize-grip-height: 16;
-GtkWindow-resize-grip-width: 16; -GtkWindow-resize-grip-width: 16;
@ -182,7 +182,13 @@ expander arrow {
background-image: url("assets/arrow-down-selected.png"); } background-image: url("assets/arrow-down-selected.png"); }
treeview.view.expander { treeview.view.expander {
-gtk-icon-transform: scale(0.55); } /* NOTE: This sets the treeview expander arrow size within the expander button area. */ -gtk-icon-source: url("assets/expander_plus.png"); }
treeview.view.expander:selected {
-gtk-icon-source: url("assets/expander_plus_highlight.png"); }
treeview.view.expander:checked {
-gtk-icon-source: url("assets/expander_minus.png"); }
treeview.view.expander:checked:selected {
-gtk-icon-source: url("assets/expander_minus_highlight.png"); }
/************ /************
* iconview * * iconview *