Initial upload

master
Christian Medel 2018-05-18 18:04:20 -04:00
parent b1d195ff74
commit 732e442ca0
103 changed files with 4819 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

BIN
gtk-2.0/arrow/arrow-down.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

BIN
gtk-2.0/arrow/arrow-left.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

BIN
gtk-2.0/arrow/arrow-right.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

BIN
gtk-2.0/arrow/arrow-up.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

60
gtk-2.0/button.rc Executable file
View File

@ -0,0 +1,60 @@
########################################################################
# Button
########################################################################
style "button"
{
engine "pixmap"
{
### Button ###
## Normal
image
{
function = BOX
state = NORMAL
file = "button/button.png"
border = {4, 4, 4, 4}
stretch = TRUE
}
## Prelight
image
{
function = BOX
state = PRELIGHT
file = "button/button.png"
border = {4, 4, 4, 4}
stretch = TRUE
}
## Insensitive
image
{
function = BOX
state = INSENSITIVE
file = "button/button-ins.png"
border = {4, 4, 4, 4}
stretch = TRUE
}
## Active
image
{
function = BOX
state = ACTIVE
file = "button/button-pressed.png"
border = {4, 4, 4, 4}
stretch = TRUE
}
### Focus ###
image
{
function = FOCUS
file = "null.png"
}
}
}
class "GtkButton*" style "button"

BIN
gtk-2.0/button/button-ins.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 B

BIN
gtk-2.0/button/button-pressed.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

BIN
gtk-2.0/button/button-spin.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

BIN
gtk-2.0/button/button.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

47
gtk-2.0/c_box.rc Executable file
View File

@ -0,0 +1,47 @@
########################################################################
# Check boxes
########################################################################
style "check_box"
{
### Check box ###
engine "pixmap"
{
image
{
function = CHECK
shadow = OUT
overlay_file = "c_box/c_box.png"
overlay_stretch = FALSE
}
image
{
function = CHECK
shadow = IN
overlay_file = "c_box/c_box-pressed.png"
overlay_stretch = FALSE
}
image
{
function = OPTION
shadow = OUT
overlay_file = "c_box/c_box.png"
overlay_stretch = FALSE
}
image
{
function = OPTION
shadow = IN
overlay_file = "c_box/c_box-pressed.png"
overlay_stretch = FALSE
}
}
}
class "GtkCheckButton*" style "check_box"
class "GtkCheckMenuItem*" style "check_box"
class "GtkTreeView*" style "check_box"

BIN
gtk-2.0/c_box/c_box-pressed.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

BIN
gtk-2.0/c_box/c_box.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 B

35
gtk-2.0/entry.rc Executable file
View File

@ -0,0 +1,35 @@
########################################################################
# Entry
########################################################################
style "entry"
{
GtkWidget::interior_focus = 0
GtkEntry::inner-border = {1, 1, 1, 1}
engine "pixmap"
{
### Entry ###
image
{
function = SHADOW
detail = "entry"
file = "entry/entry.png"
border = {2, 2, 2, 2}
stretch = TRUE
}
### Focus ###
image
{
function = FOCUS
detail = "entry"
file = "entry/entry-active.png"
border = {2, 2, 2, 2}
stretch = TRUE
}
}
}
class "GtkEntry*" style "entry"

BIN
gtk-2.0/entry/entry-active.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 B

BIN
gtk-2.0/entry/entry.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

62
gtk-2.0/gtkrc Executable file
View File

