Fuxx
This commit is contained in:
parent
8268fba83d
commit
7ed2a6e110
9565 changed files with 1315332 additions and 90 deletions
37
themes/gtk/Dracula/gtk-3.0/widgets/app-notifications.css
Executable file
37
themes/gtk/Dracula/gtk-3.0/widgets/app-notifications.css
Executable file
|
@ -0,0 +1,37 @@
|
|||
/*********************
|
||||
* app notifications *
|
||||
*********************/
|
||||
.app-notification {
|
||||
border-style: solid;
|
||||
border-color: shade(@header_bg_color, 0.9);
|
||||
border-width: 0 1px 1px 1px;
|
||||
border-bottom-right-radius: 5px;
|
||||
border-bottom-left-radius: 5px;
|
||||
padding: 8px;
|
||||
background-color: alpha(@header_bg_color,0.95);
|
||||
background-image: none;
|
||||
color: @header_fg_color;
|
||||
}
|
||||
|
||||
.app-notification .button,
|
||||
.app-notification .button:hover {
|
||||
background-color: @cyan;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.app-notification .button:active,
|
||||
.app-notification .button:hover:active {
|
||||
background-color: shade(@cyan,0.9);
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.app-notification .button.flat {
|
||||
background-color: transparent;
|
||||
color: @header_fg_color;
|
||||
}
|
||||
|
||||
.app-notification .button.flat:hover,
|
||||
.app-notification .button.flat:hover:active {
|
||||
background-color: transparent;
|
||||
color: @red;
|
||||
}
|
16
themes/gtk/Dracula/gtk-3.0/widgets/assistant.css
Executable file
16
themes/gtk/Dracula/gtk-3.0/widgets/assistant.css
Executable file
|
@ -0,0 +1,16 @@
|
|||
/*************
|
||||
* assistant *
|
||||
*************/
|
||||
GtkAssistant .sidebar .highlight {
|
||||
font: bold;
|
||||
}
|
||||
|
||||
GtkAssistant .sidebar {
|
||||
padding: 4px;
|
||||
border-width: 0 1px 0 0;
|
||||
border-style: solid;
|
||||
border-right-color: shade(@theme_bg_color, 0.8);
|
||||
border-radius: 0;
|
||||
background-color: @theme_bg_color;
|
||||
color: mix(@theme_fg_color, @theme_bg_color, 0.1);
|
||||
}
|
306
themes/gtk/Dracula/gtk-3.0/widgets/button.css
Executable file
306
themes/gtk/Dracula/gtk-3.0/widgets/button.css
Executable file
|
@ -0,0 +1,306 @@
|
|||
/**********
|
||||
* button *
|
||||
**********/
|
||||
.button {
|
||||
padding: 6px 8px;
|
||||
border-radius: 3px;
|
||||
/* border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: transparent;
|
||||
border-top-color: alpha(white,0.2);
|
||||
border-bottom-color: alpha(black,0.2);*/
|
||||
background-color: @base_color;
|
||||
background-image: none;
|
||||
color: @text_color;
|
||||
font: bold;
|
||||
|
||||
-GtkWidget-focus-padding: 1;
|
||||
-GtkWidget-focus-line-width: 0;
|
||||
}
|
||||
|
||||
.notebook .button,
|
||||
.list .button,
|
||||
.view .button {
|
||||
border-color: alpha(black,0.2);
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
border-color: transparent;
|
||||
border-top-color: alpha(white,0.2);
|
||||
border-bottom-color: alpha(black,0.2);
|
||||
background-color: @selected_bg_color;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.button:active,
|
||||
.button:active:hover,
|
||||
.button:checked:checked {
|
||||
border-color: transparent;
|
||||
border-top-color: alpha(white,0.2);
|
||||
border-bottom-color: alpha(black,0.2);
|
||||
background-color: shade(@selected_bg_color, 0.9);
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.button:insensitive {
|
||||
background-color: mix(@bg_color,@base_color, 0.5);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
/****************
|
||||
* "flat" button *
|
||||
*****************/
|
||||
.button.flat,
|
||||
.action-bar .button,
|
||||
.inline-toolbar .button,
|
||||
.osd .button,
|
||||
.osd.button {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: @fg_color;
|
||||
font: bold;
|
||||
}
|
||||
|
||||
.button.flat:hover,
|
||||
.action-bar .button:hover,
|
||||
.inline-toolbar .button:hover,
|
||||
.action-bar .button:hover {
|
||||
border: none;
|
||||
transition: color 150ms ease-in;
|
||||
color: @selected_bg_color;
|
||||
}
|
||||
|
||||
.button.flat:active,
|
||||
.button.flat:active:focus,
|
||||
.button.flat:checked,
|
||||
.button.flat:active:checked,
|
||||
.button.flat:active:checked:focus,
|
||||
.action-bar .button:checked,
|
||||
.action-bar .button:active {
|
||||
border: none;
|
||||
transition: color 150ms ease-in;
|
||||
color: shade(@selected_bg_color, 0.9);
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.button.flat:active:hover {
|
||||
border: none;
|
||||
transition: color 150ms ease-in;
|
||||
color: @selected_bg_color;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/****************
|
||||
* linked button *
|
||||
*****************/
|
||||
/* middle button */
|
||||
.linked .entry,
|
||||
.linked .button,
|
||||
.linked .button:active,
|
||||
.linked .button:active:hover,
|
||||
.linked .button:focus,
|
||||
.linked .button:focus:active,
|
||||
.linked .button:insensitive,
|
||||
.linked > GtkComboBox > .button:dir(ltr),
|
||||
.linked > GtkComboBox > .button:dir(ltr):focus {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
|
||||
/* leftmost button */
|
||||
.linked .entry:first-child,
|
||||
.linked .button:first-child,
|
||||
.linked .button:active:first-child,
|
||||
.linked .button:active:hover:first-child,
|
||||
.linked .button:focus:first-child,
|
||||
.linked .button:focus:active:first-child,
|
||||
.linked .button:insensitive:first-child,
|
||||
.linked > GtkComboBox:first-child > .button,
|
||||
.linked > GtkComboBox:first-child > .button:focus {
|
||||
border-right-width: 0;
|
||||
border-radius: 3px;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
/* rightmost button */
|
||||
.linked .entry:last-child,
|
||||
.linked .button:last-child,
|
||||
.linked .button:active:last-child,
|
||||
.linked .button:active:hover:last-child,
|
||||
.linked .button:focus:last-child,
|
||||
.linked .button:focus:active:last-child,
|
||||
.linked .button:insensitive:last-child,
|
||||
.linked > GtkComboBox:last-child > .button,
|
||||
.linked > GtkComboBox:last-child > .button:focus {
|
||||
border-left-width: 0;
|
||||
border-radius: 3px;
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-left-radius: 0;
|
||||
}
|
||||
|
||||
/* linked single button */
|
||||
.linked .entry:only-child,
|
||||
.linked .button:only-child,
|
||||
.linked .button:active:only-child,
|
||||
.linked .button:active:hover:only-child,
|
||||
.linked .button:focus:only-child,
|
||||
.linked .button:focus:active:only-child,
|
||||
.linked .button:insensitive:only-child,
|
||||
.linked.vertical > GtkComboBox:only-child > .button,
|
||||
.linked.vertical > GtkComboBox:only-child > .button:focus {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* middle button (vertical) */
|
||||
.linked.vertical .entry,
|
||||
.linked.vertical .button,
|
||||
.linked.vertical .button:active,
|
||||
.linked.vertical .button:active:hover,
|
||||
.linked.vertical .button:focus,
|
||||
.linked.vertical .button:focus:active,
|
||||
.linked.vertical .button:insensitive,
|
||||
.linked.vertical > GtkComboBox > .button:dir(ltr),
|
||||
.linked.vertical > GtkComboBox > .button:dir(ltr):focus {
|
||||
border-bottom-width: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
/* leftmost button (vertical) */
|
||||
.linked.vertical .entry:first-child,
|
||||
.linked.vertical .button:first-child,
|
||||
.linked.vertical .button:active:first-child,
|
||||
.linked.vertical .button:active:hover:first-child,
|
||||
.linked.vertical .button:focus:first-child,
|
||||
.linked.vertical .button:focus:active:first-child,
|
||||
.linked.vertical .button:insensitive:first-child,
|
||||
.linked.vertical > GtkComboBox:first-child > .button,
|
||||
.linked.vertical > GtkComboBox:first-child > .button:focus {
|
||||
border-bottom-width: 0;
|
||||
border-radius: 3px;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
/* rightmost button (vertical) */
|
||||
.linked.vertical .entry:last-child,
|
||||
.linked.vertical .button:last-child,
|
||||
.linked.vertical .button:active:last-child,
|
||||
.linked.vertical .button:active:hover:last-child,
|
||||
.linked.vertical .button:focus:last-child,
|
||||
.linked.vertical .button:focus:active:last-child,
|
||||
.linked.vertical .button:insensitive:last-child,
|
||||
.linked.vertical > GtkComboBox:last-child > .button,
|
||||
.linked.vertical > GtkComboBox:last-child > .button:focus {
|
||||
border-radius: 3px;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
|
||||
/* linked single button (vertical) */
|
||||
.linked.vertical .entry:only-child,
|
||||
.linked.vertical .button:only-child,
|
||||
.linked.vertical .button:active:only-child,
|
||||
.linked.vertical .button:active:hover:only-child,
|
||||
.linked.vertical .button:focus:only-child,
|
||||
.linked.vertical .button:focus:active:only-child,
|
||||
.linked.vertical .button:insensitive:only-child,
|
||||
.linked.vertical > GtkComboBox:only-child > .button,
|
||||
.linked.vertical > GtkComboBox:only-child > .button:focus {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.linked.vertical .entry:first-child {
|
||||
border: 1px solid alpha(black,0.2);
|
||||
border-bottom-width: 0px;
|
||||
}
|
||||
|
||||
.linked.vertical .entry:last-child {
|
||||
border: 1px solid alpha(black,0.2);
|
||||
}
|
||||
|
||||
/******************************
|
||||
* destructive action buttons *
|
||||
******************************/
|
||||
.destructive-action.button,
|
||||
.titlebar .destructive-action.button {
|
||||
border-color: transparent;
|
||||
border-top-color: alpha(white,0.2);
|
||||
border-bottom-color: alpha(black,0.2);
|
||||
background-color: @error_color;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.destructive-action.button:hover,
|
||||
.titlebar .destructive-action.button:hover{
|
||||
background-color: @error_color;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.destructive-action.button:active,
|
||||
.titlebar .destructive-action.button:active {
|
||||
background-color: shade(@error_color,0.9);
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.destructive-action.button:hover:active,
|
||||
.titlebar .destructive-action.button:hover:active {
|
||||
background-color: shade(@error_color,0.9);
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.destructive-action.button:insensitive,
|
||||
.titlebar .destructive-action.button:insensitive {
|
||||
background-color: mix(@bg_color,@error,0.6);
|
||||
}
|
||||
|
||||
/******************************
|
||||
* suggested action buttons *
|
||||
******************************/
|
||||
.suggested-action.button,
|
||||
.list .suggested-action.button,
|
||||
.titlebar .suggested-action.button {
|
||||
border-color: transparent;
|
||||
border-top-color: alpha(white,0.2);
|
||||
border-bottom-color: alpha(black,0.2);
|
||||
background-color: @cyan;
|
||||
color: @selected_fg_color;
|
||||
|
||||
}
|
||||
|
||||
.suggested-action.button:hover,
|
||||
.list .suggested-action.button:hover,
|
||||
.titlebar .suggested-action.button:hover{
|
||||
background-color: @cyan;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.suggested-action.button:active,
|
||||
.list .suggested-action.button:active,
|
||||
.titlebar .suggested-action.button:active {
|
||||
background-color: shade(@cyan,0.9);
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.suggested-action.button:hover:active,
|
||||
.list .suggested-action.button:hover:active,
|
||||
.titlebar .suggested-action.button:hover:active {
|
||||
background-color: shade(@cyan,0.9);
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.suggested-action.button:insensitive,
|
||||
.titlebar .suggested-action.button:insensitive {
|
||||
background-color: mix(@bg_color,@cyan,0.6);
|
||||
}
|
||||
|
||||
/********************
|
||||
* circular buttons *
|
||||
********************/
|
||||
.circular-button.button {
|
||||
border: none;
|
||||
border-radius: 20px;
|
||||
outline-radius: 20px;
|
||||
box-shadow: inset 0px -1px 0px 0px rgba(0,0,0,0.2),inset 0px 1px 0px 0px rgba(255,255,255,0.2);
|
||||
}
|
35
themes/gtk/Dracula/gtk-3.0/widgets/calendar.css
Executable file
35
themes/gtk/Dracula/gtk-3.0/widgets/calendar.css
Executable file
|
@ -0,0 +1,35 @@
|
|||
/************
|
||||
* Calendar *
|
||||
************/
|
||||
GtkCalendar {
|
||||
padding: 1px 4px 2px 4px;
|
||||
}
|
||||
|
||||
GtkCalendar:inconsistent {
|
||||
color: mix(@fg_color, @bg_color, 0.5);
|
||||
}
|
||||
|
||||
GtkCalendar.view,
|
||||
GtkCalendar.header,
|
||||
GtkCalendar.button,
|
||||
GtkCalendar.button:hover,
|
||||
GtkCalendar.button:insensitive {
|
||||
border-width: 0;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.highlight,
|
||||
GtkCalendar.highlight {
|
||||
border-width: 0;
|
||||
background-color: transparent;
|
||||
color: @selected_bg_color;
|
||||
}
|
||||
|
||||
GtkCalendar:selected {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
GtkCalendar:selected:selected {
|
||||
background-color: @selected_bg_color;
|
||||
}
|
29
themes/gtk/Dracula/gtk-3.0/widgets/cell-row.css
Executable file
29
themes/gtk/Dracula/gtk-3.0/widgets/cell-row.css
Executable file
|
@ -0,0 +1,29 @@
|
|||
/****************
|
||||
* cell and row *
|
||||
****************/
|
||||
.cell {
|
||||
border-width: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.cell:selected,
|
||||
.cell:selected:hover,
|
||||
.cell:selected:focus {
|
||||
background-color: shade(@selected_bg_color, 0.9);
|
||||
background-image: linear-gradient(to bottom,shade(@selected_bg_color, 0.9),shade(@selected_bg_color, 0.9));
|
||||
color: @selected_fg_color;
|
||||
border-color: shade(@selected_bg_color, 0.9);
|
||||
border-width: 1px 0;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
row:selected,
|
||||
row:selected:hover,
|
||||
row:selected:focus {
|
||||
border-style: none;
|
||||
border-color: shade(@selected_bg_color, 0.9);
|
||||
background-color: shade(@selected_bg_color, 0.9);
|
||||
color: @selected_fg_color;
|
||||
background-image: none;
|
||||
font: bold;
|
||||
}
|
17
themes/gtk/Dracula/gtk-3.0/widgets/check-radio.css
Executable file
17
themes/gtk/Dracula/gtk-3.0/widgets/check-radio.css
Executable file
|
@ -0,0 +1,17 @@
|
|||
/*******************
|
||||
* check and radio *
|
||||
*******************/
|
||||
.check,
|
||||
.radio,
|
||||
.check:insensitive,
|
||||
.radio:insensitive {
|
||||
border-style: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
GtkCheckButton:hover,
|
||||
GtkCheckButton:active:hover,
|
||||
GtkCheckButton:selected,
|
||||
GtkCheckButton:selected:focus {
|
||||
background-color: transparent;
|
||||
}
|
91
themes/gtk/Dracula/gtk-3.0/widgets/color-chooser.css
Executable file
91
themes/gtk/Dracula/gtk-3.0/widgets/color-chooser.css
Executable file
|
@ -0,0 +1,91 @@
|
|||
/*****************
|
||||
* color chooser *
|
||||
*****************/
|
||||
GtkColorSwatch,
|
||||
GtkColorSwatch:selected {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: alpha(black, 0.1);
|
||||
border-radius: 1px;
|
||||
background-color: transparent;
|
||||
background-clip: border-box;
|
||||
}
|
||||
|
||||
GtkColorSwatch:hover,
|
||||
GtkColorSwatch:selected:hover {
|
||||
border-color: alpha(black, 0.3);
|
||||
}
|
||||
|
||||
GtkColorSwatch.color-light:selected:hover,
|
||||
GtkColorSwatch.color-dark:selected:hover {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
GtkColorSwatch.left,
|
||||
GtkColorSwatch:first-child {
|
||||
border-top-left-radius: 0px;
|
||||
border-bottom-left-radius: 0px;
|
||||
}
|
||||
|
||||
GtkColorSwatch.right,
|
||||
GtkColorSwatch:last-child {
|
||||
border-top-right-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
}
|
||||
|
||||
GtkColorSwatch:only-child {
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
GtkColorSwatch.top {
|
||||
border-top-left-radius: 0px;
|
||||
border-top-right-radius: 0px;
|
||||
}
|
||||
|
||||
GtkColorSwatch.bottom {
|
||||
border-bottom-left-radius: 0px;
|
||||
border-bottom-right-radius: 0px;
|
||||
}
|
||||
|
||||
GtkColorChooserWidget #add-color-button {
|
||||
background-clip: padding-box;
|
||||
border-color: alpha(black, 0.1);
|
||||
background-color: shade(@theme_bg_color, 0.95);
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
GtkColorChooserWidget #add-color-button:hover {
|
||||
border-color: alpha(black, 0.3);
|
||||
background-color: shade(@theme_bg_color, 0.90);
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.color-active-badge,
|
||||
.color-active-badge:selected {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-width: 2px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.color-active-badge.color-light,
|
||||
.color-active-badge.color-light:hover {
|
||||
border-color: alpha(black, 0.3);
|
||||
color: alpha(black, 0.3);
|
||||
}
|
||||
|
||||
.color-active-badge.color-dark,
|
||||
.color-active-badge.color-dark:hover {
|
||||
border-color: alpha(white, 0.3);
|
||||
color: alpha(white, 0.3);
|
||||
}
|
||||
|
||||
GtkColorEditor GtkColorSwatch {
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
GtkColorEditor GtkColorSwatch.color-dark:hover,
|
||||
GtkColorEditor GtkColorSwatch.color-light:hover {
|
||||
background-image: none;
|
||||
border-color: alpha(black, 0.3);
|
||||
}
|
34
themes/gtk/Dracula/gtk-3.0/widgets/column-header.css
Executable file
34
themes/gtk/Dracula/gtk-3.0/widgets/column-header.css
Executable file
|
@ -0,0 +1,34 @@
|
|||
/*****************
|
||||
* column-header *
|
||||
*****************/
|
||||
column-header .button,
|
||||
column-header .button:active {
|
||||
padding: 3px 8px;
|
||||
border-width: 0 1px 1px 0px;
|
||||
border-radius: 0;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
column-header .button,
|
||||
column-header .button:active,
|
||||
column-header .button:focus,
|
||||
column-header .button:active:focus {
|
||||
border-color: mix(@base_color, black, 0.2);
|
||||
border-bottom-color: mix(@base_color, black, 0.2);
|
||||
background-color: shade(@theme_base_color, 0.97);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
column-header .button:hover,
|
||||
column-header .button:active:hover,
|
||||
column-header .button:hover:focus,
|
||||
column-header .button:active:hover:focus {
|
||||
border-color: mix(@base_color, black, 0.2);
|
||||
background-color: shade(@theme_base_color, 0.99);
|
||||
background-image: none;
|
||||
color: @theme_selected_bg_color;
|
||||
}
|
||||
|
||||
column-header:last-child .button {
|
||||
border-width: 0 0 1px 0;
|
||||
}
|
48
themes/gtk/Dracula/gtk-3.0/widgets/combobox.css
Executable file
48
themes/gtk/Dracula/gtk-3.0/widgets/combobox.css
Executable file
|
@ -0,0 +1,48 @@
|
|||
/******************
|
||||
* combobox entry *
|
||||
******************/
|
||||
GtkComboBox*:hover {
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
GtkComboBox .button {
|
||||
padding: 5px 6px 5px 6px;
|
||||
}
|
||||
|
||||
GtkComboBox.combobox-entry .button {
|
||||
border-color: alpha(black,0.2);
|
||||
}
|
||||
|
||||
GtkComboBox.combobox-entry .button:hover {
|
||||
border-color: transparent;
|
||||
border-top-color: alpha(white,0.2);
|
||||
border-bottom-color: alpha(black,0.2);
|
||||
}
|
||||
|
||||
.primary-toolbar GtkComboBox.combobox-entry .entry,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .entry:active,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .entry:focus,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .entry:insensitive,
|
||||
GtkComboBox.combobox-entry .entry,
|
||||
GtkComboBox.combobox-entry .entry:active,
|
||||
GtkComboBox.combobox-entry .entry:focus,
|
||||
GtkComboBox.combobox-entry .entry:insensitive {
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:hover,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:active,
|
||||
.primary-toolbar GtkComboBox.combobox-entry .button:insensitive,
|
||||
GtkComboBox.combobox-entry .button,
|
||||
GtkComboBox.combobox-entry .button:hover,
|
||||
GtkComboBox.combobox-entry .button:active,
|
||||
GtkComboBox.combobox-entry .button:insensitive {
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-left-radius: 0;
|
||||
border-left-width: 0px;
|
||||
}
|
||||
.linked-entry .entry {
|
||||
border-color: alpha(white,0.2);
|
||||
}
|
42
themes/gtk/Dracula/gtk-3.0/widgets/content-view.css
Executable file
42
themes/gtk/Dracula/gtk-3.0/widgets/content-view.css
Executable file
|
@ -0,0 +1,42 @@
|
|||
/****************
|
||||
* content view *
|
||||
****************/
|
||||
.content-view.view {
|
||||
background-color: @theme_base_color;
|
||||
}
|
||||
|
||||
.content-view.view:prelight {
|
||||
background-color: alpha(@theme_selected_bg_color, 0.6);
|
||||
}
|
||||
|
||||
.content-view.view:selected,
|
||||
.content-view.view:active {
|
||||
background-color: @theme_selected_bg_color;
|
||||
}
|
||||
|
||||
.content-view.view:insensitive {
|
||||
background-color: shade(@theme_base_color, 0.9);
|
||||
}
|
||||
|
||||
GdMainIconView.content-view {
|
||||
-GdMainIconView-icon-size: 40;
|
||||
}
|
||||
|
||||
GtkIconView.content-view.check {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
GtkIconView.content-view.check:active {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.content-view.view.check,
|
||||
.content-view.view.check:active {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
GtkIconView.content-view.check:prelight,
|
||||
GtkIconView.content-view.check:insensitive,
|
||||
GtkIconView.content-view.check:selected {
|
||||
background-color: transparent;
|
||||
}
|
137
themes/gtk/Dracula/gtk-3.0/widgets/csd.css
Executable file
137
themes/gtk/Dracula/gtk-3.0/widgets/csd.css
Executable file
|
@ -0,0 +1,137 @@
|
|||
/*******
|
||||
* CSD *
|
||||
*******/
|
||||
.titlebar{
|
||||
border-radius:5px 5px 0 0;
|
||||
}
|
||||
.titlebar,
|
||||
.header-bar {
|
||||
|
||||
background-image: none;
|
||||
background-color: @header_bg_color;
|
||||
color: @header_fg_color;
|
||||
text-shadow: none;
|
||||
padding: 4px 10px;
|
||||
|
||||
}
|
||||
|
||||
.titlebar .button,
|
||||
.header-bar .image-button,
|
||||
.header-bar .path-bar .button,
|
||||
.titlebar .button:active,
|
||||
.titlebar .button:checked {
|
||||
padding: 5px;
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
color: @header_fg_color;
|
||||
font: bold;
|
||||
}
|
||||
|
||||
.titlebar .button:hover,
|
||||
.header-bar .image-button:hover,
|
||||
.header-bar .image-button:active,
|
||||
.header-bar .image-button:checked,
|
||||
.header-bar .path-bar .button:hover,
|
||||
.header-bar .path-bar .button:active,
|
||||
.header-bar .path-bar .button:checked,
|
||||
.titlebar .button:active:hover,
|
||||
.titlebar .button:checked,
|
||||
.titlebar .button:active {
|
||||
color: @selected_bg_color;
|
||||
background-color: transparent;
|
||||
}
|
||||
.maximized .titlebar {
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.tiled .titlebar {
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.titlebar.default-decoration {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.titlebar .title {
|
||||
font: Bold 10;
|
||||
color: @header_fg_color;
|
||||
}
|
||||
|
||||
.titlebar .subtitle {
|
||||
font: 9;
|
||||
color: @header_fg_color;
|
||||
}
|
||||
|
||||
.titlebar .separator {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.titlebar .arrow {
|
||||
color: alpha(@header_fg_color, 0.7);
|
||||
}
|
||||
|
||||
.titlebar .arrow:insensitive {
|
||||
color: mix(@fg_color, @bg_color, 0.3);
|
||||
}
|
||||
|
||||
.window-frame {
|
||||
border:none;
|
||||
border-radius: 5px 5px 0 0;
|
||||
background-color: @header_bg_color;
|
||||
box-shadow: 0 5px 15px 2px rgba(0, 0, 0, 0.4);
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.window-frame.maximized {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.window-frame.tiled {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.window-frame:backdrop {
|
||||
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.window-frame.ssd {
|
||||
box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.23);
|
||||
}
|
||||
|
||||
/******************
|
||||
* window actions *
|
||||
******************/
|
||||
.titlebar .button.titlebutton,
|
||||
.titlebar .button.titlebutton:hover,
|
||||
.titlebar .button.titlebutton:checked {
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
icon-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.header-bar .button.titlebutton,
|
||||
.titlebar .button.titlebutton {
|
||||
padding: 3px;
|
||||
padding-left: 1px;
|
||||
padding-right: 1px;
|
||||
}
|
||||
|
||||
.titlebar .titlebutton,
|
||||
.titlebar .titlebutton:hover,
|
||||
.titlebar .titlebutton:active,
|
||||
.titlebar .titlebutton:active:hover,
|
||||
.titlebar .titlebutton:backdrop,
|
||||
.maximized .titlebar .titlebutton,
|
||||
.maximized .titlebar .titlebutton:hover,
|
||||
.maximized .titlebar .titlebutton:active,
|
||||
.maximized .titlebar .titlebutton:active:hover,
|
||||
.maximized .titlebar .titlebutton:backdrop {
|
||||
color: transparent;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
35
themes/gtk/Dracula/gtk-3.0/widgets/dialogs.css
Executable file
35
themes/gtk/Dracula/gtk-3.0/widgets/dialogs.css
Executable file
|
@ -0,0 +1,35 @@
|
|||
/***********
|
||||
* Dialogs *
|
||||
***********/
|
||||
.message-dialog {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.message-dialog .titlebar {
|
||||
background-color: @theme_bg_color;
|
||||
}
|
||||
|
||||
.message-dialog .window-frame {
|
||||
border:none;
|
||||
border-radius: 5px;
|
||||
background-color: @bg_color;
|
||||
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.6);
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.message-dialog.csd .dialog-action-area .button {
|
||||
color: @theme_fg_color;
|
||||
background-color: @theme_bg_color;
|
||||
border:none;
|
||||
}
|
||||
|
||||
.message-dialog.csd .dialog-action-area .button:hover {
|
||||
color: @theme_selected_bg_color;
|
||||
}
|
||||
|
||||
.message-dialog.csd .dialog-action-area .button:active,
|
||||
.message-dialog.csd .dialog-action-area .button:checked,
|
||||
.message-dialog.csd .dialog-action-area .button:active:focus,
|
||||
.message-dialog.csd .dialog-action-area .button:checked:focus {
|
||||
color: @theme_selected_bg_color;
|
||||
}
|
43
themes/gtk/Dracula/gtk-3.0/widgets/entry.css
Executable file
43
themes/gtk/Dracula/gtk-3.0/widgets/entry.css
Executable file
|
@ -0,0 +1,43 @@
|
|||
/*********
|
||||
* entry *
|
||||
*********/
|
||||
.entry,
|
||||
.primary-toolbar .entry {
|
||||
transition: 200ms linear;
|
||||
padding: 6px 8px;
|
||||
border-style: solid;
|
||||
border-radius: 3px;
|
||||
border-width: 1px;
|
||||
border-color: alpha(black,0.2);
|
||||
background-color: @base_color;
|
||||
background-image: none;
|
||||
color: @text_color;
|
||||
}
|
||||
|
||||
.entry:active,
|
||||
.entry:focus {
|
||||
transition: 200ms linear;
|
||||
background-color: @base_color;
|
||||
border-bottom-color: @selected_bg_color;
|
||||
color: @text_color;
|
||||
}
|
||||
|
||||
.entry:selected,
|
||||
.entry:selected:focus {
|
||||
background-color: shade(@bg_color, 0.9);
|
||||
color: @selected_bg_color;
|
||||
}
|
||||
|
||||
.entry:insensitive {
|
||||
background-color: alpha(@base_color, 0.5);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.entry.progressbar {
|
||||
border-width: 0;
|
||||
border-radius: 3px;
|
||||
background-color: @selected_bg_color;
|
||||
background-image: none;
|
||||
color: @selected_fg_color;
|
||||
border-color: @selected_bg_color;
|
||||
}
|
21
themes/gtk/Dracula/gtk-3.0/widgets/gnome-sofware.css
Normal file
21
themes/gtk/Dracula/gtk-3.0/widgets/gnome-sofware.css
Normal file
|
@ -0,0 +1,21 @@
|
|||
/* Copyright 2015 Sam Hewitt.
|
||||
*
|
||||
* This file is part of the Paper GTK theme.
|
||||
*
|
||||
* The Paper GTK theme is free software: you can redistribute it
|
||||
* and/or modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* The Paper GTK theme is distributed in the hope that it will be
|
||||
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||
* Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with the Paper GTK theme. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
|
||||
GtkImage.star{
|
||||
color: #EF1A1A;
|
||||
}
|
108
themes/gtk/Dracula/gtk-3.0/widgets/infobar.css
Executable file
108
themes/gtk/Dracula/gtk-3.0/widgets/infobar.css
Executable file
|
@ -0,0 +1,108 @@
|
|||
/***********
|
||||
* infobar *
|
||||
***********/
|
||||
GtkInfoBar {
|
||||
border-width: 0px;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
.info {
|
||||
border: none;
|
||||
background-color: shade(@info_bg_color,0.9);
|
||||
background-image: none;
|
||||
color: @info_fg_color;
|
||||
}
|
||||
|
||||
.error .button {
|
||||
border: none;
|
||||
color: @info_fg_color;
|
||||
background-image: none;
|
||||
background-color: @info_bg_color;
|
||||
}
|
||||
|
||||
.error .button:hover {
|
||||
color: @info_fg_color;
|
||||
background-image: none;
|
||||
background-color: shade(@info_bg_color,1.1);
|
||||
}
|
||||
|
||||
.error .button:active {
|
||||
color: @info_fg_color;
|
||||
background-image: none;
|
||||
background-color: shade(@info_bg_color,1.2);
|
||||
}
|
||||
|
||||
.warning {
|
||||
background-color: shade(@warning_bg_color, 0.9);
|
||||
background-image: none;
|
||||
color: @warning_fg_color;
|
||||
}
|
||||
|
||||
.warning .button {
|
||||
border: none;
|
||||
color: @warning_fg_color;
|
||||
background-image: none;
|
||||
background-color: @warning_bg_color;
|
||||
}
|
||||
|
||||
.warning .button:hover {
|
||||
color: @question_fg_color;
|
||||
background-image: none;
|
||||
background-color: shade(@warning_bg_color,1.1);
|
||||
}
|
||||
|
||||
.warning .button:active {
|
||||
color: @question_fg_color;
|
||||
background-image: none;
|
||||
background-color: shade(@warning_bg_color,1.2);
|
||||
}
|
||||
|
||||
.question {
|
||||
background-color: shade(@question_bg_color, 0.9);
|
||||
background-image: none;
|
||||
color: @question_fg_color;
|
||||
}
|
||||
|
||||
.question .button {
|
||||
border: none;
|
||||
color: @question_fg_color;
|
||||
background-image: none;
|
||||
background-color: @question_bg_color;
|
||||
}
|
||||
|
||||
.question .button:hover {
|
||||
color: @question_fg_color;
|
||||
background-image: none;
|
||||
background-color: shade(@question_bg_color,1.1);
|
||||
}
|
||||
|
||||
.question .button:active {
|
||||
color: @question_fg_color;
|
||||
background-image: none;
|
||||
background-color: shade(@question_bg_color,1.2);
|
||||
}
|
||||
|
||||
.error {
|
||||
background-color: shade(@error_bg_color, 0.9);
|
||||
background-image: none;
|
||||
color: @error_fg_color;
|
||||
}
|
||||
|
||||
.error .button {
|
||||
border: none;
|
||||
color: @error_fg_color;
|
||||
background-image: none;
|
||||
background-color: @error_bg_color;
|
||||
}
|
||||
|
||||
.error .button:hover {
|
||||
color: @error_fg_color;
|
||||
background-image: none;
|
||||
background-color: shade(@error_bg_color,1.1);
|
||||
}
|
||||
|
||||
.error .button:active {
|
||||
color: @error_fg_color;
|
||||
background-image: none;
|
||||
background-color: shade(@error_bg_color,1.2);
|
||||
}
|
48
themes/gtk/Dracula/gtk-3.0/widgets/list-boxes.css
Executable file
48
themes/gtk/Dracula/gtk-3.0/widgets/list-boxes.css
Executable file
|
@ -0,0 +1,48 @@
|
|||
/**************
|
||||
* List boxes *
|
||||
**************/
|
||||
.list,
|
||||
.list-row {
|
||||
font-weight: normal;
|
||||
background-color: @base_color;
|
||||
}
|
||||
|
||||
.list-row.button {
|
||||
padding: 4px;
|
||||
background-color: @base_color;
|
||||
color: @fg_color;
|
||||
font-weight: normal;
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.list-row.button:hover {
|
||||
transition: none;
|
||||
background-color: mix(@base_color,@bg_color, 0.2);
|
||||
color: @fg_color;
|
||||
}
|
||||
|
||||
.list-row.button:active,
|
||||
.list-row.button:active:hover {
|
||||
background-color: mix(@base_color,@bg_color, 0.4);
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.list-row.button:selected:hover {
|
||||
background-color: @selected_bg_color;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.list-row.button:checked,
|
||||
.list-row.button:selected,
|
||||
.list-row:selected,
|
||||
.list-row.button:selected:active:hover {
|
||||
background-color: shade(@selected_bg_color, 0.9);
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
/*selected-row buttons*/
|
||||
.list-row.button:selected .button:hover,
|
||||
.list-row.button:selected .button:active {
|
||||
color: @selected_fg_color;
|
||||
}
|
164
themes/gtk/Dracula/gtk-3.0/widgets/menu.css
Executable file
164
themes/gtk/Dracula/gtk-3.0/widgets/menu.css
Executable file
|
@ -0,0 +1,164 @@
|
|||
/********
|
||||
* menu *
|
||||
********/
|
||||
GtkTreeMenu.menu,
|
||||
GtkMenuToolButton.menu,
|
||||
GtkComboBox .menu {
|
||||
background-color: @menu_bg_color;
|
||||
color: @menu_fg_color;
|
||||
}
|
||||
|
||||
.primary-toolbar .menu,
|
||||
.primary-toolbar .button .menu,
|
||||
.toolbar .menu,
|
||||
.toolbar .primary-toolbar .menu,
|
||||
.header-bar .menu,
|
||||
.header-bar .primary-toolbar .menu,
|
||||
.menu {
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
border-style: none;
|
||||
background-color: @menu_bg_color;
|
||||
color: @menu_fg_color;
|
||||
}
|
||||
|
||||
.menu.button:hover,
|
||||
.menu.button:active,
|
||||
.menu.button:active *:insensitive,
|
||||
.menu.button:insensitive,
|
||||
.menu.button {
|
||||
border-width: 0;
|
||||
background-color: @menu_bg_color;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.context-menu {
|
||||
font: initial;
|
||||
}
|
||||
|
||||
/***********
|
||||
* menubar *
|
||||
***********/
|
||||
.menubar {
|
||||
background-color: @menubar_bg_color;
|
||||
color: @menubar_fg_color;
|
||||
}
|
||||
|
||||
/***************
|
||||
* menubaritem *
|
||||
***************/
|
||||
.menubar.menuitem,
|
||||
.menubar .menuitem {
|
||||
padding: 3px 6px;
|
||||
color: @menubar_fg_color;
|
||||
border-width: 0px;
|
||||
border-bottom: 2px solid transparent;
|
||||
}
|
||||
|
||||
.menubar.menuitem:hover,
|
||||
.menubar .menuitem:hover {
|
||||
border-width: 0px;
|
||||
border-bottom: 2px solid @menu_selected_bg_color;
|
||||
}
|
||||
|
||||
/************
|
||||
* menuitem *
|
||||
************/
|
||||
GtkTreeMenu .menuitem {
|
||||
color: @menu_fg_color;
|
||||
padding: 4px 6px;
|
||||
border-width: 0;
|
||||
background-color: @menu_bg_color;
|
||||
}
|
||||
|
||||
.menuitem,
|
||||
.menu .menuitem {
|
||||
padding: 4px 3px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: transparent;
|
||||
border-radius: 0;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: @menu_fg_color;
|
||||
|
||||
-GtkMenuItem-arrow-scaling: 0.5;
|
||||
}
|
||||
|
||||
.menu .menuitem:active,
|
||||
.menu .menuitem:hover {
|
||||
transition: 100ms linear;
|
||||
border-style: none;
|
||||
background-color: @menu_selected_bg_color;
|
||||
border-radius: 0;
|
||||
color: @menu_selected_fg_color;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.menu .menuitem:hover,
|
||||
.menu .menuitem *:hover {
|
||||
transition: 100ms linear;
|
||||
background-color: @menu_selected_bg_color;;
|
||||
color: @menu_selected_fg_color;
|
||||
}
|
||||
|
||||
.menu .menuitem:insensitive,
|
||||
.menu .menuitem *:insensitive {
|
||||
color: mix(@menu_fg_color, @menu_bg_color, 0.5);
|
||||
}
|
||||
|
||||
.menuitem.check,
|
||||
.menuitem.radio,
|
||||
.menuitem.check:hover,
|
||||
.menuitem.radio:hover,
|
||||
.menuitem.check:insensitive,
|
||||
.menuitem.radio:insensitive {
|
||||
border-style: none;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.menuitem.check:active,
|
||||
.menuitem.radio:active {
|
||||
border-style: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.menuitem.arrow {
|
||||
color: alpha(@menu_fg_color, 0.6);
|
||||
}
|
||||
|
||||
.menuitem GtkCalendar:inconsistent {
|
||||
color: mix(@menu_fg_color, @menu_bg_color, 0.5);
|
||||
}
|
||||
|
||||
.menuitem GtkCalendar.button {
|
||||
border-style: none;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.menuitem .entry {
|
||||
border-color: shade(@menu_bg_color, 0.7);
|
||||
background-color: @menu_bg_color;
|
||||
background-image: none;
|
||||
color: @menu_fg_color;
|
||||
}
|
||||
|
||||
.menuitem .entry:active,
|
||||
.menuitem .entry:focus {
|
||||
border-color: shade(@menu_bg_color, 0.7);
|
||||
}
|
||||
|
||||
.menuitem .accelerator {
|
||||
color: alpha(@menu_fg_color, 0.6);
|
||||
}
|
||||
|
||||
.menuitem .accelerator:hover {
|
||||
color: alpha(@theme_base_color, 0.8);
|
||||
}
|
||||
|
||||
.menuitem .accelerator:insensitive {
|
||||
color: alpha(mix(@menu_fg_color, @menu_bg_color, 0.5), 0.6);
|
||||
}
|
||||
|
96
themes/gtk/Dracula/gtk-3.0/widgets/notebook.css
Executable file
96
themes/gtk/Dracula/gtk-3.0/widgets/notebook.css
Executable file
|
@ -0,0 +1,96 @@
|
|||
/************
|
||||
* notebook *
|
||||
************/
|
||||
.notebook {
|
||||
padding: 0;
|
||||
background-color: @theme_base_color;
|
||||
background-image: none;
|
||||
background-clip: border-box;
|
||||
-GtkNotebook-has-tab-gap: false;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.notebook.header {
|
||||
background-color: @theme_bg_color;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.notebook tab {
|
||||
padding: 8px;
|
||||
box-shadow: none;
|
||||
border: 1px solid @theme_bg_color;
|
||||
background-color: alpha(@theme_base_color,0.3);
|
||||
background-image: none;
|
||||
|
||||
}
|
||||
|
||||
.notebook tab:active {
|
||||
background-color: @theme_base_color;
|
||||
/*border-left: 3px solid @selected_bg_color;*/
|
||||
}
|
||||
|
||||
.notebook tab.top:active {
|
||||
border-bottom: 0px;
|
||||
}
|
||||
|
||||
.notebook tab.left {
|
||||
border-right: 1px solid @theme_bg_color;
|
||||
}
|
||||
|
||||
.notebook tab.left:active {
|
||||
border-right: 0px;
|
||||
}
|
||||
|
||||
.notebook tab.bottom {
|
||||
border-top: 1px solid @theme_bg_color;
|
||||
}
|
||||
|
||||
.notebook tab.bottom:active {
|
||||
border-top: 0px;
|
||||
}
|
||||
|
||||
.notebook tab.right {
|
||||
border-left: 1px solid @theme_bg_color;
|
||||
}
|
||||
|
||||
.notebook tab.right:active {
|
||||
border-left: 0px;
|
||||
}
|
||||
|
||||
.notebook tab.left:first-child:active,
|
||||
.notebook tab.right:first-child:active {
|
||||
border-top: 0px;
|
||||
}
|
||||
|
||||
.notebook tab.left:last-child:active,
|
||||
.notebook tab.right:last-child:active {
|
||||
border-bottom: 0px;
|
||||
}
|
||||
|
||||
.notebook tab.top:first-child:active,
|
||||
.notebook tab.bottom:first-child:active {
|
||||
border-left: 0px;
|
||||
}
|
||||
|
||||
.notebook tab.top:last-child:active,
|
||||
.notebook tab.bottom:last-child:active {
|
||||
border-right: 0px;
|
||||
}
|
||||
|
||||
/* close button styling */
|
||||
.notebook tab .button {
|
||||
transition: ease-in 150ms;
|
||||
padding: 2px;
|
||||
border: none;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
color: @theme_text_color;
|
||||
}
|
||||
|
||||
.notebook tab .button:hover,
|
||||
.notebook tab .button:active:hover {
|
||||
color: @red;
|
||||
background-color: transparent;
|
||||
}
|
29
themes/gtk/Dracula/gtk-3.0/widgets/osd.css
Executable file
29
themes/gtk/Dracula/gtk-3.0/widgets/osd.css
Executable file
|
@ -0,0 +1,29 @@
|
|||
/*******
|
||||
* OSD *
|
||||
*******/
|
||||
.background.osd {
|
||||
color: @osd_fg;
|
||||
background-color: @osd_bg;
|
||||
}
|
||||
|
||||
.osd .view,
|
||||
.osd.view {
|
||||
background-color: @osd_base;
|
||||
}
|
||||
|
||||
.osd.button,
|
||||
.osd .button {
|
||||
background-color: @osd_bg;
|
||||
background-image: none;
|
||||
color: @osd_fg;
|
||||
}
|
||||
|
||||
.osd.toolbar {
|
||||
-GtkToolbar-button-relief: none;
|
||||
|
||||
border: 1px solid shade(@osd_bg,0.8);
|
||||
border-radius: 4px;
|
||||
background-color: @osd_bg;
|
||||
background-image: none;
|
||||
color: @osd_fg;
|
||||
}
|
74
themes/gtk/Dracula/gtk-3.0/widgets/popover.css
Executable file
74
themes/gtk/Dracula/gtk-3.0/widgets/popover.css
Executable file
|
@ -0,0 +1,74 @@
|
|||
/************
|
||||
* popovers *
|
||||
************/
|
||||
.popover{
|
||||
margin: 10px;
|
||||
padding: 2px;
|
||||
border-radius: 2px;
|
||||
border: 1px solid shade(@bg_color, 0.85);
|
||||
background-clip: border-box;
|
||||
background-color: @base_color;
|
||||
box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.12);
|
||||
color: @fg_color;
|
||||
}
|
||||
|
||||
GtkPopover.osd {
|
||||
box-shadow: 0 2px 7px 3px alpha(black, 0.5);
|
||||
}
|
||||
|
||||
GtkPopover .button {
|
||||
background-color: transparent;
|
||||
color: @fg_color;
|
||||
border: none;
|
||||
}
|
||||
|
||||
GtkPopover .button:hover,
|
||||
GtkPopover .button:active:hover,
|
||||
GtkPopover .button:checked:checked {
|
||||
background-color: transparent;
|
||||
color: @selected_bg_color;
|
||||
border: none;
|
||||
}
|
||||
|
||||
GtkPopover > .list,
|
||||
GtkPopover > .view,
|
||||
GtkPopover > .toolbar {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
GtkPopover.osd > .toolbar .button {
|
||||
border-radius: 0;
|
||||
border-width: 0;
|
||||
background-image: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
GtkPopover .separator {
|
||||
border: 0;
|
||||
background-color: transparent;
|
||||
color: alpha(currentColor, 0.3);
|
||||
font-size: 80%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
GtkModelButton.button,
|
||||
GtkModelButton.button:active,
|
||||
GtkModelButton.button:insensitive,
|
||||
GtkModelButton.button:active:insensitive {
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
color: @fg_color;
|
||||
}
|
||||
|
||||
GtkModelButton.button:active:hover,
|
||||
GtkModelButton.button:hover,
|
||||
GtkModelButton.button:selected {
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: @selected_bg_color;
|
||||
}
|
||||
|
||||
GtkPopover *:hover {
|
||||
-gtk-image-effect: none;
|
||||
}
|
252
themes/gtk/Dracula/gtk-3.0/widgets/progress-scale.css
Executable file
252
themes/gtk/Dracula/gtk-3.0/widgets/progress-scale.css
Executable file
|
@ -0,0 +1,252 @@
|
|||
/*****************
|
||||
* Progress bars *
|
||||
*****************/
|
||||
GtkProgressBar {
|
||||
padding: 0;
|
||||
border-width: 0px;
|
||||
border-radius: 0px;
|
||||
border-style: solid;
|
||||
font-size: smaller;
|
||||
color: @text_color;
|
||||
}
|
||||
|
||||
GtkProgressBar:backdrop {
|
||||
color: @text_color;
|
||||
}
|
||||
|
||||
GtkProgressBar.osd {
|
||||
-GtkProgressBar-xspacing: 0;
|
||||
-GtkProgressBar-yspacing: 0;
|
||||
-GtkProgressBar-min-horizontal-bar-height: 3;
|
||||
}
|
||||
|
||||
GtkProgressBar.trough {
|
||||
border-width: 0px;
|
||||
border-radius: 3px;
|
||||
background-color: shade(@bg_color,0.9);
|
||||
box-shadow: inset 0px -1px 0px 0px rgba(255,255,255,0.2),inset 0px 1px 0px 0px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
GtkProgressBar.trough:backdrop {
|
||||
background-color: shade(@bg_color,0.9);
|
||||
}
|
||||
|
||||
GtkProgressBar.trough.osd {
|
||||
border-style: none;
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.progressbar,
|
||||
.progressbar row,
|
||||
.progressbar row:hover,
|
||||
.progressbar row:selected,
|
||||
.progressbar row:selected:focus {
|
||||
border-width: 0px;
|
||||
border-radius: 1.5px;
|
||||
background-color: @selected_bg_color;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.progressbar.left {
|
||||
border-top-left-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
}
|
||||
|
||||
.progressbar.right {
|
||||
border-top-right-radius: 3px;
|
||||
border-bottom-right-radius: 3px;
|
||||
}
|
||||
|
||||
.progressbar.vertical {
|
||||
background-color: @selected_bg_color;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.progressbar.vertical.bottom {
|
||||
border-bottom-left-radius: 3px;
|
||||
border-bottom-right-radius: 3px;
|
||||
}
|
||||
|
||||
.progressbar.vertical.top {
|
||||
border-top-left-radius: 3px;
|
||||
border-top-right-radius: 3px;
|
||||
}
|
||||
|
||||
.progressbar:backdrop,
|
||||
.progressbar:backdrop:hover {
|
||||
border-width: 0px;
|
||||
background-image: none;
|
||||
background-color: @selected_bg_color;
|
||||
box-shadow: none;
|
||||
}
|
||||
.progressbar.osd {
|
||||
background-image: none;
|
||||
background-color: @selected_bg_color;
|
||||
border-style: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.trough row,
|
||||
.trough row:hover {
|
||||
border: none;
|
||||
border-radius: 3px;
|
||||
background-image: none;
|
||||
background-color: shade(@bg_color,0.9);
|
||||
box-shadow: inset 0px -1px 0px 0px rgba(255,255,255,0.2),inset 0px 1px 0px 0px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.trough row:selected,
|
||||
.trough row:selected:hover,
|
||||
.trough row:selected:focus {
|
||||
border: none;
|
||||
border-radius: 3px;
|
||||
background-color: @base_color;
|
||||
background-image: none;
|
||||
color: @text_color;
|
||||
}
|
||||
|
||||
/*************
|
||||
* Level Bar *
|
||||
*************/
|
||||
.level-bar {
|
||||
-GtkLevelBar-min-block-width: 34;
|
||||
-GtkLevelBar-min-block-height: 3;
|
||||
}
|
||||
|
||||
.level-bar.vertical {
|
||||
-GtkLevelBar-min-block-width: 3;
|
||||
-GtkLevelBar-min-block-height: 34;
|
||||
}
|
||||
|
||||
.level-bar.trough,
|
||||
.level-bar.trough:backdrop {
|
||||
border-width: 0px;
|
||||
padding: 2px;
|
||||
border-radius: 3px;
|
||||
background-color: shade(@bg_color,0.9);
|
||||
color: black;
|
||||
box-shadow: inset 0px -1px 0px 0px rgba(255,255,255,0.2),inset 0px 1px 0px 0px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.level-bar.fill-block,
|
||||
.level-bar.fill-block:backdrop {
|
||||
border-width: 0px;
|
||||
background-color: @selected_bg_color;
|
||||
box-shadow: inset 0px -1px 0px 0px rgba(0,0,0,0.2),inset 0px 1px 0px 0px rgba(255,255,255,0.2);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.level-bar.fill-block.indicator-discrete.horizontal {
|
||||
margin: 0 1px;
|
||||
}
|
||||
|
||||
.level-bar.fill-block.indicator-discrete.vertical {
|
||||
margin: 1px 0;
|
||||
}
|
||||
|
||||
.level-bar.fill-block.level-high,
|
||||
.level-bar.fill-block.level-high:backdrop {
|
||||
background-color: @cyan;
|
||||
}
|
||||
|
||||
.level-bar.fill-block.level-low,
|
||||
.level-bar.fill-block.level-low:backdrop {
|
||||
background-color: @warning_bg_color;
|
||||
}
|
||||
|
||||
.level-bar.fill-block.empty-fill-block {
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/************
|
||||
* GtkScale *
|
||||
************/
|
||||
.scale {
|
||||
padding: 0;
|
||||
border-width: 0px;
|
||||
border-radius: 0px;
|
||||
border-style: solid;
|
||||
|
||||
-GtkRange-slider-width: 12;
|
||||
-GtkRange-trough-border: 1;
|
||||
-GtkScale-slider-length: 12;
|
||||
}
|
||||
|
||||
.scale.vertical {
|
||||
-GtkScale-slider-length: 12;
|
||||
}
|
||||
|
||||
.scale.slider,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.slider,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider,
|
||||
.scale.slider:hover,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.slider:hover,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:hover,
|
||||
.scale.slider:insensitive,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.slider:insensitive,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:insensitive,
|
||||
.scale.slider:backdrop,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.slider:backdrop,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:backdrop {
|
||||
background-color: $red;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
}
|
||||
|
||||
.scale.mark {
|
||||
border-color: shade(@bg_color, 0.8);
|
||||
}
|
||||
|
||||
.scale.trough {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.scale.trough.vertical {
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
.scale.trough.highlight,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight,
|
||||
.scale.trough.highlight.vertical,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight.vertical,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight.vertical {
|
||||
border-width: 0px;
|
||||
background-color: @red;
|
||||
background-image: linear-gradient(to bottom,
|
||||
@red,
|
||||
@red
|
||||
);
|
||||
box-shadow:none;
|
||||
}
|
||||
|
||||
.scale.trough.highlight:insensitive,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive,
|
||||
.scale.trough.highlight.vertical:insensitive,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.trough.highlight.vertical:insensitive,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight.vertical:insensitive {
|
||||
background-color: shade(@bg_color, 0.8);
|
||||
background-image: none;
|
||||
box-shadow:none;
|
||||
}
|
||||
|
||||
.scale.trough,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.trough,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough,
|
||||
.scale.trough:insensitive,
|
||||
.scale.scale-has-marks-above.scale-has-marks-below.trough:insensitive,
|
||||
.scale.vertical.scale-has-marks-above.scale-has-marks-below.trough:insensitive {
|
||||
border-width: 0px;
|
||||
border-radius: 3px;
|
||||
background-color: shade(@bg_color, 0.5);
|
||||
background-image: linear-gradient(to bottom,
|
||||
shade(@bg_color, 0.5),
|
||||
shade(@bg_color, 0.5)
|
||||
);
|
||||
box-shadow: inset 0px -1px 0px 0px rgba(255,255,255,0.2),inset 0px 1px 0px 0px rgba(0,0,0,0.2);
|
||||
}
|
74
themes/gtk/Dracula/gtk-3.0/widgets/scrollbar.css
Executable file
74
themes/gtk/Dracula/gtk-3.0/widgets/scrollbar.css
Executable file
|
@ -0,0 +1,74 @@
|
|||
/*************
|
||||
* scrollbar *
|
||||
*************/
|
||||
.scrollbar {
|
||||
border-width: 0px;
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.scrollbars-junction,
|
||||
.scrollbar.trough {
|
||||
border: solid 3px transparent;
|
||||
border-radius: 0;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.scrollbar.button,
|
||||
.scrollbar.button:active,
|
||||
.scrollbar.button:active:hover {
|
||||
border-width: 0;
|
||||
border-radius: 0;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: shade(@theme_bg_color, 0.6);
|
||||
}
|
||||
|
||||
.scrollbar.slider {
|
||||
padding: 10px;
|
||||
border-width: 3px;
|
||||
border-color: transparent;
|
||||
border-radius: 7px;
|
||||
border-style: solid;
|
||||
background-color: mix(@theme_bg_color, @theme_fg_color, 0.3);
|
||||
}
|
||||
|
||||
.scrollbar.slider:hover,
|
||||
.scrollbar.slider.vertical:hover {
|
||||
background-color: mix(@theme_bg_color, @theme_fg_color, 0.4);
|
||||
}
|
||||
|
||||
.scrollbar.slider:active,
|
||||
.scrollbar.slider.vertical:active {
|
||||
background-color: shade(@theme_selected_bg_color, 0.95);
|
||||
}
|
||||
|
||||
.scrollbar.slider.fine-tune:prelight:active {
|
||||
background-size: 50%;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
/* overlay scrollbar */
|
||||
OsThumb {
|
||||
color: shade(@theme_bg_color, 0.7);
|
||||
}
|
||||
|
||||
OsThumb:selected,
|
||||
OsScrollbar:selected {
|
||||
background-color: @theme_selected_bg_color;
|
||||
}
|
||||
|
||||
OsThumb:active,
|
||||
OsScrollbar:active {
|
||||
background-color: @theme_selected_bg_color;
|
||||
}
|
||||
|
||||
OsThumb:insensitive,
|
||||
OsScrollbar:insensitive {
|
||||
background-color: shade(@theme_bg_color, 0.9);
|
||||
}
|
||||
|
36
themes/gtk/Dracula/gtk-3.0/widgets/search-bar.css
Executable file
36
themes/gtk/Dracula/gtk-3.0/widgets/search-bar.css
Executable file
|
@ -0,0 +1,36 @@
|
|||
/***************
|
||||
* search bars *
|
||||
***************/
|
||||
.search-bar.primary-toolbar,
|
||||
.search-bar.toolbar,
|
||||
.search-bar {
|
||||
padding: 7px;
|
||||
background-color: @theme_bg_color;
|
||||
color: @theme_fg_color;
|
||||
border:none;
|
||||
}
|
||||
|
||||
.search-bar GtkSearchEntry,
|
||||
.search-bar GtkSearchEntry:focus,
|
||||
.search-bar.primary-toolbar GtkSearchEntry,
|
||||
.search-bar.primary-toolbar GtkSearchEntry:focus {
|
||||
border-radius: 5px;
|
||||
border-color:transparent;
|
||||
}
|
||||
|
||||
.search-bar .button.close-button {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.search-bar.toolbar .button {
|
||||
border: none;
|
||||
background: none;
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.search-bar.toolbar .button:hover,
|
||||
.search-bar.toolbar .button:active:hover,
|
||||
.search-bar.toolbar .button:checked:checked {
|
||||
background: none;
|
||||
color: @selected_bg_color;
|
||||
}
|
99
themes/gtk/Dracula/gtk-3.0/widgets/selection-mode.css
Executable file
99
themes/gtk/Dracula/gtk-3.0/widgets/selection-mode.css
Executable file
|
@ -0,0 +1,99 @@
|
|||
/******************
|
||||
* selection mode *
|
||||
******************/
|
||||
.selection-mode.header-bar,
|
||||
.selection-mode.toolbar {
|
||||
border-style: solid;
|
||||
border-color: shade(@selected_bg_color, 0.8);
|
||||
background-color: shade(@selected_bg_color, 0.9);
|
||||
background-image: none;
|
||||
color: @base_color;
|
||||
}
|
||||
|
||||
.selection-mode.header-bar {
|
||||
border-top-color: @selected_bg_color;
|
||||
}
|
||||
|
||||
.selection-mode.toolbar {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
/* regular button */
|
||||
.selection-mode.header-bar .button,
|
||||
.selection-mode.toolbar .button,
|
||||
.selection-mode.toolbar GtkToolButton .button {
|
||||
background-color: @selected_bg_color;
|
||||
background-image: none;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.selection-mode.header-bar .button:hover,
|
||||
.selection-mode.toolbar .button:hover,
|
||||
.selection-mode.toolbar GtkToolButton .button:hover {
|
||||
background-color: shade(@selected_bg_color, 1.1);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.selection-mode.header-bar .button:active,
|
||||
.selection-mode.toolbar .button:active,
|
||||
.selection-mode.toolbar GtkToolButton .button:active {
|
||||
background-color: shade(@selected_bg_color, 1.2);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.selection-mode.header-bar .button:hover:active,
|
||||
.selection-mode.toolbar .button:hover:active,
|
||||
.selection-mode.toolbar GtkToolButton .button:hover:active {
|
||||
color: @theme_selected_fg_color;
|
||||
}
|
||||
|
||||
/* suggested button */
|
||||
.selection-mode.header-bar .suggested-action.button,
|
||||
.selection-mode.toolbar .suggested-action.button,
|
||||
.selection-mode.toolbar GtkToolButton.suggested-action .button {
|
||||
border: none;
|
||||
background-color: shade(@selected_bg_color, 1.1);
|
||||
background-image: none;
|
||||
color: @theme_selected_fg_color;
|
||||
}
|
||||
|
||||
.selection-mode.header-bar .suggested-action.button:hover,
|
||||
.selection-mode.toolbar .suggested-action.button:hover,
|
||||
.selection-mode.toolbar GtkToolButton.suggested-action .button:hover {
|
||||
background-color: shade(@selected_bg_color, 1.20);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.selection-mode.header-bar .suggested-action.button:active,
|
||||
.selection-mode.toolbar .suggested-action.button:active,
|
||||
.selection-mode.toolbar GtkToolButton.suggested-action:active {
|
||||
background-color: shade(@theme_selected_bg_color, 1.3);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
/* menu button */
|
||||
.selection-mode.header-bar .selection-menu.button,
|
||||
.selection-mode.toolbar .selection-menu.button {
|
||||
border-style: none;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: shade(@selected_bg_color, 0.6);
|
||||
}
|
||||
|
||||
.selection-mode.toolbar .dim-label,
|
||||
.selection-mode.toolbar .selection-menu.button .dim-label {
|
||||
color: shade(@selected_bg_color, 0.7);
|
||||
}
|
||||
|
||||
.selection-mode.header-bar .selection-menu.button:hover,
|
||||
.selection-mode.toolbar .dim-label:hover,
|
||||
.selection-mode.toolbar .selection-menu.button:hover,
|
||||
.selection-mode.toolbar .selection-menu.button .dim-label:hover {
|
||||
color: shade(@selected_bg_color, 0.7);
|
||||
}
|
||||
|
||||
.selection-mode.header-bar .selection-menu.button:active,
|
||||
.selection-mode.toolbar .selection-menu.button:active {
|
||||
color: shade(@selected_bg_color, 0.8);
|
||||
box-shadow: none;
|
||||
}
|
71
themes/gtk/Dracula/gtk-3.0/widgets/separator.css
Executable file
71
themes/gtk/Dracula/gtk-3.0/widgets/separator.css
Executable file
|
@ -0,0 +1,71 @@
|
|||
/*************
|
||||
* separator *
|
||||
*************/
|
||||
.sidebar.view.separator,
|
||||
.view.separator,
|
||||
.separator,
|
||||
.sidebar .view.separator {
|
||||
color: @theme_bg_color;
|
||||
}
|
||||
|
||||
.pane-separator,
|
||||
.titlebar .pane-separator {
|
||||
background-color: transparent;
|
||||
}
|
||||
.maximized .titlebar .pane-separator {
|
||||
box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.1);
|
||||
background-image: linear-gradient(to bottom,@header_bg_color,@header_bg_color);
|
||||
}
|
||||
|
||||
.button .separator,
|
||||
.button.separator {
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.primary-toolbar GtkSeparatorToolItem,
|
||||
.primary-toolbar .separator,
|
||||
.primary-toolbar .separator:insensitive,
|
||||
.toolbar GtkSeparatorToolItem,
|
||||
.toolbar .separator,
|
||||
.toolbar .separator:insensitive,
|
||||
.header-bar GtkSeparatorToolItem,
|
||||
.header-bar .separator,
|
||||
.header-bar .separator:insensitive {
|
||||
border-color: shade(@toolbar_bg_color, 0.87);
|
||||
color: shade(@toolbar_bg_color, 0.87);
|
||||
}
|
||||
|
||||
.primary-toolbar .button .separator,
|
||||
.primary-toolbar .button.separator,
|
||||
.toolbar .button .separator,
|
||||
.toolbar .button.separator,
|
||||
.header-bar .button .separator,
|
||||
.header-bar .button.separator {
|
||||
border-color: shade(@toolbar_bg_color, 0.95);
|
||||
}
|
||||
|
||||
.primary-toolbar .button .separator:insensitive,
|
||||
.primary-toolbar .button.separator:insensitive,
|
||||
.toolbar .button .separator:insensitive,
|
||||
.toolbar .button.separator:insensitive,
|
||||
.header-bar .button .separator:insensitive,
|
||||
.header-bar .button.separator:insensitive {
|
||||
border-color: shade(@toolbar_bg_color, 0.85);
|
||||
}
|
||||
|
||||
.menuitem.separator {
|
||||
-GtkMenuItem-horizontal-padding: 0;
|
||||
-GtkWidget-separator-height: 1;
|
||||
|
||||
border-style: none;
|
||||
color: shade(@menu_bg_color, 0.9);
|
||||
}
|
||||
|
||||
GtkComboBox .separator {
|
||||
border-style: none;
|
||||
|
||||
/* always disable separators */
|
||||
-GtkWidget-wide-separators: true;
|
||||
-GtkWidget-horizontal-separator: 0;
|
||||
-GtkWidget-vertical-separator: 0;
|
||||
}
|
90
themes/gtk/Dracula/gtk-3.0/widgets/sidebar.css
Executable file
90
themes/gtk/Dracula/gtk-3.0/widgets/sidebar.css
Executable file
|
@ -0,0 +1,90 @@
|
|||
/***********
|
||||
* sidebar *
|
||||
***********/
|
||||
.sidebar,
|
||||
.sidebar.view,
|
||||
.sidebar .view,
|
||||
.sidebar GtkScrolledWindow {
|
||||
background-color: @base_color;
|
||||
background-image: linear-gradient(to bottom,@base_color,@base_color);
|
||||
color: @text_color;
|
||||
transition: all .3s ease-in;
|
||||
}
|
||||
|
||||
.sidebar GtkScrolledWindow,
|
||||
.sidebar {
|
||||
border-width: 0;
|
||||
transition: all .3s ease-in;
|
||||
}
|
||||
|
||||
.sidebar .image:selected:focus,
|
||||
.sidebar .image:selected:hover {
|
||||
background-color: shade(@selected_bg_color,0.9);
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.sidebar .list-row {
|
||||
/*background-color: @base_color;*/
|
||||
color: @text_color;
|
||||
border: 0px;
|
||||
transition: all .1s ease-in;
|
||||
|
||||
|
||||
}
|
||||
.sidebar .list-row:selected{
|
||||
background-color: transparent;
|
||||
/*border-left: 3px solid @selected_bg_color;*/
|
||||
color: @selected_bg_color;
|
||||
font-weight: bold;
|
||||
/*padding-left: 10px;*/
|
||||
}
|
||||
.sidebar .list-row:hover{
|
||||
background-color: shade(@base_color,0.9);
|
||||
}
|
||||
.sidebar .cell:selected,
|
||||
.sidebar .cell:selected:focus {
|
||||
background-color: shade(@selected_bg_color,0.9);
|
||||
background-image: none;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.sidebar GtkScrolledWindow .list-row {
|
||||
background-color: @header_bg_color;
|
||||
color: @header_fg_color;
|
||||
}
|
||||
|
||||
.sidebar .frame {
|
||||
border-width: 0;
|
||||
background-color: @header_bg_color;
|
||||
|
||||
}
|
||||
|
||||
/*elementary os file manager*/
|
||||
.sidebar .source-list{
|
||||
background: @header_bg_color;
|
||||
color: @header_fg_color;
|
||||
padding: 4px 0px;
|
||||
}
|
||||
.sidebar .source-list.view:not(:selected):hover{
|
||||
background-color: rgba(30, 31, 41, 0.4);
|
||||
}
|
||||
|
||||
/* -------------
|
||||
NEW ON GTK 3.18
|
||||
---------------*/
|
||||
GtkSidebarRow.list-row {
|
||||
padding: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
GtkSidebarRow .sidebar-revealer {
|
||||
padding: 5px 14px 1px 12px; }
|
||||
GtkSidebarRow .sidebar-revealer:selected {
|
||||
color: red;}
|
||||
GtkSidebarRow .sidebar-icon:dir(ltr) {
|
||||
padding-right: 8px; }
|
||||
GtkSidebarRow .sidebar-icon:dir(rtl) {
|
||||
padding-left: 8px; }
|
||||
GtkSidebarRow .sidebar-label:dir(ltr) {
|
||||
padding-right: 2px; }
|
||||
GtkSidebarRow .sidebar-label:dir(rtl) {
|
||||
padding-left: 2px; }
|
79
themes/gtk/Dracula/gtk-3.0/widgets/spinbutton.css
Executable file
79
themes/gtk/Dracula/gtk-3.0/widgets/spinbutton.css
Executable file
|
@ -0,0 +1,79 @@
|
|||
/**************
|
||||
* spinbutton *
|
||||
**************/
|
||||
.spinbutton.entry {
|
||||
border: solid 1px mix(@bg_color,black, 0.2);
|
||||
}
|
||||
|
||||
.spinbutton.button {
|
||||
padding: 4px;
|
||||
border-style: none;
|
||||
border-radius: 0;
|
||||
border-bottom-right-radius: 4px;
|
||||
background-color: transparent;
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
.spinbutton.button:active {
|
||||
transition: 500ms linear;
|
||||
border-style: none;
|
||||
border-radius: 0;
|
||||
background-color: transparent;
|
||||
color: shade(@theme_selected_bg_color, 0.9);
|
||||
}
|
||||
|
||||
.spinbutton.button:hover {
|
||||
transition: all 500ms linear;
|
||||
border-style: none;
|
||||
border-radius: 0;
|
||||
color: @theme_selected_bg_color;
|
||||
}
|
||||
|
||||
.spinbutton.button:insensitive {
|
||||
border-color: alpha(@theme_bg_color, 0.01);
|
||||
color: mix(@theme_fg_color, @theme_bg_color, 0.5);
|
||||
}
|
||||
|
||||
.spinbutton.button {
|
||||
border-radius: 0;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.spinbutton.button:first-child {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.spinbutton.button:last-child {
|
||||
border-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-left-radius: 0;
|
||||
border-right-color: mix(@bg_color,black, 0.2);
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.spinbutton.vertical .button:first-child {
|
||||
border-bottom-width: 0;
|
||||
border-radius: 4px;
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border: solid 1px mix(@bg_color,black, 0.2);
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.spinbutton.vertical .button:last-child {
|
||||
border-width: 1px;
|
||||
border-top-width: 0;
|
||||
border-radius: 4px;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
border: solid 1px mix(@bg_color,black, 0.2);
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.spinbutton.vertical.entry {
|
||||
border: solid 1px mix(@bg_color,black, 0.2);
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-radius: 0;
|
||||
}
|
21
themes/gtk/Dracula/gtk-3.0/widgets/spinner.css
Executable file
21
themes/gtk/Dracula/gtk-3.0/widgets/spinner.css
Executable file
|
@ -0,0 +1,21 @@
|
|||
@keyframes spin {
|
||||
to {
|
||||
-gtk-icon-transform: rotate(1turn);
|
||||
}
|
||||
}
|
||||
|
||||
.spinner {
|
||||
background-image: none;
|
||||
background-color: blue;
|
||||
opacity: 0;
|
||||
-gtk-icon-source: -gtk-icontheme("process-working-symbolic");
|
||||
}
|
||||
|
||||
.spinner:active {
|
||||
opacity: 1;
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
|
||||
.spinner:active:insensitive {
|
||||
opacity: 0.5;
|
||||
}
|
31
themes/gtk/Dracula/gtk-3.0/widgets/switch.css
Executable file
31
themes/gtk/Dracula/gtk-3.0/widgets/switch.css
Executable file
|
@ -0,0 +1,31 @@
|
|||
/*************
|
||||
* GtkSwitch *
|
||||
*************/
|
||||
|
||||
GtkSwitch {
|
||||
-GtkSwitch-slider-width: 30;
|
||||
border: none;
|
||||
font: 1;
|
||||
}
|
||||
|
||||
GtkSwitch.trough {
|
||||
background-color: transparent;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0 center;
|
||||
border-color: transparent;
|
||||
border-image: none;
|
||||
border-style: none;
|
||||
color: transparent;
|
||||
box-shadow: none;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
GtkSwitch.trough:active {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
GtkSwitch.slider {
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0 center;
|
||||
background-color: transparent;
|
||||
}
|
78
themes/gtk/Dracula/gtk-3.0/widgets/toolbar.css
Executable file
78
themes/gtk/Dracula/gtk-3.0/widgets/toolbar.css
Executable file
|
@ -0,0 +1,78 @@
|
|||
/***********
|
||||
* toolbar *
|
||||
***********/
|
||||
.toolbar {
|
||||
padding: 5px;
|
||||
border-style: none;
|
||||
background-color: @toolbar_bg_color;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
/* primary-toolbar */
|
||||
.primary-toolbar.toolbar {
|
||||
padding: 4px;
|
||||
background-color: @header_bg_color;
|
||||
color: @header_fg_color;
|
||||
}
|
||||
|
||||
.primary-toolbar.toolbar .button {
|
||||
background-color: shade(@header_bg_color,1.2);
|
||||
color: @header_fg_color;
|
||||
}
|
||||
|
||||
.primary-toolbar.toolbar .button:hover {
|
||||
background-color: @selected_bg_color;
|
||||
color: @selected_fg_color;
|
||||
}
|
||||
|
||||
.primary-toolbar.toolbar .button:active,
|
||||
.primary-toolbar.toolbar .button:checked {
|
||||
background-color: shade(@selected_bg_color,0.9);
|
||||
}
|
||||
|
||||
.primary-toolbar.toolbar .button.flat {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.primary-toolbar.toolbar .button.flat:hover {
|
||||
color: @selected_bg_color;
|
||||
}
|
||||
|
||||
.primary-toolbar.toolbar .button.flat:active,
|
||||
.primary-toolbar.toolbar .button.flat:checked {
|
||||
color: shade(@selected_bg_color, 0.9);
|
||||
}
|
||||
|
||||
/* inline-toolbar */
|
||||
.inline-toolbar.toolbar {
|
||||
-GtkToolbar-button-relief: normal;
|
||||
|
||||
padding: 4px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: @theme_bg_color;
|
||||
border-radius: 0;
|
||||
background-color: alpha(@theme_base_color,0.8);
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.inline-toolbar.toolbar:last-child {
|
||||
border-width: 1px;
|
||||
border-color: @theme_bg_color;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.inline-toolbar.toolbar .separator {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.inline-toolbar.toolbar .button {
|
||||
background-color: transparent;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.inline-toolbar.toolbar .button:hover,
|
||||
.inline-toolbar.toolbar .button:active,
|
||||
.inline-toolbar.toolbar .button:checked {
|
||||
color: @theme_selected_bg_color;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue