diff --git a/resources/themes/Dark/editing_theme.qss b/resources/themes/Dark/editing_theme.qss deleted file mode 100644 index d54401c9..00000000 --- a/resources/themes/Dark/editing_theme.qss +++ /dev/null @@ -1,943 +0,0 @@ -$light = #373b40; -$half_light = #2d2f34; -$base = #26282d; -$half_dark = #1f2023; -$dark = #141517; - -$highlight = #5281b9; -$hover = #ffffff; -$text = #d7d7d7; -$disabled = #7f7f7f; - -QMainWindow{ - background-color: $base; -} - -QWidget { - background: $base; - border: none; - color: $text; - /*font-family: "Open Sans" ;*/ - /*font-weight: 400;*/ - outline: 0; -} -QWidget:disabled { - color: $disabled; - outline: none; -} -QDockWidget { - border: 1px; - titlebar-close-icon: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_close.png); - titlebar-normal-icon: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_restore.png); -} -QDockWidget::title { - background: $half_dark; - padding-top: 6px; - padding-bottom: 6px; - padding-left: 12px; - text-align: center; -} -QDockWidget::close-button, QDockWidget::float-button { - border: 1px solid transparent; - background: $half_dark; - width: 35px; -} -QDockWidget::close-button:hover, QDockWidget::float-button:hover { - border: 1px solid transparent; - background: $half_light; -} - - -QMenu { - background-color: $base; /* sets background of the menu */ - border: none; -} -QMenu::item { - /* sets background of menu item. set this to something non-transparent - if you want menu color and menu item color to be different */ - background-color: transparent; -} -QMenu::item:selected { /* when user selects item using mouse or keyboard */ - background-color: $light; -} - - - -QMenu::separator { - height: 1px; - background: $light; -} - - -QMenuBar { - background-color: $base; -} -QMenuBar::item { - padding: 2px 8px; - margin-left: 4px; - margin-top: 5px; -} - -QMenuBar::item:selected { /* when selected using mouse or keyboard */ - background: $light; -} - -QMenuBar::item:pressed { - background: $half_dark; -} - - -QToolBar { - background: $base; - spacing: 4px; /* spacing between items in the tool bar */ - min-height: 44px; - min-width: 44px; -} -QToolBar::separator { - background: $half_light; - width: 2px; -} -QToolBar::handle:horizontal { - border-left: 2px solid $half_light; - border-right: 2px solid $half_light; - width: 1px; - background: $half_dark; - margin-left: 0px; - margin-right: 2px; -} -QToolBar::handle:vertical { - border-top: 2px solid $half_light; - border-bottom: 2px solid $half_light; - height: 1px; - background: $half_dark; - margin-top: 0px; - margin-bottom: 2px; -} - - - - - - - -QLineEdit { - color: $text; - padding: 0 8px; - background: $half_dark; - selection-background-color: $highlight; -} -QLineEdit:disabled { - background: transparent; - color: $disabled; -} -QLineEdit:read-only { - background: $base; - color: $disabled; -} - -QFrame { - background: $half_dark; -} -QLabel { - background: transparent; - padding: 2px 4px; -} -QGroupBox QLabel:disabled { - color: $disabled; - position: absolute; - top: 0px; - left: 0px; -} - - - - - -QGroupBox::indicator { - width: 14px; - height: 14px; - margin-top: 1px; -} -QGroupBox::indicator:unchecked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked.png); -} -QGroupBox::indicator:unchecked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked_hover.png); -} -QGroupBox::indicator:checked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked.png); -} -QGroupBox::indicator:checked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked_hover.png); -} - - - -QGroupBox { - font-weight:bold; - border: 1px solid $half_light; - /*font-size: 12px;*/ - padding-top: 22px; - padding-left: 12px; - padding-right: 12px; - padding-bottom: 4px; - outline: none; - margin: 0px; - -} -QGroupBox::title { - background: none; - border-bottom:1px solid $highlight; - border-top: 1px solid $half_light; - color: $text; - subcontrol-origin: margin; - subcontrol-position: top center; - padding: 4px 0px; - spacing: 8px; -} -QGroupBox::title:disabled { - color: $disabled; - text-decoration: none; -} - - - -QTabWidget::tab-bar { - left: 0px; - border: none; -} -QTabBar { - border: none; -} -QTabBar::tab { - background: $half_light; - border: 1px solid $base; - border-bottom: none; - padding: 4px 10px; - min-width: 55px; -} -QTabBar::tab:left, QTabBar::tab:right { - min-width: 15px; - min-height: 35px; - padding: 4px 6px; -} -QTabBar::tab:left:selected { - border: none; - border-left: 3px solid $highlight; -} -QTabBar::tab:left:selected:hover { - border: none; - border-left: 3px solid $highlight; -} -QTabBar::tab:left:hover { - border: none; - border-left: 1px solid $highlight; -} -QTabBar::tab:right:selected { - border: none; - border-right: 3px solid $highlight; -} -QTabBar::tab:right:selected:hover { - border: none; - border-right: 3px solid $highlight; -} -QTabBar::tab:right:hover { - border: none; - border-right: 1px solid $highlight; -} - - -QTabBar::tab:hover { - background: $light; - border-top: 1px solid $highlight; -} -QTabBar::tab:selected { - background: $base; - border-top: 3px solid $highlight; -} - -QCheckBox { - spacing: 8px; -} -QCheckBox:hover { - color: $hover; -} -QCheckBox::indicator { - width: 16px; - height: 16px; -} -QCheckBox::indicator:unchecked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked.png); -} -QCheckBox::indicator:unchecked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked_hover.png); -} -QCheckBox::indicator:unchecked:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked_disabled.png); -} -QCheckBox::indicator:checked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked.png); -} -QCheckBox::indicator:checked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked_hover.png); -} -QCheckBox::indicator:checked:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked_disabled.png); -} -QCheckBox::indicator:indeterminate { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked.png); -} - - -QRadioButton { - spacing: 8px; -} - -QRadioButton::indicator { - width: 16px; - height: 16px; -} -QRadioButton:hover { - color: $hover; -} -QRadioButton::indicator::unchecked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_unchecked.png); -} - -QRadioButton::indicator:unchecked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_unchecked_hover.png); -} - -QRadioButton::indicator:unchecked:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_unchecked_disabled.png); -} - -QRadioButton::indicator:checked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_checked.png); -} - -QRadioButton::indicator:checked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_checked_hover.png); -} - -QRadioButton::indicator:checked:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_checked_disabled.png); -} - - - - - -QScrollBar:horizontal { - background: $half_dark; - height: 16px; -} -QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { - background: $half_dark; -} -QScrollBar::handle:horizontal { - background: $light; - border: 1px solid $half_light; - border-radius: 8px; - min-width: 20px; -} -QScrollBar:vertical { - background: $half_dark; - width: 16px; -} -QScrollBar::handle:vertical { - background: $light; - border: 1px solid $half_light; - border-radius: 8px; - min-height: 20px; -} -QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal { - width: 0px; -} - QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical { - height: 0px; - } - - - - - -QToolButton { - background-color: $base; - border: 1px solid transparent; - min-width: 32px; - min-height: 32px; - color: $text; -} - -QToolButton:hover { - background-color: $half_light; - border: 1px solid $light; -} -QToolButton:pressed { - background-color: $half_dark; - border: 1px solid $half_light; -} -QToolButton:disabled { - background-color: $base; - border: 1px solid transparent; -} -QToolButton:checked { - background-color: $half_dark; - border: 1px solid $half_light; -} -QToolButton[popupMode="1"] { /* only for MenuButtonPopup */ - min-width: 60px; - padding-right: 26px; /* make way for the popup button */ - padding-left: 4px; - padding-top: 2px; - padding-bottom: 2px; -} - - - -/* the subcontrols below are used only in the MenuButtonPopup mode */ -QToolButton::menu-button { - border: 1px solid transparent; - width: 20px; -} - -QToolButton::menu-button:hover { - border: 1px solid $light; -} - - - -QDialogButtonBox QPushButton { - padding: 6px 26px; -} - -QPushButton { - background-color: $half_light; - border: 1px solid $light; - border-radius: 1px; - padding: 6px 6px; - } -QPushButton:hover { - background-color: $light; - } -QPushButton:pressed { - background-color: $half_dark; - } -QPushButton:disabled { - background-color: $half_dark; - color: $light; - } - - - - - -QAbstractSpinBox { - padding-right: 15px; /* make room for the arrows */ - background: $half_dark; -} -QAbstractSpinBox::up-button { - subcontrol-origin: border; - subcontrol-position: top right; /* position at the top right corner */ - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spinup.png) 1; -} -QAbstractSpinBox::up-button:pressed, QAbstractSpinBox::up-button:off { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spinup_pressed.png) 1; -} -QAbstractSpinBox::up-button:disabled { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spinup_disabled.png) 1; -} -QAbstractSpinBox::up-arrow { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/up_arrow.png); -} -QAbstractSpinBox::up-arrow:disabled, QAbstractSpinBox::up-arrow:off { /* off state when value is max */ - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/down_arrow_disabled.png); -} -QAbstractSpinBox::down-button { - subcontrol-origin: border; - subcontrol-position: bottom right; /* position at bottom right corner */ - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spindown.png) 1; -} -QAbstractSpinBox::down-button:pressed, QAbstractSpinBox::down-button:off { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spindown_pressed.png) 1; -} -QAbstractSpinBox::down-button:disabled { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spindown_disabled.png) 1; -} -QAbstractSpinBox::down-arrow { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/down_arrow.png); -} -QAbstractSpinBox::down-arrow:disabled, QAbstractSpinBox::down-arrow:off { /* off state when value in min */ - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/up_arrow_disabled.png); -} - - - -QComboBox { - border: none; - padding: 3px 18px 3px 6px; - min-width: 6em; -} -QComboBox QAbstractItemView { - selection-background-color: $highlight; -} -QComboBox:editable { - background: $half_dark; -} -QComboBox:!editable, QComboBox::drop-down:editable { - background: $half_light; -} -/* QComboBox gets the "on" state when the popup is open */ -QComboBox:!editable:on, QComboBox::drop-down:editable:on { - background: $light; -} -QComboBox::drop-down { - subcontrol-origin: padding; - subcontrol-position: top right; - width: 18px; - border: none; -} -QComboBox::down-arrow { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/down_arrow.png); -} - - -QSlider::groove:horizontal { - height: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ - background: $half_dark; - border: 1px solid $half_light; -} - -QSlider::handle:horizontal { - background: $highlight; - width: 7px; - margin: -5px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ - border-radius: 2px; - border: 1px solid $half_dark; -} -QSlider::add-page:horizontal { - background: $half_dark; - border: 1px solid $half_light; -} -QSlider::sub-page:horizontal { - background-color: qlineargradient(x0:0, y0:0, x1:1, y1:0, stop:0 $highlight, stop:1 $half_light); - border: 1px solid $half_light; - -} - - - - -QSlider::groove:vertical { - width: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ - background: $half_dark; - border: 1px solid $half_light; -} - -QSlider::handle:vertical { - background: $highlight; - height: 7px; - margin: 0 -5px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ - border-radius: 2px; - border: 1px solid $half_dark; -} -QSlider::add-page:vertical { - background: $half_dark; - border: 1px solid $half_light; -} -QSlider::sub-page:vertical { - background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 $half_light, stop:1 $highlight); - border: 1px solid $half_light; -} - - -QStatusBar { - background: $base; -} -QStatusBar::item { - border-left: 1px solid $half_light; -} - - -QTableView { - color: $disabled; - background-color: $half_dark; - selection-color: $text; - selection-background-color: $half_light; - gridline-color: $light; -} - -QTableView QTableCornerButton::section { - background: $half_light; - border-style: solid; - border-bottom: 1px solid $light; - border-right: 1px solid $light; -} - -QHeaderView::section { - background-color: $half_light; - color: white; - padding: 0px 4px; - border-style: solid; - border-right: 1px solid $light; - border-bottom: 1px solid $light; -} - -QHeaderView::section:checked -{ - background-color: $light; -} - -/* style the sort indicator */ -QHeaderView::down-arrow { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/down_arrow.png); -} - -QHeaderView::up-arrow { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/up_arrow.png); -} - - - - -QProgressBar { - border: 1px solid $half_light; - border-radius: 2px; - text-align: center; - background-color: $half_dark; -} - -QProgressBar::chunk { - background-color: $highlight; - width: 1px; -} - - - -QTreeView::branch:has-siblings:!adjoins-item { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_vline.png) 0; -} - -QTreeView::branch:has-siblings:adjoins-item { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_branch_more.png) 0; -} - -QTreeView::branch:!has-children:!has-siblings:adjoins-item { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_branch_end.png) 0; -} - -QTreeView::branch:has-children:!has-siblings:closed, -QTreeView::branch:closed:has-children:has-siblings { - border-image: none; - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_branch_closed.png); -} - -QTreeView::branch:open:has-children:!has-siblings, -QTreeView::branch:open:has-children:has-siblings { - border-image: none; - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_branch_open.png); -} -QTreeView::item:selected:active{ - background-color: $highlight; - color: $dark; -} -QTreeView::item:selected:!active{ - background-color: $highlight; - color: $dark; -} - - - -/*======================================*/ -QListView { - border: none; - outline: none; -} -QListView::item { - background-color: $half_dark; - min-height: 18px; -} -QListView::item:alternate { - background: $base; -} - -QListView::item:selected { - background: $highlight; - color: $hover; -} -/*=======================================*/ -QToolBox { - background: $base; -} -QToolBox::tab { - background: $half_light; - border-top: 1px solid $light; - color: $text; - padding-left: 4px; -} -QToolBox::tab:selected { - background: $half_light; - border-left: 3px solid $highlight; - color: $hover; - font-weight: bold; - padding: 4px; -} -QToolBox::tab:hover { - background: $light; - color: $hover; - padding-left: 4px; -} - - -/*=======================================*/ -color_widgets--ColorSelector { - min-width: 100px; - max-height: 30px; -} - -color_widgets--ColorWheel { - padding: 20px !important; -} - - - -noggit--ui--PaletteList::item:selected:active { - border: 1px solid $highlight; - background: transparent; - color: $text; -} -noggit--ui--TextureList::item:selected { - border: 1px solid $highlight; - background: transparent; - color: $text; -} - -QPushButton[accessibleName="map_wizard_remove_button"] { - qproperty-iconSize: 14px; - margin-left: 6px; -} -QPushButton[accessibleName="map_wizard_add_button"] { - qproperty-iconSize: 14px; -} -QPushButton[accessibleName="map_wizard_save_button"] { - qproperty-iconSize: 14px; - margin-right: 6px; -} -QPushButton[accessibleName="map_wizard_discard_button"] { - qproperty-iconSize: 14px; -} - - - -QSlider[accessibleName="texturing_brush_level_slider"]::groove:vertical { - background-color: qlineargradient(x1:0.5, y1:0, x2:0.5, y2:1, stop: 0 black, stop: 1 white); - width: 35px; - margin: 0; -} -QSlider[accessibleName="texturing_brush_level_slider"]::handle:vertical { - background-color: $highlight; - height: 5px; -} -QSlider[accessibleName="texturing_brush_level_slider"]::vertical { - width: 35px; - min-height: 100px; - max-height: 200px; -} -QSlider[accessibleName="texturing_brush_level_slider"]::add-page:vertical { - background: transparent; -} -QSlider[accessibleName="texturing_brush_level_slider"]::sub-page:vertical { - background: transparent; -} - - - -QPushButton[accessibleName="titlebar_icon"]{ - border: none; - background-color: $base; - margin-left: 3px; -} - - -QPushButton[accessibleName="titlebar_minimize"], -QPushButton[accessibleName="titlebar_maximize"], -QPushButton[accessibleName="titlebar_close"]{ - border: none; - background-color: $base; -} -QPushButton[accessibleName="titlebar_minimize"]:hover, -QPushButton[accessibleName="titlebar_maximize"]:hover, -QPushButton[accessibleName="titlebar_close"]:hover{ - border: none; - background-color: $light; -} -QPushButton[accessibleName="titlebar_minimize"]:pressed, -QPushButton[accessibleName="titlebar_maximize"]:pressed, -QPushButton[accessibleName="titlebar_close"]:pressed{ - border: none; - background-color: $half_dark; -} - -QWidget[accessibleName="FontNoggitButtonStyle"]{ - color: $highlight; -} -QWidget[accessibleName="FontNoggitButtonStyle"]:disabled{ - color: $text; -} -QWidget[accessibleName="FontAwesomeButtonStyle"]{ - color: $highlight; -} -QWidget[accessibleName="FontAwesomeButtonStyle"]:disabled{ - color: $text; -} -QWidget[accessibleName="main_menu_minimap_holder"]{ - background-color: $half_dark; -} - -QPushButton#gamePathField_browse, -QPushButton#projectPathField_browse, -QPushButton#importPathField_browse, -QPushButton#wmvLogPathField_browse{ - margin-left: 6px; -} - -QSlider[accessibleName="overlay_slider_vertical"]::vertical { - padding: 12px 5px; - background: transparent; -} -QSlider[accessibleName="overlay_slider_horizontal"]::horizontal { - padding: 5px 12px; - background: transparent; -} -QLabel[accessibleName="overlay_label"]{ - background: transparent; - color: $hover; - padding: 0 10px; -} -QTreeView[accessibleName="ab_treeview"]::item { - border: 1px solid transparent; - padding: -1px -3px; - margin: 1px; -} -QTreeView[accessibleName="ab_treeview"]::item:selected { - border: 1px solid $highlight; - color: $hover; - background: $half_light; -} - - -/* ADVANCED DOCKING SYSTEM */ - - -/* - * Default style sheet on Windows Platforms - */ -ads--CDockAreaTitleBar { - background: $base; - border: none; -} - -ads--CDockContainerWidget { - background: $base; -} - -ads--CDockContainerWidget ads--CDockSplitter::handle { - background: $base; -} - -ads--CDockAreaWidget { - background: $base; - border: none; -} - -ads--CDockWidgetTab { - background: $base; - border-right: 1px solid $half_light; - border-top: 2px solid transparent; - color: $text; - padding-left: 8px; - padding-right: 0px; - max-height: 24px; -} - -ads--CDockWidgetTab[activeTab="true"] { - background: $base; - border-top: 2px solid $highlight; - max-height: 24px; -} - -ads--CDockWidgetTab QLabel { - color: $text; - padding: 0 -8px; -} - -ads--CDockWidgetTab[activeTab="true"] QLabel { - color: $text; -} - -ads--CDockWidget { - background: $base; - border: none; -} - -ads--CTitleBarButton { - padding: 0px 0px; -} - -QScrollArea#dockWidgetScrollArea { - padding: 0px; - border: none; -} - -#tabCloseButton { - background: none; - border: none; - margin-left: 6px; - qproperty-icon: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_close.png); - qproperty-iconSize: 8px; -} - -#tabCloseButton:hover { - border: 1px solid $light; - background: $half_light; -} - -#tabCloseButton:pressed { - background: $half_dark; -} -#tabsMenuButton::menu-indicator { - image: none; -} - - -#tabsMenuButton { - background: none; - border: none; - qproperty-icon: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_undock.png); - qproperty-iconSize: 24px; -} -#tabsMenuButton:hover { - border: 1px solid $light; - background: $half_light; -} -#dockAreaCloseButton { - background: none; - border: none; - qproperty-icon: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_close.png); - qproperty-iconSize: 10px; -} -#dockAreaCloseButton:hover { - border: 1px solid $light; - background: $half_light; -} -#detachGroupButton { - background: none; - border: none; - qproperty-icon: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_restore.png); - qproperty-iconSize: 24px; -} -#detachGroupButton:hover { - border: 1px solid $light; - background: $half_light; -} \ No newline at end of file diff --git a/resources/themes/Dark/images/down_arrow.png b/resources/themes/Dark/images/down_arrow.png deleted file mode 100644 index e08b4be2..00000000 Binary files a/resources/themes/Dark/images/down_arrow.png and /dev/null differ diff --git a/resources/themes/Dark/images/down_arrow_disabled.png b/resources/themes/Dark/images/down_arrow_disabled.png deleted file mode 100644 index 1bf54acd..00000000 Binary files a/resources/themes/Dark/images/down_arrow_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/images/handle.png b/resources/themes/Dark/images/handle.png deleted file mode 100644 index d8d5ac0c..00000000 Binary files a/resources/themes/Dark/images/handle.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_branch_closed.png b/resources/themes/Dark/images/icon_branch_closed.png deleted file mode 100644 index 66d4c4b8..00000000 Binary files a/resources/themes/Dark/images/icon_branch_closed.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_branch_end.png b/resources/themes/Dark/images/icon_branch_end.png deleted file mode 100644 index d7c1036e..00000000 Binary files a/resources/themes/Dark/images/icon_branch_end.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_branch_more.png b/resources/themes/Dark/images/icon_branch_more.png deleted file mode 100644 index 4a3803ba..00000000 Binary files a/resources/themes/Dark/images/icon_branch_more.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_branch_open.png b/resources/themes/Dark/images/icon_branch_open.png deleted file mode 100644 index 5922884a..00000000 Binary files a/resources/themes/Dark/images/icon_branch_open.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_checkbox_checked.png b/resources/themes/Dark/images/icon_checkbox_checked.png deleted file mode 100644 index c6f95e19..00000000 Binary files a/resources/themes/Dark/images/icon_checkbox_checked.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_checkbox_checked_disabled.png b/resources/themes/Dark/images/icon_checkbox_checked_disabled.png deleted file mode 100644 index 44865c81..00000000 Binary files a/resources/themes/Dark/images/icon_checkbox_checked_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_checkbox_checked_hover.png b/resources/themes/Dark/images/icon_checkbox_checked_hover.png deleted file mode 100644 index d0cdd3df..00000000 Binary files a/resources/themes/Dark/images/icon_checkbox_checked_hover.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_checkbox_indeterminate.png b/resources/themes/Dark/images/icon_checkbox_indeterminate.png deleted file mode 100644 index 87ebf238..00000000 Binary files a/resources/themes/Dark/images/icon_checkbox_indeterminate.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_checkbox_indeterminate_disabled.png b/resources/themes/Dark/images/icon_checkbox_indeterminate_disabled.png deleted file mode 100644 index ee7d112d..00000000 Binary files a/resources/themes/Dark/images/icon_checkbox_indeterminate_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_checkbox_unchecked.png b/resources/themes/Dark/images/icon_checkbox_unchecked.png deleted file mode 100644 index 635898f9..00000000 Binary files a/resources/themes/Dark/images/icon_checkbox_unchecked.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_checkbox_unchecked_disabled.png b/resources/themes/Dark/images/icon_checkbox_unchecked_disabled.png deleted file mode 100644 index 3806cba2..00000000 Binary files a/resources/themes/Dark/images/icon_checkbox_unchecked_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_checkbox_unchecked_hover.png b/resources/themes/Dark/images/icon_checkbox_unchecked_hover.png deleted file mode 100644 index fd636fd2..00000000 Binary files a/resources/themes/Dark/images/icon_checkbox_unchecked_hover.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_close.png b/resources/themes/Dark/images/icon_close.png deleted file mode 100644 index de3304d7..00000000 Binary files a/resources/themes/Dark/images/icon_close.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_radiobutton_checked.png b/resources/themes/Dark/images/icon_radiobutton_checked.png deleted file mode 100644 index f7a318f9..00000000 Binary files a/resources/themes/Dark/images/icon_radiobutton_checked.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_radiobutton_checked_disabled.png b/resources/themes/Dark/images/icon_radiobutton_checked_disabled.png deleted file mode 100644 index ee0b561f..00000000 Binary files a/resources/themes/Dark/images/icon_radiobutton_checked_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_radiobutton_checked_hover.png b/resources/themes/Dark/images/icon_radiobutton_checked_hover.png deleted file mode 100644 index f747f498..00000000 Binary files a/resources/themes/Dark/images/icon_radiobutton_checked_hover.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_radiobutton_unchecked.png b/resources/themes/Dark/images/icon_radiobutton_unchecked.png deleted file mode 100644 index 20c0d769..00000000 Binary files a/resources/themes/Dark/images/icon_radiobutton_unchecked.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_radiobutton_unchecked_disabled.png b/resources/themes/Dark/images/icon_radiobutton_unchecked_disabled.png deleted file mode 100644 index 6993b4c7..00000000 Binary files a/resources/themes/Dark/images/icon_radiobutton_unchecked_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_radiobutton_unchecked_hover.png b/resources/themes/Dark/images/icon_radiobutton_unchecked_hover.png deleted file mode 100644 index e74f040b..00000000 Binary files a/resources/themes/Dark/images/icon_radiobutton_unchecked_hover.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_restore.png b/resources/themes/Dark/images/icon_restore.png deleted file mode 100644 index 15ec5e98..00000000 Binary files a/resources/themes/Dark/images/icon_restore.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_undock.png b/resources/themes/Dark/images/icon_undock.png deleted file mode 100644 index 25e317e6..00000000 Binary files a/resources/themes/Dark/images/icon_undock.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_vline.png b/resources/themes/Dark/images/icon_vline.png deleted file mode 100644 index 9d6f7ba8..00000000 Binary files a/resources/themes/Dark/images/icon_vline.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_window_close.png b/resources/themes/Dark/images/icon_window_close.png deleted file mode 100644 index ece7c28b..00000000 Binary files a/resources/themes/Dark/images/icon_window_close.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_window_maximize.png b/resources/themes/Dark/images/icon_window_maximize.png deleted file mode 100644 index 53ae289d..00000000 Binary files a/resources/themes/Dark/images/icon_window_maximize.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_window_minimize.png b/resources/themes/Dark/images/icon_window_minimize.png deleted file mode 100644 index 29bceed0..00000000 Binary files a/resources/themes/Dark/images/icon_window_minimize.png and /dev/null differ diff --git a/resources/themes/Dark/images/icon_window_restore.png b/resources/themes/Dark/images/icon_window_restore.png deleted file mode 100644 index be296504..00000000 Binary files a/resources/themes/Dark/images/icon_window_restore.png and /dev/null differ diff --git a/resources/themes/Dark/images/sizegrip.png b/resources/themes/Dark/images/sizegrip.png deleted file mode 100644 index 350583aa..00000000 Binary files a/resources/themes/Dark/images/sizegrip.png and /dev/null differ diff --git a/resources/themes/Dark/images/spindown.png b/resources/themes/Dark/images/spindown.png deleted file mode 100644 index 985fde96..00000000 Binary files a/resources/themes/Dark/images/spindown.png and /dev/null differ diff --git a/resources/themes/Dark/images/spindown_disabled.png b/resources/themes/Dark/images/spindown_disabled.png deleted file mode 100644 index dff4d750..00000000 Binary files a/resources/themes/Dark/images/spindown_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/images/spindown_hover.png b/resources/themes/Dark/images/spindown_hover.png deleted file mode 100644 index 60f49696..00000000 Binary files a/resources/themes/Dark/images/spindown_hover.png and /dev/null differ diff --git a/resources/themes/Dark/images/spindown_pressed.png b/resources/themes/Dark/images/spindown_pressed.png deleted file mode 100644 index f5ca5753..00000000 Binary files a/resources/themes/Dark/images/spindown_pressed.png and /dev/null differ diff --git a/resources/themes/Dark/images/spinup.png b/resources/themes/Dark/images/spinup.png deleted file mode 100644 index b2006071..00000000 Binary files a/resources/themes/Dark/images/spinup.png and /dev/null differ diff --git a/resources/themes/Dark/images/spinup_disabled.png b/resources/themes/Dark/images/spinup_disabled.png deleted file mode 100644 index a3ab8953..00000000 Binary files a/resources/themes/Dark/images/spinup_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/images/spinup_hover.png b/resources/themes/Dark/images/spinup_hover.png deleted file mode 100644 index 9834be28..00000000 Binary files a/resources/themes/Dark/images/spinup_hover.png and /dev/null differ diff --git a/resources/themes/Dark/images/spinup_pressed.png b/resources/themes/Dark/images/spinup_pressed.png deleted file mode 100644 index c969b749..00000000 Binary files a/resources/themes/Dark/images/spinup_pressed.png and /dev/null differ diff --git a/resources/themes/Dark/images/up_arrow.png b/resources/themes/Dark/images/up_arrow.png deleted file mode 100644 index a5364551..00000000 Binary files a/resources/themes/Dark/images/up_arrow.png and /dev/null differ diff --git a/resources/themes/Dark/images/up_arrow_disabled.png b/resources/themes/Dark/images/up_arrow_disabled.png deleted file mode 100644 index 588352fa..00000000 Binary files a/resources/themes/Dark/images/up_arrow_disabled.png and /dev/null differ diff --git a/resources/themes/Dark/nodes_theme.json b/resources/themes/Dark/nodes_theme.json deleted file mode 100644 index a15ec009..00000000 --- a/resources/themes/Dark/nodes_theme.json +++ /dev/null @@ -1,50 +0,0 @@ - -{ - "_comment": { - "$light = #373b40; 55, 59, 64": 0, - "$half_light = #2d2f34; 45, 47, 52": 0, - "$base = #26282d; 38, 40, 45": 0, - "$half_dark = #1f2023; 31, 32, 35": 0, - "$dark = #141517; 20, 21, 23": 0 - }, - "FlowViewStyle": { - "BackgroundColor": [43, 44, 48], - "FineGridColor": [51, 53, 59], - "CoarseGridColor": [31, 32, 35] - }, - "NodeStyle": { - "NormalBoundaryColor": [132, 141, 153], - "SelectedBoundaryColor": [82, 129, 185], - "GradientColor0": [66, 71, 77], - "GradientColor1": [66, 71, 77], - "GradientColor2": [66, 71, 77], - "GradientColor3": [66, 71, 77], - "ShadowColor": [20, 20, 20], - "FontColor" : "white", - "FontColorFaded" : "white", - "ConnectionPointColor": [169, 169, 169], - "FilledConnectionPointColor": "cyan", - "ErrorColor": "red", - "WarningColor": [128, 128, 0], - - "PenWidth": 1.0, - "HoveredPenWidth": 1.7, - - "ConnectionPointDiameter": 10.0, - - "Opacity": 0.8 - }, - "ConnectionStyle": { - "ConstructionColor": "gray", - "NormalColor": "darkcyan", - "SelectedColor": [100, 100, 100], - "SelectedHaloColor": "orange", - "HoveredColor": "lightcyan", - - "LineWidth": 3.0, - "ConstructionLineWidth": 2.0, - "PointDiameter": 10.0, - - "UseDataDefinedColors": true - } -} diff --git a/resources/themes/Dark/theme.qss b/resources/themes/Dark/theme.qss deleted file mode 100644 index 111b2a98..00000000 --- a/resources/themes/Dark/theme.qss +++ /dev/null @@ -1,1007 +0,0 @@ - - -QMainWindow{ - background-color: #26282d; -} - -QWidget { - background: #26282d; - border: none; - color: #d7d7d7; -/* font-family: "Segoe UI";*/ - font-size: 11px; - outline: 0; -} -QWidget:disabled { - color: #7f7f7f; - outline: none; -} -QDockWidget { - border: 1px; - titlebar-close-icon: url(themes/Dark/images/icon_close.png); - titlebar-normal-icon: url(themes/Dark/images/icon_restore.png); -} -QDockWidget::title { - background: #1f2023; - padding-top: 6px; - padding-bottom: 6px; - padding-left: 12px; - text-align: center; -} -QDockWidget::close-button, QDockWidget::float-button { - border: 1px solid transparent; - background: #1f2023; - width: 35px; -} -QDockWidget::close-button:hover, QDockWidget::float-button:hover { - border: 1px solid transparent; - background: #2d2f34; -} - - -QMenu { - background-color: #26282d; /* sets background of the menu */ - border: none; -} -QMenu::item { - /* sets background of menu item. set this to something non-transparent - if you want menu color and menu item color to be different */ - background-color: transparent; -} -QMenu::item:selected { /* when user selects item using mouse or keyboard */ - background-color: #373b40; -} - - - -QMenu::separator { - height: 1px; - background: #373b40; -} - - -QMenuBar { - background-color: #26282d; -} -QMenuBar::item { - padding: 2px 8px; - margin-left: 4px; - margin-top: 5px; -} - -QMenuBar::item:selected { /* when selected using mouse or keyboard */ - background: #373b40; -} - -QMenuBar::item:pressed { - background: #1f2023; -} - - -QToolBar { - background: #26282d; - spacing: 4px; /* spacing between items in the tool bar */ - min-height: 44px; - min-width: 44px; -} -QToolBar::separator { - background: #2d2f34; - width: 2px; -} -QToolBar::handle:horizontal { - border-left: 2px solid #2d2f34; - border-right: 2px solid #2d2f34; - width: 1px; - background: #1f2023; - margin-left: 0px; - margin-right: 2px; -} -QToolBar::handle:vertical { - border-top: 2px solid #2d2f34; - border-bottom: 2px solid #2d2f34; - height: 1px; - background: #1f2023; - margin-top: 0px; - margin-bottom: 2px; -} - - - - - - - -QLineEdit { - color: #d7d7d7; - padding: 3px 8px; - padding-top: 4px; - margin-top: 4px; - margin-bottom: 4px; - background: #1f2023; - selection-background-color: #5281b9; -} -QLineEdit:disabled { - background: transparent; - color: #7f7f7f; -} -QLineEdit:read-only { - background: #26282d; - color: #7f7f7f; -} - -QFrame { - background: #1f2023; -} -QLabel { - background: transparent; - padding: 2px 4px; -} -QGroupBox QLabel:disabled { - color: #7f7f7f; - position: absolute; - top: 0px; - left: 0px; -} - - - - - -QGroupBox::indicator { - width: 14px; - height: 14px; - margin-top: 1px; -} -QGroupBox::indicator:unchecked { - image: url(themes/Dark/images/icon_checkbox_unchecked.png); -} -QGroupBox::indicator:unchecked:hover { - image: url(themes/Dark/images/icon_checkbox_unchecked_hover.png); -} -QGroupBox::indicator:checked { - image: url(themes/Dark/images/icon_checkbox_checked.png); -} -QGroupBox::indicator:checked:hover { - image: url(themes/Dark/images/icon_checkbox_checked_hover.png); -} - - - -QGroupBox { - font-weight:bold; - border: 1px solid #2d2f34; - font-size: 12px; - padding-top: 22px; - padding-left: 12px; - padding-right: 12px; - padding-bottom: 4px; - outline: none; - margin: 0px; - -} -QGroupBox::title { - background: none; - border-bottom:1px solid #5281b9; - border-top: 1px solid #2d2f34; - color: #d7d7d7; - subcontrol-origin: margin; - subcontrol-position: top center; - padding: 4px 0px; - spacing: 8px; -} -QGroupBox::title:disabled { - color: #7f7f7f; - text-decoration: none; -} - - - -QTabWidget::tab-bar { - left: 0px; - border: none; -} -QTabBar { - border: none; -} -QTabBar::tab { - background: #2d2f34; - border: 1px solid #26282d; - border-bottom: none; - padding: 4px 10px; - min-width: 55px; -} -QTabBar::tab:left, QTabBar::tab:right { - min-width: 15px; - min-height: 35px; - padding: 4px 6px; -} -QTabBar::tab:left:selected { - border: none; - border-left: 3px solid #5281b9; -} -QTabBar::tab:left:selected:hover { - border: none; - border-left: 3px solid #5281b9; -} -QTabBar::tab:left:hover { - border: none; - border-left: 1px solid #5281b9; -} -QTabBar::tab:right:selected { - border: none; - border-right: 3px solid #5281b9; -} -QTabBar::tab:right:selected:hover { - border: none; - border-right: 3px solid #5281b9; -} -QTabBar::tab:right:hover { - border: none; - border-right: 1px solid #5281b9; -} - - -QTabBar::tab:hover { - background: #373b40; - border-top: 1px solid #5281b9; -} -QTabBar::tab:selected { - background: #26282d; - border-top: 3px solid #5281b9; -} - -QCheckBox { - spacing: 8px; -} -QCheckBox:hover { - color: #ffffff; -} -QCheckBox::indicator { - width: 16px; - height: 16px; -} -QCheckBox::indicator:unchecked { - image: url(themes/Dark/images/icon_checkbox_unchecked.png); -} -QCheckBox::indicator:unchecked:hover { - image: url(themes/Dark/images/icon_checkbox_unchecked_hover.png); -} -QCheckBox::indicator:unchecked:disabled { - image: url(themes/Dark/images/icon_checkbox_unchecked_disabled.png); -} -QCheckBox::indicator:checked { - image: url(themes/Dark/images/icon_checkbox_checked.png); -} -QCheckBox::indicator:checked:hover { - image: url(themes/Dark/images/icon_checkbox_checked_hover.png); -} -QCheckBox::indicator:checked:disabled { - image: url(themes/Dark/images/icon_checkbox_checked_disabled.png); -} -QCheckBox::indicator:indeterminate { - image: url(themes/Dark/images/icon_checkbox_checked.png); -} - - -QRadioButton { - spacing: 8px; -} - -QRadioButton::indicator { - width: 16px; - height: 16px; -} -QRadioButton:hover { - color: #ffffff; -} -QRadioButton::indicator::unchecked { - image: url(themes/Dark/images/icon_radiobutton_unchecked.png); -} - -QRadioButton::indicator:unchecked:hover { - image: url(themes/Dark/images/icon_radiobutton_unchecked_hover.png); -} - -QRadioButton::indicator:unchecked:disabled { - image: url(themes/Dark/images/icon_radiobutton_unchecked_disabled.png); -} - -QRadioButton::indicator:checked { - image: url(themes/Dark/images/icon_radiobutton_checked.png); -} - -QRadioButton::indicator:checked:hover { - image: url(themes/Dark/images/icon_radiobutton_checked_hover.png); -} - -QRadioButton::indicator:checked:disabled { - image: url(themes/Dark/images/icon_radiobutton_checked_disabled.png); -} - - - - - -QScrollBar:horizontal { - background: #1f2023; - height: 16px; -} -QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { - background: #1f2023; -} -QScrollBar::handle:horizontal { - background: #373b40; - border: 1px solid #2d2f34; - border-radius: 8px; - min-width: 20px; -} -QScrollBar:vertical { - background: #1f2023; - width: 16px; -} -QScrollBar::handle:vertical { - background: #373b40; - border: 1px solid #2d2f34; - border-radius: 8px; - min-height: 20px; -} -QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal { - width: 0px; -} - QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical { - height: 0px; - } - - - - - -QToolButton { - background-color: #26282d; - border: 1px solid transparent; - min-width: 32px; - min-height: 32px; - color: #d7d7d7; -} - -QToolButton:hover { - background-color: #2d2f34; - border: 1px solid #373b40; -} -QToolButton:pressed { - background-color: #1f2023; - border: 1px solid #2d2f34; -} -QToolButton:disabled { - background-color: #26282d; - border: 1px solid transparent; -} -QToolButton:checked { - background-color: #1f2023; - border: 1px solid #2d2f34; -} -QToolButton[popupMode="1"] { /* only for MenuButtonPopup */ - min-width: 60px; - padding-right: 26px; /* make way for the popup button */ - padding-left: 4px; - padding-top: 2px; - padding-bottom: 2px; -} - - - -/* the subcontrols below are used only in the MenuButtonPopup mode */ -QToolButton::menu-button { - border: 1px solid transparent; - width: 20px; -} - -QToolButton::menu-button:hover { - border: 1px solid #373b40; -} - - - -QDialogButtonBox QPushButton { - padding: 6px 26px; -} - -QPushButton { - background-color: #2d2f34; - border: 1px solid #373b40; - border-radius: 1px; - padding: 6px 6px; - } -QPushButton:hover { - background-color: #373b40; - } -QPushButton:pressed { - background-color: #1f2023; - } -QPushButton:disabled { - background-color: #1f2023; - color: #373b40; - } - - - - - -QAbstractSpinBox { - padding-right: 15px; /* make room for the arrows */ - background: #1f2023; - padding-left: 5px; - padding-bottom: 2px; - padding-top: 3px; -} -QAbstractSpinBox::up-button { - subcontrol-origin: border; - subcontrol-position: top right; /* position at the top right corner */ - border-image: url(themes/Dark/images/spinup.png) 1; -} -QAbstractSpinBox::up-button:pressed, QAbstractSpinBox::up-button:off { - border-image: url(themes/Dark/images/spinup_pressed.png) 1; -} -QAbstractSpinBox::up-button:disabled { - border-image: url(themes/Dark/images/spinup_disabled.png) 1; -} -QAbstractSpinBox::up-arrow { - image: url(themes/Dark/images/up_arrow.png); -} -QAbstractSpinBox::up-arrow:disabled, QAbstractSpinBox::up-arrow:off { /* off state when value is max */ - image: url(themes/Dark/images/down_arrow_disabled.png); -} -QAbstractSpinBox::down-button { - subcontrol-origin: border; - subcontrol-position: bottom right; /* position at bottom right corner */ - border-image: url(themes/Dark/images/spindown.png) 1; -} -QAbstractSpinBox::down-button:pressed, QAbstractSpinBox::down-button:off { - border-image: url(themes/Dark/images/spindown_pressed.png) 1; -} -QAbstractSpinBox::down-button:disabled { - border-image: url(themes/Dark/images/spindown_disabled.png) 1; -} -QAbstractSpinBox::down-arrow { - image: url(themes/Dark/images/down_arrow.png); -} -QAbstractSpinBox::down-arrow:disabled, QAbstractSpinBox::down-arrow:off { /* off state when value in min */ - image: url(themes/Dark/images/up_arrow_disabled.png); -} - - - -QComboBox { - border: none; - padding: 3px 18px 3px 6px; - min-width: 6em; -} -QComboBox QAbstractItemView { - selection-background-color: #5281b9; -} -QComboBox:editable { - background: #1f2023; -} -QComboBox:!editable, QComboBox::drop-down:editable { - background: #2d2f34; -} -/* QComboBox gets the "on" state when the popup is open */ -QComboBox:!editable:on, QComboBox::drop-down:editable:on { - background: #373b40; -} -QComboBox::drop-down { - subcontrol-origin: padding; - subcontrol-position: top right; - width: 18px; - border: none; -} -QComboBox::down-arrow { - image: url(themes/Dark/images/down_arrow.png); -} - - -QSlider::groove:horizontal { - height: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ - background: #1f2023; - border: 1px solid #2d2f34; -} - -QSlider::handle:horizontal { - background: #5281b9; - width: 7px; - margin: -5px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ - border-radius: 2px; - border: 1px solid #1f2023; -} -QSlider::add-page:horizontal { - background: #1f2023; - border: 1px solid #2d2f34; -} -QSlider::sub-page:horizontal { - background-color: qlineargradient(x0:0, y0:0, x1:1, y1:0, stop:0 #5281b9, stop:1 #2d2f34); - border: 1px solid #2d2f34; - -} - - - - -QSlider::groove:vertical { - width: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ - background: #1f2023; - border: 1px solid #2d2f34; -} - -QSlider::handle:vertical { - background: #5281b9; - height: 7px; - margin: 0 -5px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ - border-radius: 2px; - border: 1px solid #1f2023; -} -QSlider::add-page:vertical { - background: #1f2023; - border: 1px solid #2d2f34; -} -QSlider::sub-page:vertical { - background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #2d2f34, stop:1 #5281b9); - border: 1px solid #2d2f34; -} - - -QStatusBar { - background: #26282d; -} -QStatusBar::item { - border-left: 1px solid #2d2f34; -} - - -QTableView { - color: #7f7f7f; - background-color: #1f2023; - selection-color: #d7d7d7; - selection-background-color: #2d2f34; - gridline-color: #373b40; -} - -QTableView QTableCornerButton::section { - background: #2d2f34; - border-style: solid; - border-bottom: 1px solid #373b40; - border-right: 1px solid #373b40; -} - - - - -QHeaderView::section { - background-color: #2d2f34; - color: white; - padding: 0 4px; - padding-top: 4px; - padding-bottom: -2px; - border-style: solid; - border-right: 1px solid #373b40; - border-bottom: 1px solid #373b40; -} - -QHeaderView::section:checked -{ - background-color: #373b40; -} - -/* style the sort indicator */ -QHeaderView::down-arrow { - image: url(themes/Dark/images/down_arrow.png); -} - -QHeaderView::up-arrow { - image: url(themes/Dark/images/up_arrow.png); -} - - - - -QProgressBar { - border: 1px solid #2d2f34; - border-radius: 2px; - text-align: center; - background-color: #1f2023; -} - -QProgressBar::chunk { - background-color: #5281b9; - width: 1px; -} - - - -QTreeView::branch:has-siblings:!adjoins-item { - border-image: url(themes/Dark/images/icon_vline.png) 0; - background: #1f2023; -} -QTreeView::branch:has-siblings:!adjoins-item:selected { - background: #26282d; -} - -QTreeView::branch:has-siblings:adjoins-item { - border-image: url(themes/Dark/images/icon_branch_more.png) 0; - background: #1f2023; -} -QTreeView::branch:has-siblings:adjoins-item:selected { - background: #26282d; -} - -QTreeView::branch:!has-children:!has-siblings:adjoins-item { - border-image: url(themes/Dark/images/icon_branch_end.png) 0; - background: #1f2023; -} -QTreeView::branch:!has-children:!has-siblings:adjoins-item:selected { - background: #26282d; -} - -QTreeView::branch:has-children:!has-siblings:closed, -QTreeView::branch:closed:has-children:has-siblings { - border-image: none; - image: url(themes/Dark/images/icon_branch_closed.png); - background: #1f2023; -} -QTreeView::branch:has-children:!has-siblings:closed:selected, -QTreeView::branch:closed:has-children:has-siblings:selected { - background: #26282d; -} -QTreeView::branch:open:has-children:!has-siblings, -QTreeView::branch:open:has-children:has-siblings { - border-image: none; - image: url(themes/Dark/images/icon_branch_open.png); - background: #1f2023; -} -QTreeView::branch:open:has-children:!has-siblings:selected, -QTreeView::branch:open:has-children:has-siblings:selected { - background: #26282d; -} -QTreeView::item:selected:active{ - background-color: #26282d; - border-right: 5px solid #5281b9; - color: #ffffff; -} -QTreeView::item:selected:!active{ - background-color: #26282d; - border-right: 5px solid #5281b9; - color: #ffffff; -} -QTreeView::branch:selected{ - background-color: #26282d; -} -QTreeView::item { - border-left: 5px solid transparent; -} - - -/*======================================*/ -QListView { - border: none; - outline: none; -} -QListView::item { - background-color: #1f2023; - min-height: 18px; -} -QListView::item:alternate { - background: #26282d; -} - -QListView::item:selected { - background: #5281b9; - color: #ffffff; -} -/*=======================================*/ -QToolBox { - background: #26282d; -} -QToolBox::tab { - background: #2d2f34; - border-top: 1px solid #373b40; - color: #d7d7d7; - padding-left: 4px; -} -QToolBox::tab:selected { - background: #2d2f34; - border-left: 3px solid #5281b9; - color: #ffffff; - font-weight: bold; - padding: 4px; -} -QToolBox::tab:hover { - background: #373b40; - color: #ffffff; - padding-left: 4px; -} - - -/*=======================================*/ -color_widgets--ColorSelector { - min-width: 100px; - max-height: 30px; -} - -color_widgets--ColorWheel { - padding: 20px !important; -} - - - -Noggit-Ui--PaletteList::item:selected:active { - border: 1px solid #5281b9; - background: transparent; - color: #d7d7d7; -} -Noggit-Ui--TextureList::item:selected { - border: 1px solid #5281b9; - background: transparent; - color: #d7d7d7; -} - -QPushButton[accessibleName="map_wizard_remove_button"] { - qproperty-iconSize: 14px; - margin-left: 6px; -} -QPushButton[accessibleName="map_wizard_add_button"] { - qproperty-iconSize: 14px; -} -QPushButton[accessibleName="map_wizard_save_button"] { - qproperty-iconSize: 14px; - margin-right: 6px; -} -QPushButton[accessibleName="map_wizard_discard_button"] { - qproperty-iconSize: 14px; -} - - - -QSlider[accessibleName="texturing_brush_level_slider"]::groove:vertical { - background-color: qlineargradient(x1:0.5, y1:0, x2:0.5, y2:1, stop: 0 black, stop: 1 white); - width: 35px; - margin: 0; -} -QSlider[accessibleName="texturing_brush_level_slider"]::handle:vertical { - background-color: #5281b9; - height: 5px; -} -QSlider[accessibleName="texturing_brush_level_slider"]::vertical { - width: 35px; - min-height: 100px; - max-height: 200px; -} -QSlider[accessibleName="texturing_brush_level_slider"]::add-page:vertical { - background: transparent; -} -QSlider[accessibleName="texturing_brush_level_slider"]::sub-page:vertical { - background: transparent; -} - - - -QPushButton[accessibleName="titlebar_icon"]{ - border: none; - background-color: #26282d; - margin-left: 3px; -} - - -QPushButton[accessibleName="titlebar_minimize"], -QPushButton[accessibleName="titlebar_maximize"], -QPushButton[accessibleName="titlebar_close"]{ - border: none; - background-color: #26282d; -} -QPushButton[accessibleName="titlebar_minimize"]:hover, -QPushButton[accessibleName="titlebar_maximize"]:hover, -QPushButton[accessibleName="titlebar_close"]:hover{ - border: none; - background-color: #373b40; -} -QPushButton[accessibleName="titlebar_minimize"]:pressed, -QPushButton[accessibleName="titlebar_maximize"]:pressed, -QPushButton[accessibleName="titlebar_close"]:pressed{ - border: none; - background-color: #1f2023; -} - -QWidget[accessibleName="FontNoggitButtonStyle"]{ - color: #5281b9; -} -QWidget[accessibleName="FontNoggitButtonStyle"]:disabled{ - color: #d7d7d7; -} -QWidget[accessibleName="FontAwesomeButtonStyle"]{ - color: #5281b9; -} -QWidget[accessibleName="FontAwesomeButtonStyle"]:disabled{ - color: #d7d7d7; -} -QWidget[accessibleName="main_menu_minimap_holder"]{ - background-color: #1f2023; -} - -QPushButton#gamePathField_browse, -QPushButton#projectPathField_browse, -QPushButton#importPathField_browse, -QPushButton#wmvLogPathField_browse{ - margin-left: 6px; -} - -QPushButton#cameraXButton, -QPushButton#cameraYButton, -QPushButton#cameraZButton, -QPushButton#gizmoModeButton, -QPushButton#gizmoRotateButton, -QPushButton#gizmoScaleButton, -QPushButton#gizmoTranslateButton, -QPushButton#gizmoVisibleButton{ - font-family: "Open Sans"; - font-weight: bold; - font-size: 16px; - border-radius: 2px; - border: 1px solid #373b40; -} - - -QSlider[accessibleName="overlay_slider_vertical"]::vertical { - padding: 12px 5px; - background: transparent; -} -QSlider[accessibleName="overlay_slider_horizontal"]::horizontal { - padding: 5px 12px; - background: transparent; -} -QLabel[accessibleName="overlay_label"]{ - background: transparent; - color: #ffffff; - padding: 0 10px; -} -QTreeView[accessibleName="ab_treeview"]::item { - border-left: 5px solid transparent; - background: transparent; - padding-top: 2px; - padding-bottom: 2px; -} -QTreeView[accessibleName="ab_treeview"]::item:selected { - border-right: 5px solid #5281b9; - border-left: 5px solid transparent; - color: #ffffff; - background: #26282d; -} - -/* ADVANCED DOCKING SYSTEM */ - - -/* - * Default style sheet on Windows Platforms - */ -ads--CDockAreaTitleBar { - background: #26282d; - border: none; -} - -ads--CDockContainerWidget { - background: #26282d; -} - -ads--CDockContainerWidget ads--CDockSplitter::handle { - background: #26282d; -} - -ads--CDockAreaWidget { - background: #26282d; - border: none; -} - -ads--CDockWidgetTab { - background: #26282d; - border-right: 1px solid #2d2f34; - border-top: 2px solid transparent; - color: #d7d7d7; - padding-left: 8px; - padding-right: 0px; - max-height: 24px; -} - -ads--CDockWidgetTab:hover { - background: #2d2f34; - border-top: 1px solid #5281b9; -} - -ads--CDockWidgetTab[activeTab="true"] { - background: #26282d; - border-top: 2px solid #5281b9; - max-height: 24px; -} - -ads--CDockWidgetTab QLabel { - color: #d7d7d7; - padding: 0 -8px; -} - -ads--CDockWidgetTab[activeTab="true"] QLabel { - color: #d7d7d7; -} - -ads--CDockWidget { - background: #26282d; - border: none; -} - -ads--CTitleBarButton { - padding: 0px; -} - - -QScrollArea#dockWidgetScrollArea { - padding: 0px; - border: none; -} - -#tabCloseButton { - background: none; - border: none; - margin-left: 6px; - qproperty-icon: url(themes/Dark/images/icon_close.png); - qproperty-iconSize: 8px; -} - -#tabCloseButton:hover { - border: 1px solid #373b40; - background: #2d2f34; -} - -#tabCloseButton:pressed { - background: #1f2023; -} -#tabsMenuButton::menu-indicator { - image: none; -} - - -#tabsMenuButton { - background: none; - border: none; - qproperty-icon: url(themes/Dark/images/icon_undock.png); - qproperty-iconSize: 24px; -} -#tabsMenuButton:hover { - border: 1px solid #373b40; - background: #2d2f34; -} -#dockAreaCloseButton { - background: none; - border: none; - qproperty-icon: url(themes/Dark/images/icon_close.png); - qproperty-iconSize: 10px; -} -#dockAreaCloseButton:hover { - border: 1px solid #373b40; - background: #2d2f34; -} -#detachGroupButton { - background: none; - border: none; - qproperty-icon: url(themes/Dark/images/icon_restore.png); - qproperty-iconSize: 24px; -} -#detachGroupButton:hover { - border: 1px solid #373b40; - background: #2d2f34; -} - - -#searchButton { - padding: 4px 9px; - margin-right: 4px; -} -#__qt__passive_button { - background: #26282d; - border-top: 1px solid #2d2f34; - padding-left: 6px; -} diff --git a/resources/themes/McNet/editing_theme.qss b/resources/themes/McNet/editing_theme.qss deleted file mode 100644 index 21375dd7..00000000 --- a/resources/themes/McNet/editing_theme.qss +++ /dev/null @@ -1,411 +0,0 @@ -$window = #2e2b35; -$bright_window = #504d55; -$darken = #28252e; -$lighten = #383440; -$highlight = #be3b29; - -$alternate = #424242; -$text = #d7d7d7; -$hovered_text = #ffffff; -$disabled = #7f7f7f; -$shadow = #1b1922; - - -QWidget { - background: $window; - border: none; - color: $text; - shadow: none; -} -QDockWidget::title { - background: $window; - padding-left: 12px; -} -QDockWidget::close-button, QDockWidget::float-button { - border: 1px solid $window; - background: $bright_window; - -} - - -QMenu { - background-color: $window; /* sets background of the menu */ - border: none; -} -QMenu::item { - /* sets background of menu item. set this to something non-transparent - if you want menu color and menu item color to be different */ - background-color: transparent; -} -QMenu::item:selected { /* when user selects item using mouse or keyboard */ - background-color: $bright_window; -} - - - - - -QMenuBar { - background-color: $window; -} -QMenuBar::item { - padding: 1px 10px; -} - -QMenuBar::item:selected { /* when selected using mouse or keyboard */ - background: $bright_window; -} - -QMenuBar::item:pressed { - background: $darken; -} - - - -QToolBar { - background: $window; - spacing: 3px; /* spacing between items in the tool bar */ -} -QToolBar::separator { - background: $lighten; - width: 2px; -} -QToolBar::handle:horizontal { - border-left: 2px solid $lighten; - border-right: 2px solid $lighten; - width: 2px; - background: $darken; - margin-left: 4px; - margin-right: 4px; -} -QToolBar::handle:vertical { - border-top: 2px solid $lighten; - border-bottom: 2px solid $lighten; - height: 2px; - background: $darken; - margin-top: 4px; - margin-bottom: 4px; -} - - - - - - - -QLineEdit { - color: $text; - padding: 0 8px; - background: $darken; - selection-background-color: $highlight; -} -QLineEdit:read-only { - background: $window; -} -QFrame { - background: $darken; -} -QLabel { - background: $window; - padding: 2px 4px; -} -QGroupBox::indicator { - width: 16px; - height: 16px; - margin-top: 1px; -} -QGroupBox::indicator:unchecked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked.png); -} -QGroupBox::indicator:unchecked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked_hover.png); -} -QGroupBox::indicator:checked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked.png); -} -QGroupBox::indicator:checked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked_hover.png); -} - -QGroupBox { - font-weight: bold; - border: 1px solid $lighten; - padding-top: 28px; - padding-left: 12px; - padding-right: 12px; - padding-bottom: 4px; - border-bottom: 1px solid $lighten; - margin-bottom: 15px; -} -QGroupBox::title { - border-bottom: 1px solid $highlight; - border-top: 1px solid $lighten; - subcontrol-origin: margin; - subcontrol-position: top center; - padding: 6px 8px 6px 8px; -} - -QListView { - border: none; - outline: none; -} -QListView::item:selected { - background: $highlight; -} -QTabBar::tab { - background: $lighten; - border: 1px solid $window; - border-bottom: none; - min-width: 55px; - padding: 4px 6px; -} -QTabBar::tab:hover { - background: $bright_window; - border-top: 1px solid $highlight; -} -QTabBar::tab:selected { - background: $window; - border-top: 3px solid $highlight; -} - - - -QCheckBox { - spacing: 8px; -} -QCheckBox:hover { - color: $hovered_text; -} -QCheckBox::indicator { - width: 16px; - height: 16px; -} -QCheckBox::indicator:unchecked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked.png); -} -QCheckBox::indicator:unchecked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked_hover.png); -} -QCheckBox::indicator:unchecked:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_unchecked_disabled.png); -} -QCheckBox::indicator:checked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked.png); -} -QCheckBox::indicator:checked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked_hover.png); -} -QCheckBox::indicator:checked:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_checked_disabled.png); -} -QCheckBox::indicator:indeterminate:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_checkbox_indeterminate_pressed.png); -} - - -QRadioButton { - spacing: 8px; -} - -QRadioButton::indicator { - width: 16px; - height: 16px; -} -QRadioButton:hover { - color: $hovered_text; -} -QRadioButton::indicator::unchecked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_unchecked.png); -} - -QRadioButton::indicator:unchecked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_unchecked_hover.png); -} - -QRadioButton::indicator:unchecked:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_unchecked_disabled.png); -} - -QRadioButton::indicator:checked { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_checked.png); -} - -QRadioButton::indicator:checked:hover { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_checked_hover.png); -} - -QRadioButton::indicator:checked:disabled { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/icon_radiobutton_checked_disabled.png); -} - - - - - -QScrollBar:horizontal { - background: $lighten; - height: 12px; -} -QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { - background: $bright_window; -} -QScrollBar::handle:horizontal { - background: $darken; - min-width: 20px; -} -QScrollBar:vertical { - background: $lighten; - width: 12px; -} -QScrollBar::handle:vertical { - background: $darken; - min-height: 20px; -} -QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal { - background: $window; - width: 0px; -} - QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical { - background: $window; - height: 0px; - } - - - - - -QToolButton { - background-color: $window; -} - -QToolButton[popupMode="1"] { /* only for MenuButtonPopup */ - padding-right: 26px; /* make way for the popup button */ - padding-left: 4px; - padding-top: 2px; - padding-bottom: 2px; -} - -QToolButton:pressed { - background-color: $lighten; -} - -/* the subcontrols below are used only in the MenuButtonPopup mode */ -QToolButton::menu-button { - border: 1px solid $lighten; - width: 16px; -} - - -QDialogButtonBox QPushButton { - min-width: 60px; -} - QDialogButtonBox { - min-width: 150px; - min-height: 30px; -} - -QPushButton { - background-color: $lighten; - border: none; - border-radius: 1px; - padding: 6px 0px; - } -QPushButton:hover { - background-color: $bright_window; - } -QPushButton:pressed { - background-color: $darken; - } -QPushButton:disabled { - background-color: $darken; - color: $bright_window; - } - - - - - - - -QAbstractSpinBox { - padding-right: 15px; /* make room for the arrows */ -} -QAbstractSpinBox::up-button { - subcontrol-origin: border; - subcontrol-position: top right; /* position at the top right corner */ - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spinup.png) 1; -} -QAbstractSpinBox::up-button:pressed, QAbstractSpinBox::up-button:off { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spinup_pressed.png) 1; -} -QAbstractSpinBox::up-arrow { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/up_arrow.png); -} -QAbstractSpinBox::up-arrow:disabled, QAbstractSpinBox::up-arrow:off { /* off state when value is max */ - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/down_arrow_disabled.png); -} -QAbstractSpinBox::down-button { - subcontrol-origin: border; - subcontrol-position: bottom right; /* position at bottom right corner */ - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spindown.png) 1; -} -QAbstractSpinBox::down-button:pressed, QAbstractSpinBox::down-button:off { - border-image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/spindown_pressed.png) 1; -} -QAbstractSpinBox::down-arrow { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/down_arrow.png); -} -QAbstractSpinBox::down-arrow:disabled, QAbstractSpinBox::down-arrow:off { /* off state when value in min */ - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/up_arrow_disabled.png); -} - - - -QComboBox { - border: none; - padding: 3px 18px 3px 6px; - min-width: 6em; -} -QComboBox:editable { - background: $darken; -} -QComboBox:!editable, QComboBox::drop-down:editable { - background: $lighten; -} -/* QComboBox gets the "on" state when the popup is open */ -QComboBox:!editable:on, QComboBox::drop-down:editable:on { - background: $bright_window; -} -QComboBox::drop-down { - subcontrol-origin: padding; - subcontrol-position: top right; - width: 18px; - border: none; -} -QComboBox::down-arrow { - image: url(C:/Work/NoggitRed/binaries/bin/Release/themes/dark/images/down_arrow.png); -} - - -QSlider::groove:horizontal { - height: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ - background: $darken; - border: 1px solid $lighten; -} - -QSlider::handle:horizontal { - background: $bright_window; - width: 11px; - margin: -6px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ - border-radius: 2px; - border: 1px solid $darken; -} - - - -QStatusBar { - background: $window; -} -QStatusBar::item { - border-left: 1px solid $lighten; -} \ No newline at end of file diff --git a/resources/themes/McNet/images/down_arrow.png b/resources/themes/McNet/images/down_arrow.png deleted file mode 100644 index e08b4be2..00000000 Binary files a/resources/themes/McNet/images/down_arrow.png and /dev/null differ diff --git a/resources/themes/McNet/images/down_arrow_disabled.png b/resources/themes/McNet/images/down_arrow_disabled.png deleted file mode 100644 index 1bf54acd..00000000 Binary files a/resources/themes/McNet/images/down_arrow_disabled.png and /dev/null differ diff --git a/resources/themes/McNet/images/handle.png b/resources/themes/McNet/images/handle.png deleted file mode 100644 index d8d5ac0c..00000000 Binary files a/resources/themes/McNet/images/handle.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_branch_closed.png b/resources/themes/McNet/images/icon_branch_closed.png deleted file mode 100644 index fa785cc9..00000000 Binary files a/resources/themes/McNet/images/icon_branch_closed.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_branch_end.png b/resources/themes/McNet/images/icon_branch_end.png deleted file mode 100644 index d90a04c3..00000000 Binary files a/resources/themes/McNet/images/icon_branch_end.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_branch_more.png b/resources/themes/McNet/images/icon_branch_more.png deleted file mode 100644 index bdbe4ed9..00000000 Binary files a/resources/themes/McNet/images/icon_branch_more.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_branch_open.png b/resources/themes/McNet/images/icon_branch_open.png deleted file mode 100644 index 9dd05d64..00000000 Binary files a/resources/themes/McNet/images/icon_branch_open.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_checkbox_checked.png b/resources/themes/McNet/images/icon_checkbox_checked.png deleted file mode 100644 index c6f95e19..00000000 Binary files a/resources/themes/McNet/images/icon_checkbox_checked.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_checkbox_checked_disabled.png b/resources/themes/McNet/images/icon_checkbox_checked_disabled.png deleted file mode 100644 index 44865c81..00000000 Binary files a/resources/themes/McNet/images/icon_checkbox_checked_disabled.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_checkbox_checked_hover.png b/resources/themes/McNet/images/icon_checkbox_checked_hover.png deleted file mode 100644 index d0cdd3df..00000000 Binary files a/resources/themes/McNet/images/icon_checkbox_checked_hover.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_checkbox_indeterminate.png b/resources/themes/McNet/images/icon_checkbox_indeterminate.png deleted file mode 100644 index 87ebf238..00000000 Binary files a/resources/themes/McNet/images/icon_checkbox_indeterminate.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_checkbox_indeterminate_disabled.png b/resources/themes/McNet/images/icon_checkbox_indeterminate_disabled.png deleted file mode 100644 index ee7d112d..00000000 Binary files a/resources/themes/McNet/images/icon_checkbox_indeterminate_disabled.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_checkbox_unchecked.png b/resources/themes/McNet/images/icon_checkbox_unchecked.png deleted file mode 100644 index 635898f9..00000000 Binary files a/resources/themes/McNet/images/icon_checkbox_unchecked.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_checkbox_unchecked_disabled.png b/resources/themes/McNet/images/icon_checkbox_unchecked_disabled.png deleted file mode 100644 index 3806cba2..00000000 Binary files a/resources/themes/McNet/images/icon_checkbox_unchecked_disabled.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_checkbox_unchecked_hover.png b/resources/themes/McNet/images/icon_checkbox_unchecked_hover.png deleted file mode 100644 index fd636fd2..00000000 Binary files a/resources/themes/McNet/images/icon_checkbox_unchecked_hover.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_close.png b/resources/themes/McNet/images/icon_close.png deleted file mode 100644 index ece7c28b..00000000 Binary files a/resources/themes/McNet/images/icon_close.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_radiobutton_checked.png b/resources/themes/McNet/images/icon_radiobutton_checked.png deleted file mode 100644 index f7a318f9..00000000 Binary files a/resources/themes/McNet/images/icon_radiobutton_checked.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_radiobutton_checked_disabled.png b/resources/themes/McNet/images/icon_radiobutton_checked_disabled.png deleted file mode 100644 index ee0b561f..00000000 Binary files a/resources/themes/McNet/images/icon_radiobutton_checked_disabled.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_radiobutton_checked_hover.png b/resources/themes/McNet/images/icon_radiobutton_checked_hover.png deleted file mode 100644 index f747f498..00000000 Binary files a/resources/themes/McNet/images/icon_radiobutton_checked_hover.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_radiobutton_unchecked.png b/resources/themes/McNet/images/icon_radiobutton_unchecked.png deleted file mode 100644 index 20c0d769..00000000 Binary files a/resources/themes/McNet/images/icon_radiobutton_unchecked.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_radiobutton_unchecked_disabled.png b/resources/themes/McNet/images/icon_radiobutton_unchecked_disabled.png deleted file mode 100644 index 6993b4c7..00000000 Binary files a/resources/themes/McNet/images/icon_radiobutton_unchecked_disabled.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_radiobutton_unchecked_hover.png b/resources/themes/McNet/images/icon_radiobutton_unchecked_hover.png deleted file mode 100644 index e74f040b..00000000 Binary files a/resources/themes/McNet/images/icon_radiobutton_unchecked_hover.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_restore.png b/resources/themes/McNet/images/icon_restore.png deleted file mode 100644 index be296504..00000000 Binary files a/resources/themes/McNet/images/icon_restore.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_undock.png b/resources/themes/McNet/images/icon_undock.png deleted file mode 100644 index 25e317e6..00000000 Binary files a/resources/themes/McNet/images/icon_undock.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_vline.png b/resources/themes/McNet/images/icon_vline.png deleted file mode 100644 index 14228c8f..00000000 Binary files a/resources/themes/McNet/images/icon_vline.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_window_close.png b/resources/themes/McNet/images/icon_window_close.png deleted file mode 100644 index ece7c28b..00000000 Binary files a/resources/themes/McNet/images/icon_window_close.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_window_maximize.png b/resources/themes/McNet/images/icon_window_maximize.png deleted file mode 100644 index 53ae289d..00000000 Binary files a/resources/themes/McNet/images/icon_window_maximize.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_window_minimize.png b/resources/themes/McNet/images/icon_window_minimize.png deleted file mode 100644 index 29bceed0..00000000 Binary files a/resources/themes/McNet/images/icon_window_minimize.png and /dev/null differ diff --git a/resources/themes/McNet/images/icon_window_restore.png b/resources/themes/McNet/images/icon_window_restore.png deleted file mode 100644 index be296504..00000000 Binary files a/resources/themes/McNet/images/icon_window_restore.png and /dev/null differ diff --git a/resources/themes/McNet/images/sizegrip.png b/resources/themes/McNet/images/sizegrip.png deleted file mode 100644 index 350583aa..00000000 Binary files a/resources/themes/McNet/images/sizegrip.png and /dev/null differ diff --git a/resources/themes/McNet/images/spindown.png b/resources/themes/McNet/images/spindown.png deleted file mode 100644 index ed94cd70..00000000 Binary files a/resources/themes/McNet/images/spindown.png and /dev/null differ diff --git a/resources/themes/McNet/images/spindown_hover.png b/resources/themes/McNet/images/spindown_hover.png deleted file mode 100644 index 2659bb4c..00000000 Binary files a/resources/themes/McNet/images/spindown_hover.png and /dev/null differ diff --git a/resources/themes/McNet/images/spindown_pressed.png b/resources/themes/McNet/images/spindown_pressed.png deleted file mode 100644 index 3a8dd4e4..00000000 Binary files a/resources/themes/McNet/images/spindown_pressed.png and /dev/null differ diff --git a/resources/themes/McNet/images/spinup.png b/resources/themes/McNet/images/spinup.png deleted file mode 100644 index 9c4128bb..00000000 Binary files a/resources/themes/McNet/images/spinup.png and /dev/null differ diff --git a/resources/themes/McNet/images/spinup_hover.png b/resources/themes/McNet/images/spinup_hover.png deleted file mode 100644 index c2507c8a..00000000 Binary files a/resources/themes/McNet/images/spinup_hover.png and /dev/null differ diff --git a/resources/themes/McNet/images/spinup_pressed.png b/resources/themes/McNet/images/spinup_pressed.png deleted file mode 100644 index 4ab4c1c9..00000000 Binary files a/resources/themes/McNet/images/spinup_pressed.png and /dev/null differ diff --git a/resources/themes/McNet/images/up_arrow.png b/resources/themes/McNet/images/up_arrow.png deleted file mode 100644 index a5364551..00000000 Binary files a/resources/themes/McNet/images/up_arrow.png and /dev/null differ diff --git a/resources/themes/McNet/images/up_arrow_disabled.png b/resources/themes/McNet/images/up_arrow_disabled.png deleted file mode 100644 index 588352fa..00000000 Binary files a/resources/themes/McNet/images/up_arrow_disabled.png and /dev/null differ diff --git a/resources/themes/McNet/theme.qss b/resources/themes/McNet/theme.qss deleted file mode 100644 index ea056af3..00000000 --- a/resources/themes/McNet/theme.qss +++ /dev/null @@ -1,625 +0,0 @@ - - - - -QWidget { - background: #2e2b35; - border: none; - color: #d7d7d7; - outline: 0; -} -QWidget:disabled { - color: #7f7f7f; - outline: none; -} -QDockWidget::title { - background: #2e2b35; - padding-left: 12px; -} -QDockWidget::close-button, QDockWidget::float-button { - border: 1px solid #2e2b35; - background: #504d55; - -} - - -QMenu { - background-color: #2e2b35; /* sets background of the menu */ - border: none; -} -QMenu::item { - /* sets background of menu item. set this to something non-transparent - if you want menu color and menu item color to be different */ - background-color: transparent; -} -QMenu::item:selected { /* when user selects item using mouse or keyboard */ - background-color: #504d55; -} - - - -QMenu::separator { - height: 1px; - background: #504d55; -} - - -QMenuBar { - background-color: #2e2b35; -} -QMenuBar::item { - padding: 1px 10px; -} - -QMenuBar::item:selected { /* when selected using mouse or keyboard */ - background: #504d55; -} - -QMenuBar::item:pressed { - background: #28252e; -} - - - -QToolBar { - background: #2e2b35; - spacing: 3px; /* spacing between items in the tool bar */ - min-height: 42px; - min-width: 42px; -} -QToolBar::separator { - background: #383440; - width: 2px; -} -QToolBar::handle:horizontal { - border-left: 2px solid #383440; - border-right: 2px solid #383440; - width: 2px; - background: #28252e; - margin-left: 4px; - margin-right: 4px; -} -QToolBar::handle:vertical { - border-top: 2px solid #383440; - border-bottom: 2px solid #383440; - height: 2px; - background: #28252e; - margin-top: 4px; - margin-bottom: 4px; -} - - - - - - - -QLineEdit { - color: #d7d7d7; - padding: 0 8px; - background: #28252e; - selection-background-color: #be3b29; -} -QLineEdit:read-only { - background: #2e2b35; -} -QFrame { - background: #28252e; -} -QLabel { - background: transparent; - padding: 2px 4px; -} -QGroupBox QLabel:disabled { - color: #7f7f7f; - position: absolute; - top: 0px; - left: 0px; -} - - - - - -QGroupBox::indicator { - width: 14px; - height: 14px; - margin-top: 1px; -} -QGroupBox::indicator:unchecked { - image: url(themes/dark/images/icon_checkbox_unchecked.png); -} -QGroupBox::indicator:unchecked:hover { - image: url(themes/dark/images/icon_checkbox_unchecked_hover.png); -} -QGroupBox::indicator:checked { - image: url(themes/dark/images/icon_checkbox_checked.png); -} -QGroupBox::indicator:checked:hover { - image: url(themes/dark/images/icon_checkbox_checked_hover.png); -} - - - -QGroupBox { - font-weight: bold; - border: 1px solid #383440; - padding-top: 22px; - padding-left: 12px; - padding-right: 12px; - padding-bottom: 4px; - outline: none; - -} -QGroupBox::title { - background: none; - border-bottom: 1px solid #be3b29; - border-top: 1px solid #383440; - color: #d7d7d7; - subcontrol-origin: margin; - subcontrol-position: top center; - padding: 4px 0px; - spacing: 8px; -} - - - - - - -QTabBar::tab { - background: #383440; - border: 1px solid #2e2b35; - border-bottom: none; - padding: 4px 10px; - min-width: 55px; -} -QTabBar::tab:left, QTabBar::tab:right { - min-width: 15px; - min-height: 35px; - padding: 4px 6px; -} -QTabBar::tab:left:selected { - border: none; - border-left: 3px solid #be3b29; -} -QTabBar::tab:left:selected:hover { - border: none; - border-left: 3px solid #be3b29; -} -QTabBar::tab:left:hover { - border: none; - border-left: 1px solid #be3b29; -} -QTabBar::tab:right:selected { - border: none; - border-right: 3px solid #be3b29; -} -QTabBar::tab:right:selected:hover { - border: none; - border-right: 3px solid #be3b29; -} -QTabBar::tab:right:hover { - border: none; - border-right: 1px solid #be3b29; -} - - -QTabBar::tab:hover { - background: #504d55; - border-top: 1px solid #be3b29; -} -QTabBar::tab:selected { - background: #2e2b35; - border-top: 3px solid #be3b29; -} - -QCheckBox { - spacing: 8px; -} -QCheckBox:hover { - color: #ffffff; -} -QCheckBox::indicator { - width: 16px; - height: 16px; -} -QCheckBox::indicator:unchecked { - image: url(themes/dark/images/icon_checkbox_unchecked.png); -} -QCheckBox::indicator:unchecked:hover { - image: url(themes/dark/images/icon_checkbox_unchecked_hover.png); -} -QCheckBox::indicator:unchecked:disabled { - image: url(themes/dark/images/icon_checkbox_unchecked_disabled.png); -} -QCheckBox::indicator:checked { - image: url(themes/dark/images/icon_checkbox_checked.png); -} -QCheckBox::indicator:checked:hover { - image: url(themes/dark/images/icon_checkbox_checked_hover.png); -} -QCheckBox::indicator:checked:disabled { - image: url(themes/dark/images/icon_checkbox_checked_disabled.png); -} -QCheckBox::indicator:indeterminate { - image: url(themes/dark/images/icon_checkbox_checked.png); -} - - -QRadioButton { - spacing: 8px; -} - -QRadioButton::indicator { - width: 16px; - height: 16px; -} -QRadioButton:hover { - color: #ffffff; -} -QRadioButton::indicator::unchecked { - image: url(themes/dark/images/icon_radiobutton_unchecked.png); -} - -QRadioButton::indicator:unchecked:hover { - image: url(themes/dark/images/icon_radiobutton_unchecked_hover.png); -} - -QRadioButton::indicator:unchecked:disabled { - image: url(themes/dark/images/icon_radiobutton_unchecked_disabled.png); -} - -QRadioButton::indicator:checked { - image: url(themes/dark/images/icon_radiobutton_checked.png); -} - -QRadioButton::indicator:checked:hover { - image: url(themes/dark/images/icon_radiobutton_checked_hover.png); -} - -QRadioButton::indicator:checked:disabled { - image: url(themes/dark/images/icon_radiobutton_checked_disabled.png); -} - - - - - -QScrollBar:horizontal { - background: #28252e; - height: 16px; -} -QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal, QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { - background: #28252e; -} -QScrollBar::handle:horizontal { - background: #504d55; - border: 1px solid #383440; - border-radius: 8px; - min-width: 20px; -} -QScrollBar:vertical { - background: #28252e; - width: 16px; -} -QScrollBar::handle:vertical { - background: #504d55; - border: 1px solid #383440; - border-radius: 8px; - min-height: 20px; -} -QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal { - width: 0px; -} - QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical { - height: 0px; - } - - - - - -QToolButton { - background-color: #2e2b35; - border: 1px solid transparent; - padding: 0px; - width: 30px; - height: 30px; - color: #d7d7d7; -} - -QToolButton:hover { - background-color: #383440; - border: 1px solid #504d55; -} -QToolButton:pressed { - background-color: #28252e; - border: 1px solid #383440; -} -QToolButton:selected { - background-color: #28252e; - border: 1px solid #383440; - -} - -QToolButton[popupMode="1"] { /* only for MenuButtonPopup */ - min-width: 60px; - padding-right: 26px; /* make way for the popup button */ - padding-left: 4px; - padding-top: 2px; - padding-bottom: 2px; -} - - - -/* the subcontrols below are used only in the MenuButtonPopup mode */ -QToolButton::menu-button { - border: 1px solid #383440; - width: 20px; -} - -QToolButton::menu-button:hover { - border: 1px solid #504d55; -} - - - -QDialogButtonBox QPushButton { - padding: 6px 26px; -} - /*QDialogButtonBox { - min-width: 250px; - min-height: 35px; -}*/ - -QPushButton { - background-color: #383440; - border: 1px solid #504d55; - border-radius: 1px; - padding: 6px 6px; - } -QPushButton:hover { - background-color: #504d55; - } -QPushButton:pressed { - background-color: #28252e; - } -QPushButton:disabled { - background-color: #28252e; - color: #504d55; - } - - - - - -QAbstractSpinBox { - padding-right: 15px; /* make room for the arrows */ - background: #28252e; -} -QAbstractSpinBox::up-button { - subcontrol-origin: border; - subcontrol-position: top right; /* position at the top right corner */ - border-image: url(themes/dark/images/spinup.png) 1; -} -QAbstractSpinBox::up-button:pressed, QAbstractSpinBox::up-button:off { - border-image: url(themes/dark/images/spinup_pressed.png) 1; -} -QAbstractSpinBox::up-button:disabled { - border-image: url(themes/dark/images/spinup_disabled.png) 1; -} -QAbstractSpinBox::up-arrow { - image: url(themes/dark/images/up_arrow.png); -} -QAbstractSpinBox::up-arrow:disabled, QAbstractSpinBox::up-arrow:off { /* off state when value is max */ - image: url(themes/dark/images/down_arrow_disabled.png); -} -QAbstractSpinBox::down-button { - subcontrol-origin: border; - subcontrol-position: bottom right; /* position at bottom right corner */ - border-image: url(themes/dark/images/spindown.png) 1; -} -QAbstractSpinBox::down-button:pressed, QAbstractSpinBox::down-button:off { - border-image: url(themes/dark/images/spindown_pressed.png) 1; -} -QAbstractSpinBox::down-button:disabled { - border-image: url(themes/dark/images/spindown_disabled.png) 1; -} -QAbstractSpinBox::down-arrow { - image: url(themes/dark/images/down_arrow.png); -} -QAbstractSpinBox::down-arrow:disabled, QAbstractSpinBox::down-arrow:off { /* off state when value in min */ - image: url(themes/dark/images/up_arrow_disabled.png); -} - - - -QComboBox { - border: none; - padding: 3px 18px 3px 6px; - min-width: 6em; -} -QComboBox:editable { - background: #28252e; -} -QComboBox:!editable, QComboBox::drop-down:editable { - background: #383440; -} -/* QComboBox gets the "on" state when the popup is open */ -QComboBox:!editable:on, QComboBox::drop-down:editable:on { - background: #504d55; -} -QComboBox::drop-down { - subcontrol-origin: padding; - subcontrol-position: top right; - width: 18px; - border: none; -} -QComboBox::down-arrow { - image: url(themes/dark/images/down_arrow.png); -} - - -QSlider::groove:horizontal { - height: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ - background: #28252e; - border: 1px solid #383440; -} - -QSlider::handle:horizontal { - background: #be3b29; - width: 7px; - margin: -5px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ - border-radius: 2px; - border: 1px solid #28252e; -} -QSlider::add-page:horizontal { - background: #28252e; - border: 1px solid #383440; -} -QSlider::sub-page:horizontal { - background-color: qlineargradient(x0:0, y0:0, x1:1, y1:0, stop:0 #be3b29, stop:1 #2e2b35); - border: 1px solid #383440; - -} - - - - -QSlider::groove:vertical { - width: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ - background: #28252e; - border: 1px solid #383440; -} - -QSlider::handle:vertical { - background: #be3b29; - height: 7px; - margin: 0 -5px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ - border-radius: 2px; - border: 1px solid #28252e; -} -QSlider::add-page:vertical { - background: #28252e; - border: 1px solid #383440; -} -QSlider::sub-page:vertical { - background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #2e2b35, stop:1 #be3b29); - border: 1px solid #383440; -} - - -QStatusBar { - background: #2e2b35; -} -QStatusBar::item { - border-left: 1px solid #383440; -} - - -QTableView { - color: #7f7f7f; - background-color: #28252e; - selection-color: #d7d7d7; - selection-background-color: #383440; - gridline-color: #504d55; -} - -QTableView QTableCornerButton::section { - background: #383440; - border-style: solid; - border-bottom: 1px solid #504d55; - border-right: 1px solid #504d55; -} - -QHeaderView::section { - background-color: #383440; - color: white; - padding: 0px 4px; - border-style: solid; - border-right: 1px solid #504d55; - border-bottom: 1px solid #504d55; -} - -QHeaderView::section:checked -{ - background-color: #504d55; -} - -/* style the sort indicator */ -QHeaderView::down-arrow { - image: url(themes/dark/images/down_arrow.png); -} - -QHeaderView::up-arrow { - image: url(themes/dark/images/up_arrow.png); -} - - - - -QProgressBar { - border: 1px solid #383440; - border-radius: 2px; - text-align: center; - background-color: #28252e; -} - -QProgressBar::chunk { - background-color: #be3b29; - width: 1px; -} - - - -QTreeView::branch:has-siblings:!adjoins-item { - border-image: url(themes/dark/images/vline.png) 0; -} - -QTreeView::branch:has-siblings:adjoins-item { - border-image: url(themes/dark/images/icon_branch_more.png) 0; -} - -QTreeView::branch:!has-children:!has-siblings:adjoins-item { - border-image: url(themes/dark/images/icon_branch_end.png) 0; -} - -QTreeView::branch:has-children:!has-siblings:closed, -QTreeView::branch:closed:has-children:has-siblings { - border-image: none; - image: url(themes/dark/images/icon_branch_closed.png); -} - -QTreeView::branch:open:has-children:!has-siblings, -QTreeView::branch:open:has-children:has-siblings { - border-image: none; - image: url(themes/dark/images/icon_branch_open.png); -} - -QListView { - border: none; - outline: none; -} -QListView::item { - background-color: #28252e; - min-height: 18px; -} - -/*======================================*/ - -QListView::item:alternate { - background: #1b1922; -} - -QListView::item:selected { - background: #be3b29; -} - -/*=======================================*/ - - -color_widgets--ColorSelector { - min-width: 100px; - max-height: 30px; -}