@ -0,0 +1,62 @@
########################################################################
# Beos-r5
# Andrey Tverdov 2010
# GPL2
########################################################################
gtk_color_scheme = "fg_color:#000\nbg_color:#D8D8D8\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#989898\nselected_fg_color:#000\ntooltip_bg_color:#ffffe1\ntooltip_fg_color:#000"
gtk-icon-sizes ="gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-button=16,16"
include "scrollbar.rc"
include "scale.rc"
include "notebook.rc"
include "button.rc"
include "radio.rc"
include "c_box.rc"
include "progressbar.rc"
include "statusbar.rc"
include "entry.rc"
include "menubar.rc"
include "spin.rc"
style "default"
{
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = shade (0.7,@bg_color)
fg[NORMAL] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
bg[ACTIVE] = @bg_color
bg[INSENSITIVE] = @bg_color
bg[NORMAL] = @bg_color
bg[PRELIGHT] = @bg_color
bg[SELECTED] = @selected_bg_color
base[ACTIVE] = @selected_bg_color
base[INSENSITIVE] = @bg_color
base[NORMAL] = @base_color
base[PRELIGHT] = @selected_bg_color
base[SELECTED] = @selected_bg_color
text[ACTIVE] = shade (0.9,@selected_fg_color)
text[INSENSITIVE] = shade (0.7,@bg_color)
text[NORMAL] = @text_color
text[PRELIGHT] = @selected_fg_color
text[SELECTED] = @selected_fg_color
engine "clearlooks"
{
radius = 0.0
}
}
class "GtkWidget" style "default"
style "tooltips" = "default"
{
bg[NORMAL] = "#FFFCDB"
fg[NORMAL] = "#000000"
}
widget "gtk-tooltips*" style "tooltips"

99
gtk-2.0/menubar.rc Executable file
View File

@ -0,0 +1,99 @@
########################################################################
# Menubar
########################################################################
style "menubar"
{
### Menubar ###
engine "pixmap"
{
image
{
function = BOX
file = "menubar/menubar.png"
border = {3, 3, 3, 3}
stretch = TRUE
}
}
}
class "GtkMenuBar*" style "menubar"
style "menuitem"
{
### Menu item ###
engine "pixmap"
{
image
{
function = BOX
file = "menubar/menuitem.png"
border = {3, 3, 3, 3}
stretch = TRUE
}
### H line ###
image
{
function = HLINE
file = "menubar/line-h.png"
border = {0, 0, 0, 0}
stretch = TRUE
}
### V line ###
image
{
function = VLINE
file = "menubar/line-v.png"
border = {0, 0, 0, 0}
stretch = TRUE
}
### Arrow UP ###
image
{
function = ARROW
overlay_file = "/arrow/arrow-up.png"
overlay_border = {3,3,3,3}
overlay_stretch = FALSE
arrow_direction = UP
}
### Arrow DOWN ###
image
{
function = ARROW
overlay_file = "/arrow/arrow-down.png"
overlay_border = {3,3,3,3}
overlay_stretch = FALSE
arrow_direction = DOWN
}
### Arrow LEFT ###
image
{
function = ARROW
overlay_file = "/arrow/arrow-left.png"
overlay_border = {3,3,3,3}
overlay_stretch = FALSE
arrow_direction = LEFT
}
### Arrow RIGHT ###
image
{
function = ARROW
overlay_file = "/arrow/arrow-right.png"
overlay_border = {3,3,3,3}
overlay_stretch = FALSE
arrow_direction = RIGHT
}
}
}
class "GtkMenuItem*" style "menuitem"
class "GtkImageMenuItem*" style "menuitem"
class "GtkTearoffMenuItem*" style "menuitem"
class "GtkItem*" style "menuitem"

BIN
gtk-2.0/menubar/line-h.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 B

BIN
gtk-2.0/menubar/line-v.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

BIN
gtk-2.0/menubar/menubar.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 B

BIN
gtk-2.0/menubar/menuitem.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

187
gtk-2.0/notebook.rc Executable file
View File

