Before Width: | Height: | Size: 786 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 828 B |
Before Width: | Height: | Size: 814 B |
Before Width: | Height: | Size: 814 B |
Before Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 753 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 935 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 965 B |
Before Width: | Height: | Size: 939 B |
Before Width: | Height: | Size: 915 B |
Before Width: | Height: | Size: 829 B |
Before Width: | Height: | Size: 832 B |
Before Width: | Height: | Size: 765 B |
Before Width: | Height: | Size: 751 B |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 954 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 959 B |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 960 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 962 B |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 793 B |
Before Width: | Height: | Size: 806 B |
Before Width: | Height: | Size: 806 B |
Before Width: | Height: | Size: 803 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
@ -0,0 +1,46 @@
|
||||
/**********
|
||||
* Button *
|
||||
**********/
|
||||
|
||||
.button {
|
||||
border-color: @border_color;
|
||||
border-style: solid;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@button_gr_color_a),
|
||||
to (@button_gr_color_b));
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
border-color: #B4BDC5;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@button_hover_gr_color_a),
|
||||
to (@button_hover_gr_color_b));
|
||||
}
|
||||
|
||||
.button:active,
|
||||
.button:hover:active {
|
||||
border-color: #898989;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (#C1C1C1),
|
||||
to (#B5B5B5));
|
||||
}
|
||||
|
||||
.button:insensitive {
|
||||
border-color: #B8B8B8;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (#D4D4D4),
|
||||
to (#D1D1D1));
|
||||
}
|
||||
|
@ -0,0 +1,38 @@
|
||||
/*********
|
||||
* Check *
|
||||
*********/
|
||||
|
||||
GtkCheckButton {
|
||||
-GtkCheckButton-indicator-size: 17;
|
||||
-GtkCheckMenuItem-indicator-size: 17;
|
||||
}
|
||||
|
||||
GtkCheckButton:selected {
|
||||
background-color: shade (@bg_color, 0.95);
|
||||
}
|
||||
|
||||
.check,
|
||||
.check row:selected,
|
||||
.check row:selected:focused {
|
||||
background-image: url("data/check.png");
|
||||
}
|
||||
|
||||
.check:insensitive,
|
||||
.check row:selected:insensitive,
|
||||
.check row:selected:focused:insensitive {
|
||||
background-image: url("data/check-inconsistent.png");
|
||||
}
|
||||
|
||||
.check:active,
|
||||
.check row:selected:active,
|
||||
.check row:selected:focused:active {
|
||||
background-image: url("data/check-active.png");
|
||||
}
|
||||
|
||||
.check:active:insensitive,
|
||||
.check row:selected:active:insensitive,
|
||||
.check row:selected:focused:active:insensitive
|
||||
{
|
||||
background-image: url("data/check-active-inconsistent.png");
|
||||
}
|
||||
|
After Width: | Height: | Size: 605 B |
After Width: | Height: | Size: 760 B |
After Width: | Height: | Size: 395 B |
After Width: | Height: | Size: 411 B |
After Width: | Height: | Size: 694 B |
After Width: | Height: | Size: 822 B |
After Width: | Height: | Size: 659 B |
After Width: | Height: | Size: 631 B |
After Width: | Height: | Size: 500 B |
@ -0,0 +1,12 @@
|
||||
/*********
|
||||
* Entry *
|
||||
*********/
|
||||
|
||||
GtkEntry {
|
||||
border-color: @border_color;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
GtkEntry:focused {
|
||||
border-color: @selected_bg_color;
|
||||
}
|
@ -1,281 +0,0 @@
|
||||
/*************************
|
||||
* Check and Radio items *
|
||||
*************************/
|
||||
|
||||
/* draw regular check and radio items using our SVG assets */
|
||||
.check,
|
||||
.check row:selected,
|
||||
.check row:selected:focused {
|
||||
background-image: url("assets/checkbox-unchecked.svg");
|
||||
}
|
||||
|
||||
.check:insensitive,
|
||||
.check row:selected:insensitive,
|
||||
.check row:selected:focused:insensitive {
|
||||
background-image: url("assets/checkbox-unchecked-insensitive.svg");
|
||||
}
|
||||
|
||||
.check:active,
|
||||
.check row:selected:active,
|
||||
.check row:selected:focused:active {
|
||||
background-image: url("assets/checkbox-checked.svg");
|
||||
}
|
||||
|
||||
.check:active:insensitive,
|
||||
.check row:selected:active:insensitive,
|
||||
.check row:selected:focused:active:insensitive
|
||||
{
|
||||
background-image: url("assets/checkbox-checked-insensitive.svg");
|
||||
}
|
||||
|
||||
.check:inconsistent,
|
||||
.check row:selected:inconsistent,
|
||||
.check row:selected:focused:inconsistent {
|
||||
background-image: url("assets/checkbox-mixed.svg");
|
||||
}
|
||||
|
||||
.check:inconsistent:insensitive,
|
||||
.check row:selected:inconsistent:insensitive,
|
||||
.check row:selected:focused:inconsistent:insensitive {
|
||||
background-image: url("assets/checkbox-mixed-insensitive.svg");
|
||||
}
|
||||
|
||||
.radio,
|
||||
.radio row:selected,
|
||||
.radio row:selected:focused {
|
||||
background-image: url("assets/radio-unselected.svg");
|
||||
}
|
||||
|
||||
.radio:insensitive,
|
||||
.radio row:selected:insensitive,
|
||||
.radio row:selected:focused:insensitive {
|
||||
background-image: url("assets/radio-unselected-insensitive.svg");
|
||||
}
|
||||
|
||||
.radio:active,
|
||||
.radio row:selected:active,
|
||||
.radio row:selected:focused:active {
|
||||
background-image: url("assets/radio-selected.svg");
|
||||
}
|
||||
|
||||
.radio:active:insensitive,
|
||||
.radio row:selected:active:insensitive,
|
||||
.radio row:selected:focused:active:insensitive {
|
||||
background-image: url("assets/radio-selected-insensitive.svg");
|
||||
}
|
||||
|
||||
.radio:inconsistent,
|
||||
.radio row:selected:inconsistent,
|
||||
.radio row:selected:focused:inconsistent {
|
||||
background-image: url("assets/radio-mixed.svg");
|
||||
}
|
||||
|
||||
.radio:inconsistent:insensitive,
|
||||
.radio row:selected:inconsistent:insensitive,
|
||||
.radio row:selected:focused:inconsistent:insensitive {
|
||||
background-image: url("assets/radio-mixed-insensitive.svg");
|
||||
}
|
||||
|
||||
.sidebar .radio:active,
|
||||
.sidebar .radio:active:focused,
|
||||
.sidebar .radio:active:prelight {
|
||||
background-image: url("assets/sidebar-radio-checked.svg");
|
||||
}
|
||||
|
||||
.sidebar .radio:prelight {
|
||||
background-image: url("assets/sidebar-radio-prelight.svg");
|
||||
}
|
||||
|
||||
.sidebar .radio:active:selected,
|
||||
.sidebar .radio:active:selected:focused {
|
||||
background-image: url("assets/sidebar-radio-selected.svg");
|
||||
}
|
||||
|
||||
.sidebar .radio:selected:prelight,
|
||||
.sidebar .radio:selected:focused {
|
||||
background-image: url("assets/sidebar-radio-selected-prelight.svg");
|
||||
}
|
||||
|
||||
.entry {
|
||||
border-image: url("assets/entry-border-normal.svg") 2 / 2 stretch;
|
||||
}
|
||||
|
||||
.entry:focused {
|
||||
border-image: url("assets/entry-border-focused.svg") 2 / 2 stretch;
|
||||
}
|
||||
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button,
|
||||
GtkComboBox.combobox-entry .button,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:nth-child(last),
|
||||
GtkComboBox.combobox-entry .button:nth-child(last) {
|
||||
border-image: url("assets/entry-border-normal.svg") 2 / 2 2 2 0 stretch;
|
||||
}
|
||||
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:active,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:hover:active,
|
||||
GtkComboBox.combobox-entry .button:active,
|
||||
GtkComboBox.combobox-entry .button:hover:active,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:active:nth-child(last),
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:hover:active:nth-child(last),
|
||||
GtkComboBox.combobox-entry .button:active:nth-child(last),
|
||||
GtkComboBox.combobox-entry .button:hover:active:nth-child(last) {
|
||||
border-image: url("assets/combobox-entry-border-active.svg") 2 / 2 2 2 0 stretch;
|
||||
}
|
||||
|
||||
/* for RTL languages */
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:nth-child(first),
|
||||
GtkComboBox.combobox-entry .button:nth-child(first) {
|
||||
border-image: url("assets/entry-border-normal.svg") 2 / 2 0 2 2 stretch;
|
||||
}
|
||||
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:active:nth-child(first),
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:hover:active:nth-child(first),
|
||||
GtkComboBox.combobox-entry .button:active:nth-child(first),
|
||||
GtkComboBox.combobox-entry .button:hover:active:nth-child(first) {
|
||||
border-image: url("assets/combobox-entry-border-active.svg") 2 / 2 0 2 2 stretch;
|
||||
}
|
||||
|
||||
GtkScale.trough,
|
||||
GtkSwitch.trough,
|
||||
GtkScale.trough.horizontal {
|
||||
border-image: url("assets/trough-border-horizontal.svg") 2 / 2 stretch;
|
||||
}
|
||||
|
||||
GtkScale.trough.vertical {
|
||||
border-image: url("assets/trough-border-vertical.svg") 2 / 2 stretch;
|
||||
}
|
||||
|
||||
GtkSwitch.trough:active,
|
||||
GtkScale.progressbar.horizontal {
|
||||
border-image: url("assets/trough-active-border-horizontal.svg") 2 / 2 stretch;
|
||||
}
|
||||
|
||||
GtkScale.progressbar.vertical {
|
||||
border-image: url("assets/trough-active-border-vertical.svg") 2 / 2 stretch;
|
||||
}
|
||||
|
||||
GtkSwitch.slider {
|
||||
border-image: none;
|
||||
}
|
||||
|
||||
GtkSwitch.slider:active {
|
||||
border-image: none;
|
||||
}
|
||||
|
||||
.progressbar,
|
||||
.entry.progressbar,
|
||||
.progressbar row,
|
||||
.progressbar row:hover,
|
||||
.progressbar row:selected,
|
||||
.progressbar row:selected:focused {
|
||||
border-image: url("assets/progressbar-border.svg") 3 / 3 stretch;
|
||||
}
|
||||
|
||||
.progressbar.vertical {
|
||||
border-image: url("assets/progressbar-border-vertical.svg") 3 / 3 stretch;
|
||||
}
|
||||
|
||||
GtkScale.slider,
|
||||
GtkScale.slider.horizontal {
|
||||
background-image: url("assets/scale-slider-horizontal.svg");
|
||||
}
|
||||
|
||||
GtkScale.slider:insensitive,
|
||||
GtkScale.slider.horizontal:insensitive {
|
||||
background-image: url("assets/scale-slider-horizontal-insensitive.svg");
|
||||
}
|
||||
|
||||
GtkScale.slider.vertical {
|
||||
background-image: url("assets/scale-slider-vertical.svg");
|
||||
}
|
||||
|
||||
GtkScale.slider.vertical:insensitive {
|
||||
background-image: url("assets/scale-slider-vertical-insensitive.svg");
|
||||
}
|
||||
|
||||
GtkScale.scale-has-marks-above.slider.horizontal {
|
||||
background-image: url("assets/scale-slider-marks-above-horizontal.svg");
|
||||
}
|
||||
|
||||
GtkScale.scale-has-marks-above.slider.horizontal:insensitive {
|
||||
background-image: url("assets/scale-slider-marks-above-horizontal-insensitive.svg");
|
||||
}
|
||||
|
||||
GtkScale.scale-has-marks-above.slider.vertical {
|
||||
background-image: url("assets/scale-slider-marks-above-vertical.svg");
|
||||
}
|
||||
|
||||
GtkScale.scale-has-marks-above.slider.vertical:insensitive {
|
||||
background-image: url("assets/scale-slider-marks-above-vertical-insensitive.svg");
|
||||
}
|
||||
|
||||
GtkScale.scale-has-marks-below.slider.horizontal {
|
||||
background-image: url("assets/scale-slider-marks-below-horizontal.svg");
|
||||
}
|
||||
|
||||
GtkScale.scale-has-marks-below.slider.horizontal:insensitive {
|
||||
background-image: url("assets/scale-slider-marks-below-horizontal-insensitive.svg");
|
||||
}
|
||||
|
||||
GtkScale.scale-has-marks-below.slider.vertical {
|
||||
background-image: url("assets/scale-slider-marks-below-vertical.svg");
|
||||
}
|
||||
|
||||
GtkScale.scale-has-marks-below.slider.vertical:insensitive {
|
||||
background-image: url("assets/scale-slider-marks-below-vertical-insensitive.svg");
|
||||
}
|
||||
|
||||
.button {
|
||||
border-image: url("assets/button-border.svg") 3 / 3 stretch;
|
||||
}
|
||||
|
||||
.button:active,
|
||||
.toolbar .button:active,
|
||||
.button:hover:active,
|
||||
.toolbar .button:hover:active {
|
||||
border-image: url("assets/button-active-border.svg") 3 / 3 stretch;
|
||||
}
|
||||
|
||||
.button.default {
|
||||
border-image: url("assets/button-default-border.svg") 4 / 4 stretch;
|
||||
}
|
||||
|
||||
.primary-toolbar .toolbar .button:active,
|
||||
.primary-toolbar.toolbar .button:active,
|
||||
.primary-toolbar .toolbar .button:active:hover,
|
||||
.primary-toolbar.toolbar .button:active:hover {
|
||||
border-image: url("assets/primary-toolbar-button-active-border.svg") 4 / 4 stretch;
|
||||
}
|
||||
|
||||
.toolbar .raised .button,
|
||||
.toolbar .raised.button {
|
||||
border-image: url("assets/primary-toolbar-raised-button-border.svg") 4 / 4 stretch;
|
||||
}
|
||||
|
||||
/* nth-child for linked areas */
|
||||
.toolbar .raised.linked.button,
|
||||
.toolbar .raised.linked.button:active,
|
||||
.toolbar .raised.linked.button:active:hover,
|
||||
.toolbar .raised.linked .button,
|
||||
.toolbar .raised.linked .button:active,
|
||||
.toolbar .raised.linked .button:active:hover {
|
||||
border-image: url("assets/primary-toolbar-raised-button-border.svg") 4 / 4 0 stretch;
|
||||
}
|
||||
|
||||
.toolbar .raised.linked.button:nth-child(first) ,
|
||||
.toolbar .raised.linked.button:active:nth-child(first),
|
||||
.toolbar .raised.linked.button:active:hover:nth-child(first),
|
||||
.toolbar .raised.linked:nth-child(first) .button,
|
||||
.toolbar .raised.linked:nth-child(first) .button:active,
|
||||
.toolbar .raised.linked:nth-child(first) .button:active:hover {
|
||||
border-image: url("assets/primary-toolbar-raised-button-border.svg") 4 / 4 0 4 4 stretch;
|
||||
}
|
||||
|
||||
.toolbar .raised.linked.button:nth-child(last),
|
||||
.toolbar .raised.linked.button:active:nth-child(last),
|
||||
.toolbar .raised.linked.button:active:hover:nth-child(last),
|
||||
.toolbar .raised.linked:nth-child(last) .button,
|
||||
.toolbar .raised.linked:nth-child(last) .button:active,
|
||||
.toolbar .raised.linked:nth-child(last) .button:active:hover {
|
||||
border-image: url("assets/primary-toolbar-raised-button-border.svg") 4 / 4 4 4 0 stretch;
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
/********
|
||||
* Menu *
|
||||
********/
|
||||
|
||||
.menubar {
|
||||
-GtkWidget-window-dragging: true;
|
||||
}
|
||||
|
||||
.menuitem {
|
||||
-unico-bullet-color: @fg_color;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.menuitem:prelight {
|
||||
border-style: solid;
|
||||
border-color: #7196B5;
|
||||
color: #ffffff;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (#88ABC7),
|
||||
to (#7EA3BF));
|
||||
}
|
||||
|
||||
.menuitem *:hover,
|
||||
.menubar .menuitem *:prelight {
|
||||
color: #ffffff;
|
||||
border-style: solid;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.menuitem:insensitive,
|
||||
.menuitem *:insensitive {
|
||||
color: mix (#666666, #ffffff, 0.6);
|
||||
}
|
||||
|
||||
.menu {
|
||||
background-color: #ffffff;
|
||||
color: @fg_color;
|
||||
padding: 1;
|
||||
border-style: solid;
|
||||
border-color: #666666;
|
||||
border-radius: 0;
|
||||
c
|
||||
}
|
@ -0,0 +1,87 @@
|
||||
/* desktop mode */
|
||||
.nautilus-desktop.nautilus-canvas-item {
|
||||
color: #ffffff;
|
||||
text-shadow: 1 1 alpha (#000000, 0.8);
|
||||
}
|
||||
|
||||
.nautilus-desktop.nautilus-canvas-item:active {
|
||||
background-image: none;
|
||||
background-color: alpha (@selected_bg_color, 0.84);
|
||||
border-radius: 2;
|
||||
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.nautilus-desktop.nautilus-canvas-item:selected {
|
||||
background-image: none;
|
||||
background-color: alpha (@selected_bg_color, 0.84);
|
||||
border-radius: 2;
|
||||
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.nautilus-desktop.nautilus-canvas-item:active,
|
||||
.nautilus-desktop.nautilus-canvas-item:prelight,
|
||||
.nautilus-desktop.nautilus-canvas-item:selected {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
/* browser window */
|
||||
NautilusTrashBar.info,
|
||||
NautilusXContentBar.info,
|
||||
NautilusSearchBar.info,
|
||||
NautilusQueryEditor.info {
|
||||
color: @selected_fg_color;
|
||||
background-color: @selected_bg_color;
|
||||
border-radius: 0;
|
||||
border-style: solid;
|
||||
border-width: 0 1 1 1;
|
||||
}
|
||||
|
||||
NautilusSearchBar .entry {}
|
||||
|
||||
.nautilus-cluebar-label {
|
||||
color: @selected_fg_color;
|
||||
font: bold;
|
||||
}
|
||||
|
||||
#nautilus-search-button *:active,
|
||||
#nautilus-search-button *:active:prelight {
|
||||
color: @fg_color;
|
||||
}
|
||||
|
||||
NautilusFloatingBar {
|
||||
border-radius: 2 2 0 0;
|
||||
border-style: solid;
|
||||
border-width: 1;
|
||||
border-color: #9DC1E6;
|
||||
|
||||
background-color: @tooltip_bg_color;
|
||||
-unico-border-gradient: none;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
NautilusFloatingBar .button {
|
||||
background-color: alpha (@theme_base_color, 0.0);
|
||||
background-image: none;
|
||||
|
||||
border-style: none;
|
||||
border-image: none;
|
||||
|
||||
-GtkButton-image-spacing: 0;
|
||||
-GtkButton-inner-border: 0;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
/* sidebar */
|
||||
/*NautilusWindow .sidebar,
|
||||
NautilusWindow .sidebar .view {
|
||||
background-color: @bg_color;
|
||||
}
|
||||
|
||||
NautilusWindow .sidebar .frame {
|
||||
border-radius: 0;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
NautilusWindow > GtkTable > .pane-separator {}*/
|
@ -0,0 +1,27 @@
|
||||
/************
|
||||
* Notebook *
|
||||
************/
|
||||
|
||||
.notebook {
|
||||
border-color: @border_color;
|
||||
border-style: solid;
|
||||
|
||||
-GtkNotebook-tab-overlap: 4;
|
||||
-GtkNotebook-tab-curvature: 1;
|
||||
}
|
||||
|
||||
.notebook tab {
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (#CACACA),
|
||||
to (#B6B6B6));
|
||||
}
|
||||
|
||||
.notebook tab:active {
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (#E0E0E0),
|
||||
to (#D6D6D6));
|
||||
}
|
@ -0,0 +1,43 @@
|
||||
/***************
|
||||
* ProgressBar *
|
||||
***************/
|
||||
|
||||
GtkProgressBar {
|
||||
padding: 1;
|
||||
border-radius: 12;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
GtkProgressBar.progressbar {
|
||||
border-color: none;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@progressbar_gr_color_a),
|
||||
to (@progressbar_gr_color_b));
|
||||
}
|
||||
|
||||
GtkProgressBar.progressbar.vertical {
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
right top,
|
||||
from (@progressbar_gr_color_a),
|
||||
to (@progressbar_gr_color_b));
|
||||
}
|
||||
|
||||
GtkProgressBar.trough {
|
||||
border-color: @border_trough_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@trough_gr_color_a),
|
||||
to (@trough_gr_color_b));
|
||||
}
|
||||
|
||||
GtkProgressBar.trough.vertical {
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
right top,
|
||||
from (@trough_gr_color_a),
|
||||
to (@trough_gr_color_b));
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
/*********
|
||||
* Radio *
|
||||
*********/
|
||||
|
||||
GtkRadioButton {
|
||||
-GtkCheckButton-indicator-size: 17;
|
||||
-GtkCheckMenuItem-indicator-size: 17;
|
||||
}
|
||||
|
||||
GtkRadioButton:selected {
|
||||
background-color: shade (@bg_color, 0.95);
|
||||
}
|
||||
|
||||
.radio,
|
||||
.radio row:selected,
|
||||
.radio row:selected:focused {
|
||||
background-image: url("data/radio.png");
|
||||
}
|
||||
|
||||
.radio:insensitive,
|
||||
.radio row:selected:insensitive,
|
||||
.radio row:selected:focused:insensitive {
|
||||
background-image: url("data/radio-inconsistent.png");
|
||||
}
|
||||
|
||||
.radio:active,
|
||||
.radio row:selected:active,
|
||||
.radio row:selected:focused:active {
|
||||
background-image: url("data/radio-active.png");
|
||||
}
|
||||
|
||||
.radio:active:insensitive,
|
||||
.radio row:selected:active:insensitive,
|
||||
.radio row:selected:focused:active:insensitive {
|
||||
background-image: url("data/radio-active-inconsistent.png");
|
||||
}
|
@ -0,0 +1,71 @@
|
||||
/*********
|
||||
* Scale *
|
||||
*********/
|
||||
|
||||
GtkScale {
|
||||
-GtkScale-slider-length: 12;
|
||||
-GtkRange-slider-width: 12;
|
||||
-GtkRange-trough-border: 0;
|
||||
|
||||
border-style: solid;
|
||||
border-radius: 12;
|
||||
}
|
||||
|
||||
GtkScale.slider {
|
||||
border-color: @border_color;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@slider_gr_color_a),
|
||||
to (@slider_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScale.slider:hover,
|
||||
GtkScale.slider:active {
|
||||
border-color: @border_hover_color;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@slider_hover_gr_color_a),
|
||||
to (@slider_hover_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScale.slider.vertical {
|
||||
border-color: @border_color;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@slider_gr_color_a),
|
||||
to (@slider_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScale.slider.vertical:hover,
|
||||
GtkScale.slider.vertical:active {
|
||||
border-color: @border_hover_color;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@slider_hover_gr_color_a),
|
||||
to (@slider_hover_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScale.trough {
|
||||
border-color: @border_trough_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@trough_gr_color_a),
|
||||
to (@trough_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScale.trough.vertical {
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
right top,
|
||||
from (@trough_gr_color_a),
|
||||
to (@trough_gr_color_b));
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
/*************
|
||||
* Scrollbar *
|
||||
*************/
|
||||
|
||||
GtkScrollbar {
|
||||
-GtkRange-arrow-scaling: 0.8;
|
||||
-GtkRange-slider-width: 12;
|
||||
-GtkRange-stepper-size: 12;
|
||||
-GtkScrollbar-min-slider-length: 30;
|
||||
|
||||
-GtkRange-stepper-spacing: 1;
|
||||
-GtkRange-trough-under-steppers: 0;
|
||||
|
||||
border-style: solid;
|
||||
border-radius: 6;
|
||||
}
|
||||
|
||||
GtkScrollbar.trough {
|
||||
border-color: @border_trough_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@trough_gr_color_a),
|
||||
to (@trough_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScrollbar.slider {
|
||||
border-color: @border_trough_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@slider_gr_color_a),
|
||||
to (@slider_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScrollbar.slider:hover,
|
||||
GtkScrollbar.slider:active {
|
||||
border-color: @border_hover_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@slider_hover_gr_color_a),
|
||||
to (@slider_hover_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScrollbar.trough.vertical {
|
||||
border-color: @border_trough_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
right top,
|
||||
from (@trough_gr_color_a),
|
||||
to (@trough_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScrollbar.slider.vertical {
|
||||
border-color: @border_trough_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
right top,
|
||||
from (@slider_gr_color_a),
|
||||
to (@slider_gr_color_b));
|
||||
}
|
||||
|
||||
GtkScrollbar.slider.vertical:hover,
|
||||
GtkScrollbar.slider.vertical:active {
|
||||
border-color: @border_hover_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
right top,
|
||||
from (@slider_hover_gr_color_a),
|
||||
to (@slider_hover_gr_color_b));
|
||||
}
|
||||
|
||||
.scrollbar.button,
|
||||
.scrollbar.button:prelight,
|
||||
.scrollbar.button:active,
|
||||
.scrollbar.button:insensitive {
|
||||
background-color: @bg_color;
|
||||
border-style: none;
|
||||
background-image: none;
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
/**************
|
||||
* SpinButton *
|
||||
**************/
|
||||
|
||||
GtkSpinButton.button,
|
||||
GtkSpinButton.button:insensitive,
|
||||
GtkSpinButton.button:prelight,
|
||||
GtkSpinButton.button:active,
|
||||
GtkSpinButton.button:focused {
|
||||
border-color: @border_color;
|
||||
border-style: solid;
|
||||
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@button_gr_color_a),
|
||||
to (@button_gr_color_b));
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
/*********
|
||||
* Switch *
|
||||
**********/
|
||||
|
||||
GtkSwitch {
|
||||
padding: 1;
|
||||
border-radius: 12;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
GtkSwitch.slider {
|
||||
border-color: @progressbar_border_active_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@progressbar_gr_color_a),
|
||||
to (@progressbar_gr_color_b));
|
||||
}
|
||||
|
||||
GtkSwitch.trough {
|
||||
border-color: @border_trough_color;
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (@trough_gr_color_a),
|
||||
to (@trough_gr_color_b));
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
/***********
|
||||
* toolbar *
|
||||
***********/
|
||||
|
||||
.toolbar {
|
||||
background-image: -gtk-gradient (linear,
|
||||
left top,
|
||||
left bottom,
|
||||
from (#E0E0E0),
|
||||
to (#C0C0C0));
|
||||
-GtkWidget-window-dragging: true;
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
/**************
|
||||
* Workaround *
|
||||
**************/
|
||||
|
||||
.separator {
|
||||
-GtkWidget-wide-separators: 1;
|
||||
-GtkWidget-separator-width: 1;
|
||||
border-style: solid;
|
||||
border-color: #BFBFBF;
|
||||
}
|
||||
|
||||
.background {
|
||||
border-width: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
border-radius: 2 2 0 0;
|
||||
border-style: solid;
|
||||
border-width: 1;
|
||||
border-color: #9DC1E6;
|
||||
|
||||
background-color: @tooltip_bg_color;
|
||||
|
||||
-unico-border-gradient: none;
|
||||
}
|
||||
|
||||
.grip {
|
||||
background-color: @border_color;
|
||||
}
|
||||
|
||||
.pane-separator {
|
||||
color: @fg_color;
|
||||
}
|
||||
|
||||
GtkFrame,
|
||||
GtkCalendar {
|
||||
padding: 2;
|
||||
}
|
||||
|
||||
.frame {
|
||||
color: lighter (@fg_color);
|
||||
border-style: solid;
|
||||
border-width: 1;
|
||||
border-color: alpha (@border_color, 0.5);
|
||||
}
|
||||
|
||||
GtkTreeView {
|
||||
-GtkTreeView-vertical-separator: 0;
|
||||
-GtkTreeView-expander-size: 8;
|
||||
|
||||
-GtkWidget-focus-line-width: 1;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
row {
|
||||
border-width: 0;
|
||||
}
|