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:
parent
dd233d04a2
commit
34f88813d5
|
@ -11,7 +11,6 @@
|
|||
function msdos_pwd
|
||||
{
|
||||
local dir="`pwd`"
|
||||
dir=${dir/$HOME/'~'}
|
||||
|
||||
echo $dir | tr '/' '\\'
|
||||
}
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
* Thunar *
|
||||
**********/
|
||||
|
||||
/* Created 2020-04-01 by EMH-Mark-I */
|
||||
|
||||
/*Contributor notes:
|
||||
Please use two space indentions.
|
||||
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 |
|
@ -20,7 +20,7 @@ combobox {
|
|||
margin-right: 2px;
|
||||
margin-left: 2px;
|
||||
min-width: 16px;
|
||||
min-height: 16px; }
|
||||
min-height: 15px; } /* Set to 15px to prevent scaling issues with arrow icon. */
|
||||
combobox button:active,
|
||||
combobox button:checked {
|
||||
border-color: @border_shade;
|
||||
|
@ -29,9 +29,7 @@ combobox {
|
|||
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. */
|
||||
combobox button cellview {
|
||||
margin-bottom: -1px;
|
||||
padding-left: 1px; }
|
||||
|
||||
|
||||
/* 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. */
|
||||
min-height: 16px; }
|
||||
|
||||
|
||||
/* Combobox arrows */
|
||||
combobox arrow {
|
||||
-gtk-icon-source: url("assets/vcl-combobox-arrow-down.png");
|
||||
margin-bottom: -1px;
|
||||
min-width: 16px;
|
||||
min-height: 16px; } /* 16px icons only or else Libreoffice will distort the icon. */
|
||||
combobox:disabled arrow:disabled {
|
||||
margin-bottom: -1px;
|
||||
min-width: 16px;
|
||||
min-height: 16px;
|
||||
-gtk-icon-source: url("assets/vcl-combobox-arrow-down-disabled.png");
|
||||
|
@ -84,16 +85,18 @@ combobox arrow {
|
|||
combobox > box > button > box > arrow {
|
||||
background-image: url("assets/vcl-combobox-arrow-down.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0px 0px;
|
||||
background-position: 50% 50%;
|
||||
background-size: 16px 16px;
|
||||
margin-bottom: -1px;
|
||||
min-width: 16px;
|
||||
min-height: 16px;
|
||||
-gtk-icon-source: none; }
|
||||
combobox:disabled > box > button > box > arrow:disabled {
|
||||
background-image: url("assets/vcl-combobox-arrow-down-disabled.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0px 0px;
|
||||
background-position: 50% 50%;
|
||||
background-size: 16px 16px;
|
||||
margin-bottom: -1px;
|
||||
min-width: 16px;
|
||||
min-height: 16px;
|
||||
-gtk-icon-source: none; }
|
||||
-gtk-icon-source: none; }
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
-GtkTextView-error-underline-color: @error_color;
|
||||
-GtkToolButton-icon-spacing: 6;
|
||||
-GtkToolItemGroup-expander-size: 8;
|
||||
-GtkTreeView-expander-size: 18;
|
||||
-GtkTreeView-expander-size: 16;
|
||||
-GtkWindow-resize-grip-default: true;
|
||||
-GtkWindow-resize-grip-height: 16;
|
||||
-GtkWindow-resize-grip-width: 16;
|
||||
|
@ -182,7 +182,13 @@ expander arrow {
|
|||
background-image: url("assets/arrow-down-selected.png"); }
|
||||
|
||||
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 *
|
||||
|
|
Loading…
Reference in New Issue