@ -0,0 +1,187 @@
########################################################################
# Notebook
########################################################################
style "notebook"
{
engine "pixmap"
{
### Notebook ###
image
{
function = BOX
file = "notebook/notebook.png"
border = {8, 8, 8, 8}
stretch = TRUE
}
### Tab TOP ###
## Normal
image
{
function = EXTENSION
state = ACTIVE
file = "notebook/tab-top.png"
border = {4, 4, 4, 4}
stretch = TRUE
gap_side = BOTTOM
}
## Active
image
{
function = EXTENSION
file = "notebook/tab-top-active.png"
border = {8, 8, 8, 8}
stretch = TRUE
gap_side = BOTTOM
}
### Tab BOTTOM ###
## Normal
image
{
function = EXTENSION
state = ACTIVE
file = "notebook/tab-bottom.png"
border = {4, 4, 4, 4}
stretch = TRUE
gap_side = TOP
}
## Active
image
{
function = EXTENSION
file = "notebook/tab-bottom-active.png"
border = {8, 8, 8, 8}
stretch = TRUE
gap_side = TOP
}
### Tab LEFT ###
## Normal
image
{
function = EXTENSION
state = ACTIVE
file = "notebook/tab-left.png"
border = {8,8,8,8}
stretch = TRUE
gap_side = RIGHT
}
## Active
image
{
function = EXTENSION
file = "notebook/tab-left-active.png"
border = {8, 8, 8, 8}
stretch = TRUE
gap_side = RIGHT
}
### Tab RIGHT ###
## Normal
image
{
function = EXTENSION
state = ACTIVE
file = "notebook/tab-right.png"
border = {4, 4, 4, 4}
stretch = TRUE
gap_side = LEFT
}
## Active
image
{
function = EXTENSION
file = "notebook/tab-right-active.png"
border = {8, 8, 8, 8}
stretch = TRUE
gap_side = LEFT
}
### Gap TOP ###
image
{
function = BOX_GAP
file = "notebook/notebook.png"
border = {8, 8, 8, 8}
stretch = TRUE
gap_file = "notebook/top-gap.png"
gap_border = {4, 4, 0, 0}
gap_start_file = "null.png"
gap_start_border = {0, 0, 0, 0}
gap_end_file = "null.png"
gap_end_border = {0, 0, 0, 0}
gap_side = TOP
}
### Gap BOTTOM ###
image
{
function = BOX_GAP
file = "notebook/notebook.png"
border = {8, 8, 8, 8}
stretch = TRUE
gap_file = "notebook/bottom-gap.png"
gap_border = {4, 4, 0, 0}
gap_start_file = "null.png"
gap_start_border = {0, 0, 0, 0}
gap_end_file = "null.png"
gap_end_border = {0, 0, 0, 0}
gap_side = BOTTOM
}
### Gap LEFT ###
image
{
function = BOX_GAP
file = "notebook/notebook.png"
border = {8, 8, 8, 8}
stretch = TRUE
gap_file = "notebook/left-gap.png"
gap_border = {0, 0, 4, 4}
gap_start_file = "null.png"
gap_start_border = {0, 0, 0, 0}
gap_end_file = "null.png"
gap_end_border = {0, 0, 0, 0}
gap_side = LEFT
}
### Gap RIGHT ###
image
{
function = BOX_GAP
file = "notebook/notebook.png"
border = {8, 8, 8, 8}
stretch = TRUE
gap_file = "notebook/right-gap.png"
gap_border = {0, 0, 4, 4}
gap_start_file = "null.png"
gap_start_border = {0, 0, 0, 0}
gap_end_file = "null.png"
gap_end_border = {0, 0, 0, 0}
gap_side = RIGHT
}
### Focus ###
image
{
function = FOCUS
file = "null.png"
border = {1, 1, 1, 1}
stretch = TRUE
}
}
}
class "GtkNotebook*" style "notebook"

BIN
gtk-2.0/notebook/bottom-gap.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 B

BIN
gtk-2.0/notebook/left-gap.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 B

BIN
gtk-2.0/notebook/notebook.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

BIN
gtk-2.0/notebook/right-gap.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

BIN
gtk-2.0/notebook/tab-bottom.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B

BIN
gtk-2.0/notebook/tab-left.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

BIN
gtk-2.0/notebook/tab-right.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

BIN
gtk-2.0/notebook/tab-top.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

BIN
gtk-2.0/notebook/top-gap.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 B

BIN
gtk-2.0/null.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 B

78
gtk-2.0/progressbar.rc Executable file
View File

@ -0,0 +1,78 @@
########################################################################
# Progressbar
########################################################################
style "progressbar"
{
GtkProgressBar ::shadow-type = GTK_SHADOW_NONE
bg[NORMAL] = "#ffffff" # Color of sorted columns
bg[SELECTED] = @selected_bg_color
engine "pixmap"
{
### Trough ###
image
{
function = BOX
detail = "trough"
file = "progressbar/trough.png"
border = {2, 2, 2, 2}
stretch = TRUE
orientation = HORIZONTAL
}
image
{
function = BOX
detail = "trough"
file = "progressbar/trough.png"
border = {2, 2, 2, 2}
stretch = TRUE
orientation = VERTICAL
}
image
{
function = SHADOW
shadow = IN
file = "progressbar/trough-tree.png"
border = {2, 2, 2, 2}
stretch = TRUE
}
### Progress ###
image
{
function = BOX
detail = "bar"
file = "progressbar/progressbar-horiz.png"
border = {2, 2, 2, 2}
stretch = TRUE
orientation = HORIZONTAL
}
image
{
function = BOX
detail = "bar"
file = "progressbar/progressbar-vert.png"
border = {2, 2, 2, 2}
stretch = TRUE
orientation = VERTICAL
}
image
{
function = BOX
state = SELECTED
border = {2, 2, 2, 2}
file = "progressbar/progressbar-horiz.png"
stretch = TRUE
}
}
}
class "GtkProgressBar*" style "progressbar"
class "GtkTreeView*" style "progressbar"

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 B

BIN
gtk-2.0/progressbar/trough.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

47
gtk-2.0/radio.rc Executable file
View File

@ -0,0 +1,47 @@
########################################################################
# Radio buttons
########################################################################
style "radio_button"
{
### Radio button ###
engine "pixmap"
{
image
{
function = CHECK
shadow = OUT
overlay_file = "radio/radio.png"
overlay_stretch = FALSE
}
image
{
function = CHECK
shadow = IN
overlay_file = "radio/radio-pressed.png"
overlay_stretch = FALSE
}
image
{
function = OPTION
shadow = OUT
overlay_file = "radio/radio.png"
overlay_stretch = FALSE
}
image
{
function = OPTION
shadow = IN
overlay_file = "radio/radio-pressed.png"
overlay_stretch = FALSE
}
}
}
class "GtkRadio*" style "radio_button"
class "GtkRadioMenuItem*" style "radio_button"
class "GtkTreeView*" style "radio_button"

BIN
gtk-2.0/radio/radio-pressed.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 B

BIN
gtk-2.0/radio/radio.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

63
gtk-2.0/scale.rc Executable file
View File

@ -0,0 +1,63 @@
########################################################################
# Scale
########################################################################
style "scale"
{
GtkRange::slider_width = 16
engine "pixmap"
{
### Trough ###
image
{
function = BOX
detail = "trough"
file = "scale/trough-horiz.png"
border = {19, 19, 5, 6}
stretch = TRUE
overlay_file = "scale/trough-horiz-mid.png"
overlay_stretch = FALSE
orientation = HORIZONTAL
}
image
{
function = BOX
detail = "trough"
file = "scale/trough-vert.png"
border = {5, 6, 19, 19}
stretch = TRUE
overlay_file = "scale/trough-vert-mid.png"
overlay_stretch = FALSE
orientation = VERTICAL
}
### Slider ###
image
{
function = SLIDER
overlay_file = "scale/slider-horiz.png"
overlay_stretch = FALSE
orientation = HORIZONTAL
}
image
{
function = SLIDER
overlay_file = "scale/slider-vert.png"
overlay_stretch = FALSE
orientation = VERTICAL
}
### Focus ###
image
{
function = FOCUS
file = "null.png"
}
}
}
class "GtkRange*" style "scale"

BIN
gtk-2.0/scale/slider-horiz.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

BIN
gtk-2.0/scale/slider-vert.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 B

BIN
gtk-2.0/scale/trough-horiz.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 B

BIN
gtk-2.0/scale/trough-vert-mid.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 B

BIN
gtk-2.0/scale/trough-vert.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

232
gtk-2.0/scrollbar.rc Executable file
View File

@ -0,0 +1,232 @@
########################################################################
# Scrollbar
########################################################################
style "scrollbar"
{
GtkRange::slider-width = 13
GtkRange::stepper-size = 15
GtkCheckButtonClass::indicator-size = 13
GtkRadioButtonClass::indicator-size = 13
GtkScrollbar::min_slider_length = 44
engine "pixmap"
{
### Trough ###
image
{
function = BOX
detail = "trough"
file = "scrollbar/trough-v.png"
border = {2, 2, 2, 2}
stretch = TRUE
orientation = VERTICAL
}
image
{
function = BOX
detail = "trough"
file = "scrollbar/trough-h.png"
border = {2, 2, 2, 2}
stretch = TRUE
orientation = HORIZONTAL
}
### Scrollbar ###
image
{
function = SLIDER
file = "scrollbar/scrollbar_horizontal.png"
border = {3, 3, 3, 3}
stretch = TRUE
overlay_file = "scrollbar/thumb-h.png"
overlay_stretch = FALSE
orientation = HORIZONTAL
}
image
{
function = SLIDER
file = "scrollbar/scrollbar_vertical.png"
border = {3, 3, 3, 3}
stretch = TRUE
overlay_file = "scrollbar/thumb-v.png"
overlay_stretch = FALSE
orientation = VERTICAL
}
### Arrow UP ###
## Normal
image
{
function = ARROW
state = NORMAL
overlay_file = "scrollbar/arrow_up.png"
overlay_stretch = FALSE
arrow_direction = UP
}
## Prelight
image
{
function = ARROW
state = PRELIGHT
overlay_file = "scrollbar/arrow_up.png"
overlay_stretch = FALSE
arrow_direction = UP
}
## Insensitive
image
{
function = ARROW
state = INSENSITIVE
overlay_file = "scrollbar/arrow_up.png"
overlay_stretch = FALSE
arrow_direction = UP
}
## Active
image
{
function = ARROW
state = ACTIVE
overlay_file = "scrollbar/arrow_up_clicked.png"
overlay_stretch = FALSE
arrow_direction = UP
}
### Arrow DOWN ###
## Normal
image
{
function = ARROW
state = NORMAL
overlay_file = "scrollbar/arrow_down.png"
overlay_stretch = FALSE
arrow_direction = DOWN
}
## Prelight
image
{
function = ARROW
state = PRELIGHT
overlay_file = "scrollbar/arrow_down.png"
overlay_stretch = FALSE
arrow_direction = DOWN
}
## Insensitive
image
{
function = ARROW
state = INSENSITIVE
overlay_file = "scrollbar/arrow_down.png"
overlay_stretch = FALSE
arrow_direction = DOWN
}
## Active
image
{
function = ARROW
state = ACTIVE
overlay_file = "scrollbar/arrow_down_clicked.png"
overlay_stretch = FALSE
arrow_direction = DOWN
}
### Arrow LEFT ###
## Normal
image
{
function = ARROW
state = NORMAL
overlay_file = "scrollbar/arrow_left.png"
overlay_stretch = FALSE
arrow_direction = LEFT
}
## Prelight
image
{
function = ARROW
state = PRELIGHT
overlay_file = "scrollbar/arrow_left.png"
overlay_stretch = FALSE
arrow_direction = LEFT
}
## Insensitive
image
{
function = ARROW
state = INSENSITIVE
overlay_file = "scrollbar/arrow_left.png"
overlay_stretch = FALSE
arrow_direction = LEFT
}
## Active
image
{
function = ARROW
state = ACTIVE
overlay_file = "scrollbar/arrow_left_clicked.png"
overlay_stretch = FALSE
arrow_direction = LEFT
}
### Arrow RIGHT ###
## Normal
image
{
function = ARROW
state = NORMAL
overlay_file = "scrollbar/arrow_right.png"
overlay_stretch = FALSE
arrow_direction = RIGHT
}
## Prelight
image
{
function = ARROW
state = PRELIGHT
overlay_file = "scrollbar/arrow_right.png"
overlay_stretch = FALSE
arrow_direction = RIGHT
}
## Insensitive
image
{
function = ARROW
state = INSENSITIVE
overlay_file = "scrollbar/arrow_right.png"
overlay_stretch = FALSE
arrow_direction = RIGHT
}
## Active
image
{
function = ARROW
state = ACTIVE
overlay_file = "scrollbar/arrow_right_clicked.png"
overlay_stretch = FALSE
arrow_direction = RIGHT
}
}
}
class "GtkScrollbar*" style "scrollbar"

BIN
gtk-2.0/scrollbar/arrow_down.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

BIN
gtk-2.0/scrollbar/arrow_left.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

BIN
gtk-2.0/scrollbar/arrow_right.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 365 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 B

BIN
gtk-2.0/scrollbar/arrow_up.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

BIN
gtk-2.0/scrollbar/thumb-h.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

BIN
gtk-2.0/scrollbar/thumb-v.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

BIN
gtk-2.0/scrollbar/trough-h.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

BIN
gtk-2.0/scrollbar/trough-v.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 B

110
gtk-2.0/spin.rc Executable file
View File

@ -0,0 +1,110 @@
########################################################################
# Spinbox
########################################################################
style "spinbutton"
{
engine "pixmap"
{
### Spinbutton ###
image
{
function = BOX
detail = "spinbutton"
file = "button/button-spin.png"
border = {2, 2, 2, 2}
stretch = TRUE
}
### Arrow UP ###
image
{
function = ARROW
}
## Normal
image
{
function = BOX
state = NORMAL
detail = "spinbutton_up"
overlay_file = "arrow/arrow-up.png"
overlay_stretch = FALSE
}
## Prelight
image
{
function = BOX
state = PRELIGHT
detail = "spinbutton_up"
overlay_file = "arrow/arrow-up.png"
overlay_stretch = FALSE
}
## Insensitive
image
{
function = BOX
state = INSENSITIVE
detail = "spinbutton_up"
overlay_file = "arrow/arrow-up-disable.png"
overlay_stretch = FALSE
}
## Active
image
{
function = BOX
state = ACTIVE
detail = "spinbutton_up"
overlay_file = "arrow/arrow-up.png"
overlay_stretch = FALSE
}
### Arrow DOWN ###
## Normal
image
{
function = BOX
state = NORMAL
detail = "spinbutton_down"
overlay_file = "arrow/arrow-down.png"
overlay_stretch = FALSE
}
## Prelight
image
{
function = BOX
state = PRELIGHT
detail = "spinbutton_down"
overlay_file = "arrow/arrow-down.png"
overlay_stretch = FALSE
}
## Insensitive
image
{
function = BOX
state = INSENSITIVE
detail = "spinbutton_down"
overlay_file = "arrow/arrow-down-disable.png"
overlay_stretch = FALSE
}
## Active
image
{
function = BOX
state = ACTIVE
detail = "spinbutton_down"
overlay_file = "arrow/arrow-down.png"
overlay_stretch = FALSE
}
}
}
class "GtkSpinButton*" style "spinbutton"

20
gtk-2.0/statusbar.rc Executable file
View File

@ -0,0 +1,20 @@
########################################################################
# Statusbar
########################################################################
style "statusbar"
{
engine "pixmap"
{
### Statusbsr ###
image
{
function = RESIZE_GRIP
detail = "statusbar"
overlay_file = "statusbar/resizer.png"
overlay_stretch = FALSE
}
}
}
class "GtkStatusbar*" style "statusbar"

BIN
gtk-2.0/statusbar/resizer.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,5 @@
vte-terminal.terminal-screen {
-TerminalScreen-background-darkness: 0.95;
background-color: #000;
color: #fff;
}

112
gtk-3.0/apps/unity.css Executable file
View File

@ -0,0 +1,112 @@
UnityDecoration {
-UnityDecoration-extents: 28px 4px 4px 4px;
-UnityDecoration-input-extents: 10px;
-UnityDecoration-shadow-offset-x: 1px;
-UnityDecoration-shadow-offset-y: 1px;
-UnityDecoration-active-shadow-color: rgba(0,0,0,0.7);
-UnityDecoration-active-shadow-radius: 8px;
-UnityDecoration-inactive-shadow-color: rgba(0,0,0,0.5);
-UnityDecoration-inactive-shadow-radius: 5px;
-UnityDecoration-glow-size: 10px;
-UnityDecoration-glow-color: @theme_selected_bg_color;
-UnityDecoration-title-indent: 10px;
-UnityDecoration-title-fade: 35px;
-UnityDecoration-title-alignment: 0.0;
}
UnityDecoration .top {
border: 0 solid @titlebar_bg_color;
border-bottom-width: 0;
border-radius: 0px;
padding: 1px 8px 0 8px;
background-color: @titlebar_bg_color;
background-image: url('../window/titlebar.png');
background-position: right;
background-size: 200px 100%;
background-repeat: no-repeat;
color: mix(@titlebar_fg_color, @titlebar_bg_color, 0.1);
text-shadow: none;
}
UnityDecoration .top:backdrop {
border: 0 solid @titlebar_bg_color;
border-bottom-width: 0;
background-color: shade(@titlebar_bg_color, 0.8);
background-image: none;
color: mix(@titlebar_fg_color, @titlebar_bg_color, 0.4);
}
UnityDecoration .left {
background-image: url('../assets/border-focused-left.png');
}
UnityDecoration .right {
background-image: url('../assets/border-focused-right.png');
}
UnityDecoration .bottom {
background-image: url('../assets/border-focused-bottom.png');
}
UnityDecoration .left:backdrop {
background-image: url('../assets/border-unfocused-right.png');
}
UnityDecoration .right:backdrop {
background-image: url('../assets/border-unfocused-left.png');
}
UnityDecoration .bottom:backdrop {
background-image: url('../assets/border-unfocused-bottom.png');
}
UnityPanelWidget,
.unity-panel {
border-width: 0 0 1px 0;
border-style: solid;
border-color: @panel_bg_color;
background-color: @panel_bg_color;
background-image: none;
color: @panel_fg_color;
}
.unity-panel.menubar,
.unity-panel .menubar {
}
.unity-panel.menuitem,
.unity-panel .menuitem {
border-width: 0 1px;
color: @panel_fg_color;
}
.unity-panel.menubar.menuitem:hover,
.unity-panel.menubar .menuitem *:hover {
background-image: none;
color: shade(@panel_fg_color, 1.08);
}
/* new menubar function in unity 7.5 */
UnityDecoration.menuitem,
UnityDecoration .menuitem {
border-radius: 0;
}
UnityDecoration .menuitem:hover,
UnityDecoration .menuitem *:hover,
.unity-panel.menubar.menuitem:hover,
.unity-panel.menubar .menuitem *:hover {
background-image: none;
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
@keyframes playbackmenuitem_spinner {
to { -gtk-icon-transform: rotate(1turn); }
}
.menu IdoPlaybackMenuItem.menuitem:active {
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
animation: playbackmenuitem_spinner 1s infinite linear;
color: @selected_bg_color;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
gtk-3.0/assets/checkbox-mixed.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

BIN
gtk-3.0/assets/radio-mixed.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
gtk-3.0/assets/radio-selected.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

BIN
gtk-3.0/assets/slider-horiz.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

BIN
gtk-3.0/assets/slider-vert.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

BIN
gtk-3.0/assets/thumb-h.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 B

BIN
gtk-3.0/assets/thumb-v.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 B

View File

@ -0,0 +1,118 @@
/*******************
* check and radio *
*******************/
check,
check row:selected,
check row:selected:focus {
padding: 4px;
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png"));
}
check:disabled,
check row:selected:disabled,
check row:selected:focus:disabled {
-gtk-icon-source: url("assets/checkbox-unchecked-insensitive.png");
}
check:active, check:checked,
check row:selected:active, check row:selected:checked,
check row:selected:focus:active, check row:selected:focus:checked {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png"));
}
check:active:disabled, check:checked:disabled,
check row:selected:active:disabled, check row:selected:checked:disabled,
check row:selected:focus:active:disabled, check row:selected:focus:checked:disabled {
-gtk-icon-source: url("assets/checkbox-checked-insensitive.png");
}
check:indeterminate,
check row:selected:indeterminate,
check row:selected:focus:indeterminate {
-gtk-icon-source: url("assets/checkbox-mixed.png");
}
check:indeterminate:disabled,
check row:selected:indeterminate:disabled,
check row:selected:focus:indeterminate:disabled {
-gtk-icon-source: url("assets/checkbox-mixed-insensitive.png");
}
radio,
radio row:selected,
radio row:selected:focus {
padding: 4px;
-gtk-icon-source: url("assets/radio-unselected.png");
}
radio:disabled,
radio row:selected:disabled,
radio row:selected:focus:disabled {
-gtk-icon-source: url("assets/radio-unselected-insensitive.png");
}
radio:active, radio:checked,
radio row:selected:active, radio row:selected:checked,
radio row:selected:focus:active, radio row:selected:focus:checked {
-gtk-icon-source: url("assets/radio-selected.png");
}
radio:active:disabled, radio:checked:disabled,
radio row:selected:active:disabled, radio row:selected:checked:disabled,
radio row:selected:focus:active:disabled, radio row:selected:focus:checked:disabled {
-gtk-icon-source: url("assets/radio-selected-insensitive.png");
}
radio:indeterminate,
radio row:selected:indeterminate,
radio row:selected:focus:indeterminate {
-gtk-icon-source: url("assets/radio-mixed.png");
}
radio:indeterminate:disabled,
radio row:selected:indeterminate:disabled,
radio row:selected:focus:indeterminate:disabled {
-gtk-icon-source: url("assets/radio-mixed-insensitive.png");
}
/**************************
* menuitem check & radio *
**************************/
menuitem check {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"));
color: @theme_fg_color;
-gtk-icon-shadow: none;
}
menuitem check:active, menuitem check:checked {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"));
}
menuitem check:indeterminate {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"));
}
menuitem check:active:hover {
color: @theme_selected_fg_color;
}
menuitem check:disabled {
color: @insensitive_fg_color;
}
menuitem radio {
-gtk-icon-source: -gtk-scaled(url("assets/radio-unselected.png"));
color: @theme_fg_color;
-gtk-icon-shadow: none;
}
menuitem radio:active, menuitem radio:checked {
-gtk-icon-source: -gtk-scaled(url("assets/radio-selected.png"));
}
menuitem radio:indeterminate {
-gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"));
}
menuitem radio:hover {
color: @theme_selected_fg_color;
}
menuitem radio:disabled {
color: @insensitive_fg_color;
}

3445
gtk-3.0/gtk-widgets.css Normal file

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More