diff --git a/stuff/config/qss/dark/dark.less b/stuff/config/qss/dark/dark.less deleted file mode 100644 index 629884e..0000000 --- a/stuff/config/qss/dark/dark.less +++ /dev/null @@ -1,1598 +0,0 @@ -// out: dark.qss -/* LESS Definitions */ - -/*Image URL*/ -@image_url: "imgs"; -@platform_font: "Segoe UI", "Lucida Grande"; -/*Text Color*/ -@m_baseTxtColor: rgb(190,190,190); -@m_baseInputColor: rgb(220,220,220); -@m_baseDarkInputColor: rgb(205,205,205); -@m_disabledTxtColor: rgb(128,128,128); - -@m_baseBG: rgb(48,48,48); -@m_base_lightH: rgb(88,88,88); -@m_base_lightV: rgb(108,108,108); -@m_base_darkH: rgb(12,12,12); -@m_base_darkV: rgb(0,0,0); - -/*Used in Dialog border*/ -@m_dialog_border_color: rgb(0,0,0); - -/*Color for Selected Item*/ -@m_selectedBG: rgb(68,128,68); -@m_selectedText: rgb(88,228,88); - -/*Color for title texts*/ -@m_titleTxtColor: lighten(@m_selectedBG, 10%); - -/* color adjustable by delta */ -.baseBG(@dark: 0%){ - background-color: darken(@m_baseBG, @dark); -} -.baseBG(light, @light: 0%){ - background-color: lighten(@m_baseBG, @light); -} - -.set_border_color(@lefttop, @rightbottom){ - border-left-color: @lefttop; - border-top-color: @lefttop; - border-right-color: @rightbottom; - border-bottom-color: @rightbottom; -} - -.base_inset(@dark: 0%){ - .baseBG(@dark); - border-style: inset; - border-left-color: darken(@m_base_darkH, @dark); - border-top-color: darken(@m_base_darkV, @dark); - border-right-color: darken(@m_base_lightH, @dark); - border-bottom-color: darken(@m_base_lightV, @dark); -} -.base_inset(light, @light: 0%){ - .baseBG(light, @light); - border-style: inset; - border-left-color: lighten(@m_base_darkH, @light); - border-top-color: lighten(@m_base_darkV, @light); - border-right-color: lighten(@m_base_lightH, @light); - border-bottom-color: lighten(@m_base_lightV, @light); -} - -.base_outset(@dark: 0%){ - .baseBG(@dark); - border-style: outset; - border-left-color: darken(@m_base_lightH, @dark); - border-top-color: darken(@m_base_lightV, @dark); - border-right-color: darken(@m_base_darkH, @dark); - border-bottom-color: darken(@m_base_darkV, @dark); -} -.base_outset(light, @light: 0%){ - .baseBG(light, @light); - border-style: outset; - border-left-color: lighten(@m_base_lightH, @light); - border-top-color: lighten(@m_base_lightV, @light); - border-right-color: lighten(@m_base_darkH, @light); - border-bottom-color: lighten(@m_base_darkV, @light); -} - -/*set padding*/ -.set_padding(@hPad: 0px, @vPad: 0px){ - padding-left: @hPad; - padding-right: @hPad; - padding-top: @vPad; - padding-bottom: @vPad; -} -/*set margin*/ -.set_margin(@hMgn: 0px, @vMgn: 0px) { - margin-left: @hMgn; - margin-right: @hMgn; - margin-top: @vMgn; - margin-bottom: @vMgn; -} - -/* ------ Qt Widgets Common Difinitions ------ */ - -QMenu, -QMenuBar, -QMainWindow, -QWidget { - color: @m_baseTxtColor; - .baseBG; - font-family: @platform_font; - font-size: 12px; - font-weight: normal; - &:disabled{ - color: @m_disabledTxtColor; - } -} - -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} - -QDialog -{ - .baseBG; -} - -QMainWindow::separator -{ - background: yellow; - width: 10px; /* when vertical */ - height: 10px; /* when horizontal */ -} - -QToolTip, #helpTooltip -{ - border: 1px solid black; - background-color: rgb(255,255,225); - padding: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - .baseBG; - alternate-background-color: lighten(@m_baseBG, 5%); - - &::item:selected - { - background-color: @m_selectedBG; - color: black; - } - &::item - { - color: @m_baseTxtColor; - } - -} -QStatusBar { - background-color: rgb(192,192,192); - - &::item { - border-width: 0; - } - & QLabel { - background-color: rgb(192,192,192); - } - & #StatusBarLabel { - background-color: rgb(255,255,255); - .set_padding( 3px, 1px ); - } -} -QMenuBar -{ - .baseBG(0%); - &::item:selected{ - .baseBG(light, 10%); - border-width: 1px; - } -} - -QMenu -{ - .baseBG(5%); - &::item { - &:selected{ - background: @m_selectedBG; - color: @m_baseInputColor; - } - &:disabled{ - .baseBG; - color: @m_disabledTxtColor; - } - &:disabled:selected{ - background: rgb(108,108,108); - } - } - - &::separator { - .baseBG(light, 10%); - .set_margin(0px,2px); - border-width: 1px; - height: 2px; - } -} - -QToolBar -{ - .baseBG; - border-width: 0px; - /* border-top: 1px solid rgb(88, 88, 88); */ - margin: 0px; - padding: 0px; - border-image: none; - - &::separator:horizontal { - image: url("@{image_url}/bottomseparator.png"); - } - &::separator:vertical { - image: url("@{image_url}/separator.png"); - } - - & QToolButton { - .baseBG; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; - &:hover { - border-image: url("@{image_url}/over.png") 2; - border-radius: 4px; - } - &:checked, - &:pressed { - border-image: url("@{image_url}/click.png") 2; - border-radius: 4px; - } - &:disabled{ - .baseBG(light, 5%); - color: @m_disabledTxtColor; - } - &::menu-indicator - { - image: none; - } - &::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ - } - } - - & QLabel - { - .baseBG; - margin-top: 1px; - border-width: 2; - } - - & QToolBar - { - border-width: 0px; - } -} - -QLineEdit { - /*darken little bit*/ - color: @m_baseDarkInputColor; - .baseBG(5%); - border-width: 1px; - border-radius: 2px; - border: 1px solid rgb(78, 78, 78); - &:disabled { - .baseBG(light, 10%); - color: @m_disabledTxtColor; - } -} -QComboBox { - /*darken little bit*/ - color: @m_baseDarkInputColor; - .baseBG(5%); - border: 1px solid rgb(78, 78, 78); - .set_padding( 1px, 1px ); - border-radius: 3px; - padding-left: 4px; - /*arrow button*/ - &::drop-down { - .baseBG(5%); - border-width: 2px; - border-radius: 3px; - /*pressed state*/ - &:on { - /*.base_inset;*/ - } - &:disabled { - .baseBG(light, 10%); - } - } - /*arrow button triangle*/ - &::down-arrow { - image: url("@{image_url}/combo_down_arrow.png"); - } - &:disabled { - .baseBG(light, 10%); - border: 1px solid rgb(78, 78, 78); - color: @m_disabledTxtColor; - } -} - -QComboBox QAbstractItemView { - outline: 0px; - selection-background-color: @m_selectedBG; -} - -QPushButton { - /* .base_outset; */ - color: darken(@m_baseInputColor, 5); - border: 1px solid rgb(102,102,102); - border-radius: 4px; - .set_padding(15px, 3px); - &:checked { - .base_inset(light, 5%); - } - &:pressed { - .baseBG(light, 7%); - } - /*lighten lilttle bit when hover*/ - &:hover { - .baseBG(light, 10%); - &:pressed { - .baseBG(light, 7%); - } - &:checked { - .base_inset(light, 5%); - } - } - /*lighten lilttle bit when pressed*/ - &:disabled{ - .baseBG(light, 5%); - color: rgb(80,80,80); - } -} - -#PushButton_NoPadding { - .set_padding(3px, 3px); -} - -QCheckBox { - &:hover { - .baseBG(light, 10%); - border-radius: 2px; - } - &:disabled { - color: @m_disabledTxtColor; - } - &::indicator { - width: 11px; - height: 11px; - .baseBG(5%); - border: 1px solid rgb(108, 108, 108); - border-radius: 2px; - &:disabled { - .baseBG(light, 5%); - border: 1px solid rgb(108, 108, 108); - } - &:checked { - image: url("@{image_url}/check_indicator.png"); - &:disabled { - image: url("@{image_url}/check_indicator_disabled.png"); - } - } - } -} - -QSlider { - &::groove:horizontal { - .baseBG(10%); - border-bottom: 1px solid rgb(69, 69, 69); - height: 2px; - margin: 1px; - } - &::handle:horizontal { - .baseBG(light, 30%); - border-radius: 4px; - /*border-width: 2px;*/ - width: 8px; - margin: -8px 0px; /* expand outside the groove */ - } -} - -QGroupBox { - border: 1px solid rgb(88, 88, 88); - margin: 6px 0 3px 0; - padding: 5px 3px; - border-radius: 3px; - - &::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; - &:disabled{ - color: @m_disabledTxtColor; - } - } - &::indicator { - &:extend(QCheckBox::indicator all); - } - &:disabled{ - color: @m_base_darkH; - border-color: @m_disabledTxtColor; - } -} -/* between the Studio Palette and the Style Editor */ -QSplitter::handle -{ - background-color: lighten(@m_baseBG, 5); -} - -/* ------ Toonz Classes Difinitions ------ */ - -TPanel { - /*Used for dialog border*/ - background-color: @m_dialog_border_color; -} - -TPanelTitleBar{ - qproperty-BorderPixmap: url("@{image_url}/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("@{image_url}/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("@{image_url}/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("@{image_url}/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: rgb(192,192,192); - qproperty-ActiveTitleColor: rgb(255,255,255); -} - -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer -{ - margin: 0px; - padding: 0px; - & QToolBar - { - border: 1px; - .baseBG; - & QToolButton - { - margin: 0px; - padding: 1px; - border: 0px; - } - } - & #keyFrameNavigator - { - border: 0px; - } -} -#TabBarContainer{ - qproperty-BottomAboveLineColor: @m_baseBG; - qproperty-BottomBelowLineColor: rgb(132, 132, 132); - .baseBG(5%); - & #ScrollLeftButton, - & #ScrollRightButton{ - margin-top: 1px; - } -} -#PaletteTabBar, -#FxSettingsTabBar{ - .baseBG(5%); - border-bottom: 1px solid rgb(88, 88, 88); - &::tab { - .set_padding( 7px, 2px ); - .baseBG(5%); /* for non selected tab */ - border: 1px solid rgb(88, 88, 88); - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - margin-top: 3px; /* for non selected tab */ - border-bottom-color: @m_base_lightV; /* for non selected tab */ - - &:selected { - .baseBG; - border: 1px solid rgb(132, 132, 132); - border-bottom-color: @m_baseBG; /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; - margin-top: 2px; - } - - &:first { - margin-left: 2px; /* the first selected tab has nothing to overlap with on the left */ - } - - &:last { - margin-right: 0px; /* the last selected tab has nothing to overlap with on the right */ - } - - &:only-one { - margin: 0px; - margin-top: 2px; - margin-left: 2px; - /*margin-left 2px; /* if there is only one tab, we don't want overlapping margins */ - } - } -} - -#PaletteLockButton{ - &:hover{ - border-image: url("@{image_url}/over_yellow.png") 2; - } - &:checked{ - border-image: url("@{image_url}/click_pink.png") 2; - &:hover{ - border-image: url("@{image_url}/over_pressed_yellow.png") 2; - } - } -} - -#PageViewer{ - qproperty-TextColor: @m_baseTxtColor; -} - -/* ------ Style Editor ------ */ -#StyleEditor { - border: 0px; - QPushButton { - margin: 1px; - margin-top: 3px; - min-width:10px; - padding: 4px; - padding-top: 2px; - padding-bottom: 2px; - &:checked { - .baseBG(light, 10%); - border: 1px solid rgb(132, 132, 132); - } - &:hover { - .baseBG(light, 15%); - border: 1px solid rgb(132, 132, 132); - &:checked { - .baseBG(light, 20%); - &:pressed { - .baseBG(light, 13%); - } - } - } - &:pressed { - .baseBG(light, 13%); - } - } - QLineEdit { - min-width: 28px; - max-width: 30px; - } -} - - -#StyleEditorTabBar { - border-bottom: 1px solid rgb(88, 88, 88); - QPushButton { - margin: 10px; - } - .baseBG(5%); - &::tab{ - .set_padding( 2px, 2px ); - .baseBG(5%); /* for non selected tab */ - border: 1px solid rgb(88, 88, 88); - /* min-width: 60px; */ - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - margin-top: 3px; /* for non selected tab */ - border-bottom-color: @m_base_lightV; /* for non selected tab */ - - font-size: 11px; - min-width: 40px; - - &:selected { - .baseBG; - border: 1px solid rgb(132, 132, 132); - border-bottom-color: @m_baseBG; /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; - margin-top: 2px; - } - &:first:selected { - margin-left: 0px; /* the first selected tab has nothing to overlap with on the left */ - } - &:last:selected { - margin-right: 0px; /* the last selected tab has nothing to overlap with on the right */ - } - &:only-one { - margin: 0px; - margin-top: 2px; - margin-left: 1px; - } - } -} - -#HexagonalColorWheel { - qproperty-BGColor: @m_baseBG; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider { - &::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; - } - &::handle:horizontal { - width: 8px; - margin: -8px -4px; - } -} - -#colorSliderAddButton, -#colorSliderSubButton -{ - /* border-image: url("@{image_url}/colorslider_button_bg.png")2;*/ - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; - min-height: 8px; - max-width: 14px; -} - -#colorSliderAddButton -{ - image: url("@{image_url}/colorslider_add.png"); - &:pressed { - image: url("@{image_url}/colorslider_add_pressed.png"); - } -} - -#colorSliderSubButton -{ - image: url("@{image_url}/colorslider_sub.png"); - &:pressed { - image: url("@{image_url}/colorslider_sub_pressed.png"); - } -} - -#PlainColorPageParts -{ - .baseBG; - border: 0px; -} - -#colorSliderLabel, -#colorSliderField -{ - font-size: 12px; - min-height:12px; -} - -#colorSliderField { - color: @m_baseInputColor; -} - -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: rgb(225,225,225); - - &:hover { - background-color: rgb(245,245,245); - } - &:pressed { - background-color: rgb(215,215,215); - } -} - -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} - -#ScrollLeftButton { - image: url("@{image_url}/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("@{image_url}/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("@{image_url}/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("@{image_url}/down_arrow_black.png"); - border-top: 1px solid black; -} - -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - .baseBG(15%); - - & #ToolBarContainer - { - border-top: 1px solid @m_base_lightV; - margin-top: 1px; - padding-top: 3px; - } -} - -FlipBook #ToolBarContainer -{ - border-top: 1px solid @m_base_lightV; - margin-top: 1px; - padding-top: 3px; -} - -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} - -#ViewerFpsSlider -{ - .baseBG(10%); - .set_margin(19px, 0px); - border: 1px solid rgb(88, 88, 88); - height: 21px; - - &::handle { - border-image: url("@{image_url}/handle_border.png")6; - border-width: 6px; - image: none; - min-width: 5px; - } - &::add-line { - image: url("@{image_url}/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; - &:pressed { - image: url("@{image_url}/fpssb_g_rarrow_pressed.png"); - } - } - &::sub-line { - image: url("@{image_url}/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; - &:pressed { - image: url("@{image_url}/fpssb_g_larrow_pressed.png"); - } - } -} - -#FlipConsolePlayToolBar{ - border: none; - & QToolButton { - height: 14px; - } -} - -FlipSlider { - qproperty-PBHeight: 20; - - qproperty-PBOverlay: url("@{image_url}/flipslider.png"); - qproperty-PBMarker: url("@{image_url}/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - - qproperty-notStartedColor: rgb(204,34,34); - qproperty-startedColor: rgb(200,128,128); - qproperty-baseColor: #626262; - qproperty-baseColor: #242424; -} - -Ruler { - qproperty-ParentBGColor: rgb(48,48,48); - qproperty-ScaleColor: rgb(230,230,230); -} - -#ComboViewerToolOptions{ - border-top: 1px solid rgb(132, 132, 132); - /*.base_outset;*/ -} -#RulerToolOptionValues{ - color: black; -} - -/*-----------File Browser------------*/ -#DirTreeView, #FunctionEditorTree, #ShortcutTree, #FxTreeView -{ - alternate-background-color: lighten(@m_baseBG, 5%); - border-top: 1px solid rgb(132, 132, 132); - .baseBG; - margin: 0px; -} -#DirTreeView::branch { - &:adjoins-item { - border-image: url("@{image_url}/tree_branch-end.png") 0; - } - - &:has-siblings { - border-image: url("@{image_url}/tree_vline.png") 0; - &:adjoins-item - { - border-image: url("@{image_url}/tree_branch-more.png") 0; - } - } - &:has-children { - &:closed { - border-image: none; - image: url("@{image_url}/tree_branch-closed_nosib.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree_branch-open_nosib.png"); - } - - &:has-siblings { - &:closed { - border-image: none; - image: url("@{image_url}/tree_branch-closed.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree_branch-open.png"); - } - } - } -} - -DvItemViewerPanel { - qproperty-TextColor: @m_baseTxtColor; - qproperty-AlternateBackground: #3d3d3d; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: rgb(130, 190, 130); - qproperty-SelectedItemBackground: @m_selectedBG; -} - -DvDirTreeView { - qproperty-TextColor: @m_baseTxtColor; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: rgb(130, 190, 130); - qproperty-SelectedFolderTextColor: rgb(0,30,0); - qproperty-SelectedItemBackground: @m_selectedBG; - alternate-background-color: lighten(@m_baseBG, 5%); -} - -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid rgb(88, 88, 88); - margin-bottom: 5px; - border-radius: 3px; -} - -#TitleTxtLabel{ - color: @m_titleTxtColor; -} - -#PsdSettingsGroupBox { - border: 1px solid @m_selectedBG; -} - -#FileDoesNotExistLabel { - color: rgb(255,50,50); -} - -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("@{image_url}/handle_border.png")5; - image: url("@{image_url}/plus.png"); - image-position: center center; - - &:checked { - image: url("@{image_url}/minus.png"); - } -} - -ParamsPage { - qproperty-TextColor: @m_baseTxtColor; -} - -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea -{ - border:0px; -} - -#FunctionSegmentViewer -{ - .baseBG; - border-width: 0px; -} - -#xsheetArea, #ScrollArea -{ - .baseBG(10%); - border-width: 0px; -} - -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: rgb(230,230,120); -} -#xsheetColumnAreaMenu_Lock { - background-color: rgb(245,245,245); -} -#xsheetColumnAreaMenu_Camstand { - background-color: rgb(255,164,128); -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; - &:selected { - background-color: rgb(0,0,128); - } -} - -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; - } - - #XSheetToolbar { - margin: 0; - padding: 0; - border: 0; - &::separator:horizontal { - margin-right: 4; - margin-left: 4; - } - } - -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid rgb(15, 15, 15); - - &:vertical { - width: 16px; - .set_margin( 0px, 16px ); - } - &:horizontal { - height: 16px; - .set_margin( 16px, 0px ); - } - - &::handle { - border-width: 3; - image-position: center center; - &:vertical { - border-image: url("@{image_url}/sb_g_vhandle.png")3; - image: url("@{image_url}/sb_g_vline.png"); - min-height: 40px; - } - - &:horizontal { - border-image: url("@{image_url}/sb_g_hhandle.png")3; - image: url("@{image_url}/sb_g_hline.png"); - min-width: 40px; - } - } - /* buttons */ - &::add-line { - subcontrol-origin: margin; - &:vertical { - image: url("@{image_url}/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; - &:pressed { - image: url("@{image_url}/sb_g_downarrow_pressed.png"); - } - } - &:horizontal { - image: url("@{image_url}/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; - &:pressed{ - image: url("@{image_url}/sb_g_rarrow_pressed.png"); - } - } - } - - &::sub-line { - subcontrol-origin: margin; - &:vertical { - image: url("@{image_url}/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; - &:pressed { - image: url("@{image_url}/sb_g_uparrow_pressed.png"); - } - } - &:horizontal { - image: url("@{image_url}/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; - &:pressed{ - image: url("@{image_url}/sb_g_larrow_pressed.png"); - } - } - } - - &::add-page, &::sub-page { - .baseBG(5%); - } -} - -#noteTextEdit{ - color: black; -} - -XsheetViewer { - qproperty-TextColor: rgb(230,230,230); - qproperty-BGColor: rgb(72,72,72); - qproperty-LightLineColor: rgb(32,32,32); - qproperty-MarkerLineColor: rgb(30, 150, 196); - qproperty-VerticalLineColor: rgb(120,120,120); - qproperty-VerticalLineHeadColor: rgb(160,160,160); - qproperty-PreviewFrameTextColor: rgb(150, 230, 230); - qproperty-CurrentRowBgColor: rgb(80,96,130); - - qproperty-EmptyColumnHeadColor: rgb(96,96,96); - qproperty-SelectedColumnTextColor: rgb(230, 100, 100); - - qproperty-EmptyCellColor: rgb(64,64,64); - qproperty-NotEmptyColumnColor: rgb(72,72,72); - qproperty-SelectedEmptyCellColor: rgb(108,108,108); - - qproperty-LevelColumnColor: rgb(76,110,76); - qproperty-LevelColumnBorderColor: rgb(143,179,143); - qproperty-SelectedLevelColumnColor: rgb(107,140,107); - - qproperty-VectorColumnColor: rgb(123,123,76); - qproperty-VectorColumnBorderColor: rgb(187,187,154); - qproperty-SelectedVectorColumnColor: rgb(140,140,96); - - qproperty-ChildColumnColor: rgb(106,82,107); - qproperty-ChildColumnBorderColor: rgb(177,163,179); - qproperty-SelectedChildColumnColor: rgb(122,97,122); - - qproperty-FullcolorColumnColor: rgb(101,122,150); - qproperty-FullcolorColumnBorderColor: rgb(158,184,187); - qproperty-SelectedFullcolorColumnColor: rgb(136,150,167); - - qproperty-FxColumnColor: rgb(86,85,60); - qproperty-FxColumnBorderColor: rgb(149,149,138); - qproperty-SelectedFxColumnColor: rgb(106,109,90); - - qproperty-ReferenceColumnColor: rgb(97,97,97); - qproperty-ReferenceColumnBorderColor: rgb(162,162,162); - qproperty-SelectedReferenceColumnColor: rgb(130,130,130); - - qproperty-PaletteColumnColor: rgb(58,101,95); - qproperty-PaletteColumnBorderColor: rgb(134,172,167); - qproperty-SelectedPaletteColumnColor: rgb(95,133,129); - - qproperty-MeshColumnColor: rgb(104,77,134); - qproperty-MeshColumnBorderColor: rgb(186,146,239); - qproperty-SelectedMeshColumnColor: rgb(138,117,162); - - qproperty-SoundColumnColor: rgb(101,116,86); - qproperty-SoundColumnBorderColor: rgb(160,175,125); - qproperty-SelectedSoundColumnColor: rgb(127,149,106); - qproperty-SoundColumnHlColor: rgb(52,254,94); - qproperty-SoundColumnTrackColor: rgb(182,194,157); - - qproperty-ColumnHeadPastelizer: rgb(0,0,0); - qproperty-SelectedColumnHead: rgb(80,96,130); - - qproperty-LightLightBGColor: rgb(250,250,250); - qproperty-LightBGColor: rgb(240,240,240); - qproperty-DarkBGColor: rgb(225,225,225); - qproperty-DarkLineColor: rgb(150,150,150); - - QScrollBar { - border: 1px solid rgb(35, 35, 35); - } -} - -/*------- Schematic ---------*/ -#SchematicBottomFrame -{ - margin: 0px; - padding: 0px; - .baseBG; - border-top: 1px solid rgb(132, 132, 132); - border-image: none; -} -#SchematicSceneViewer -{ - background-color: rgb(55,55,55); -} - -/*------ Function Editor ---------*/ - -#FunctionParametersPanel -{ - border: 1px solid rgb(88, 88, 88); -} -#FunctionEditorTree,#ShortcutTree -{ - &::branch { - &:adjoins-item { - border-image: url("@{image_url}/tree17_branch-end.png") 0; - } - - &:has-siblings { - border-image: url("@{image_url}/tree17_vline.png") 0; - &:adjoins-item { - border-image: url("@{image_url}/tree17_branch-more.png") 0; - } - } - - &:has-children { - &:closed { - border-image: none; - image: url("@{image_url}/tree17_branch-closed_nosib.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree17_branch-open_nosib.png"); - } - - &:has-siblings { - &:closed { - border-image: none; - image: url("@{image_url}/tree17_branch-closed.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree17_branch-open.png"); - } - } - } - } -} - -FunctionPanel { - qproperty-BGColor: rgb(48,48,48); - qproperty-ValueLineColor: rgb(72,72,72); - qproperty-FrameLineColor: rgb(96,96,96); - qproperty-OtherCurvesColor: rgb(128,128,128); - qproperty-RulerBackground: rgb(48,48,48); - qproperty-TextColor: rgb(230,230,230); - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} - -FunctionTreeView { - qproperty-TextColor: rgb(230,230,230); - qproperty-CurrentTextColor: @m_selectedText; -} - -SpreadsheetViewer { - qproperty-LightLightBGColor: rgb(64,64,64); - qproperty-CurrentRowBgColor: rgb(80,96,130); - qproperty-LightLineColor: rgb(32,32,32); - qproperty-MarkerLineColor: rgb(30, 150, 196); - qproperty-BGColor: rgb(72,72,72); - qproperty-VerticalLineColor: rgb(120,120,120); - qproperty-KeyFrameColor: rgb(153,93,29); - qproperty-KeyFrameBorderColor: rgb(201,176,75); - qproperty-SelectedKeyFrameColor: rgb(151,128,86); - qproperty-InBetweenColor: rgb(102,98,80); - qproperty-InBetweenBorderColor: rgb(205,206,200); - qproperty-SelectedInBetweenColor: rgb(126,128,121); - qproperty-SelectedEmptyColor: rgb(108,108,108); - qproperty-SelectedSceneRangeEmptyColor: rgb(117,117,117); - qproperty-TextColor: rgb(230,230,230); - qproperty-ColumnHeaderBorderColor: rgb(142,142,142); - qproperty-SelectedColumnTextColor: @m_selectedText; -} -#keyFrameNavigator { - background: none; // Fixes BG overflow - margin: 0; - padding: 0; - border: 0; - & QToolButton { - min-width: 18px; - } - #PreviousKey{ - image: url('@{image_url}/prevkey.png'); - &:disabled{ - image: url('@{image_url}/prevkey_disabled.png'); - } - } - #NextKey{ - image: url('@{image_url}/nextkey.png'); - &:disabled{ - image: url('@{image_url}/nextkey_disabled.png'); - } - } -} - -#ExpressionField -{ - .baseBG(light, 70%); - border: 1px solid rgb(88, 88, 88); - border-radius: 2px; - min-height: 14px; -} - -#FunctionSegmentViewerLinkButton -{ - border: 2px; - margin: 0px; - background-image: url("@{image_url}/segment_unlinked.png"); - .base_outset(light,20%); - &:checked { - background-image: url("@{image_url}/segment_linked.png"); - .base_inset(light,20%); - } - &:disabled{ - background-image: url("@{image_url}/segment_disabled.png"); - .base_outset(light,10%); - border: 1px; - } -} - -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - .base_inset(10%); - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel -{ - color: @m_titleTxtColor; -} - -/*------ Cleanup Settings------*/ - -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} - -#CameraSettingsButton -{ - padding: 2px; - border: 0px; -} - -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; - background-color: @m_baseBG; - &:checked { - image: url("@{image_url}/cam_lock.png"); - } - &:unchecked { - image: url("@{image_url}/cam_unlock.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover.png"); - } - } -} - -#CameraSettingsDPI{ - color: @m_titleTxtColor; -} - -#CameraSettingsRadioButton_Small { - padding: 2px; - background-color: @m_baseBG; - &::indicator { - width: 11px; - height: 21px; - &:checked { - image: url("@{image_url}/cam_lock_small.png"); - } - &:unchecked { - image: url("@{image_url}/cam_unlock_small.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover_small.png"); - } - } - } -} - -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("@{image_url}/fsp_released.png"); - - &:hover { - image: url("@{image_url}/fsp_hover.png"); - } - &:checked { - image: url("@{image_url}/fsp_pressed.png"); - } -} - -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; /*space between button and text*/ - &::indicator { - background-color: @m_baseBG; - border-width: 0px; - width: 21px; - height: 21px; - &:unchecked { - image: url("@{image_url}/cam_unlock.png"); - &:hover { - image: url("@{image_url}/cam_unlock_hover.png"); - } - } - &:checked { - image: url("@{image_url}/cam_lock.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover.png"); - } - } - } -} - -IconViewField { - qproperty-ScalePegPixmap: url("@{image_url}/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("@{image_url}/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("@{image_url}/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("@{image_url}/selectiontool_thickness.png"); -} - -PopupButton { - &::menu-indicator { - image: url("@{image_url}/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; - } - &::menu-indicator:disabled { - image: url("@{image_url}/down_arrow_disabled.png"); - } -} - -#Cap,#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; max-width: 32px; - & QMenu { - min-width: 18px; max-width: 18px; - &::item { - min-width: 16px; max-width: 16px; - padding: 0px; - } - } -} - -/*------ Script Console ------*/ - -#ScriptConsole { - border: 1px inset; - background-color: rgb(220,220,220); - color: black; - font-family: "Courier"; -} - -/*------ Topbar and Menubar of the MainWindow ------*/ - -#TopBar { - height: 22px; - .baseBG(5%); - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - .baseBG; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - /*border-image: url("@{image_url}/topbar_bg.png") 0 0 0 0 stretch stretch; */ - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; - &::tab { - .set_margin(5px, 1px); - .set_padding(8px, 1px); - .baseBG(5%); - border: 1px solid rgb(88,88,88); - border-radius: 2px; - &:selected { - background-color: @m_selectedBG; - color: rgb(230, 230, 230); - } - &:hover { - background-color: rgb(100,100,100); - color: rgb(230, 230, 230); - } - } -} -#StackedMenuBar -{ - background: rgb(160,160,160); - margin: 0px; - border: 0px; - padding: 0px; -} - -#DockSeparator{ - .baseBG(5%); - //border-image: url("@{image_url}/dock_handle_border.png") 2; - border-width: 0; -} - -#TDockPlaceholder { - background-color: rgb(185,240,0,255); -} - -/*------ Popups -------*/ - -QDialog #dialogButtonFrame { - .baseBG(5%); -} - -#SceneSettings QLabel -{ - color: @m_titleTxtColor; -} -#PreferencesPopup QListWidget -{ - .baseBG; - border-width: 2px; - alternate-background-color: lighten(@m_baseBG, 2%); - font-size: 12px; - &::item{ - padding: 2px; - &:selected{ - background-color: @m_selectedBG; - color : @m_baseInputColor; - } - &:hover{ - background-color: lighten(@m_baseBG, 5%); - } - } -} - -QListView { - outline: 0; -} - -#OutputSettingsBox { - border:1px solid rgb(88, 88, 88); - border-radius: 4px; -} - -#OutputSettingsLabel { - color: @m_titleTxtColor; -} - -#OutputSettingsCameraBox { - .baseBG; - border-width: 2px; -} - -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("@{image_url}/handle_border.png")5; - image: url("@{image_url}/plus.png"); - image-position: center center; - - &:checked - { - image: url("@{image_url}/minus.png"); - } -} - -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: rgb(69, 69, 69); - qproperty-LightLineEdgeColor: @m_baseBG; - qproperty-MiddleLineColor: rgb(0,0,0); - qproperty-DarkLineColor: rgb(32, 32, 32); - qproperty-HandleLeftPixmap: url("@{image_url}/h_slider_left.png"); - qproperty-HandleRightPixmap: url("@{image_url}/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("@{image_url}/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("@{image_url}/h_slider_right_disabled.png"); -} - -#FxSettingsLabel{ - color: rgb(160,230,128); -} - -#FxSettings{ - border-width: 0px; - border-bottom: 3px double rgb(64,64,64); -} - -#FxSettingsHelpButton{ - color: rgb(160,200,255); -} - -#MatchLineButton { - .baseBG(light, 10%); - &::pressed - { - .baseBG(light, 30%); - } -} - -#LargeSizedText { - font-size: 17px; -} - -#GearButton { - qproperty-icon: url("@{image_url}/gear.png"); -} - -#SubfolderButton { - qproperty-icon: url("@{image_url}/subfolder.png"); -} - -#StartupLabel { - padding: 3px; - &:hover { - .baseBG(light, 10%); - border-radius: 3px; - } -} - -Filmstrip { - QComboBox { - margin: 0px; - border-radius: 0px; - } -} - -#WordButton { - font-size: 12px; - /* color: black; */ - background-color: @m_baseBG; - /*border-style: outset; - .set_border_color(white,black); */ - border-width: 1px; - border-radius: 4px; - border: 1px solid rgb(132, 132, 132); - .set_padding(3px, 3px); - &:pressed { - color: black; - background-color: rgb(250, 255, 162); - border-style: inset; - .set_border_color(black,white); - } - &:hover { - color: black; - background-color: rgb(250, 255, 162); - &:pressed { - background-color: rgb(250, 255, 162); - border-style: inset; - .set_border_color(black,white); - } - } -} - -PencilTestPopup { - /* Allow for using a 768 screen */ - min-height: 730px; - /* some clipping will still occur on width, but this - allows for filling half of a 1024 screen */ - min-width: 512px; -} - -TPanelTitleBar { - qproperty-SeparatorColor: darken(@m_baseBG, 5); - qproperty-ActiveIconColor:rgb(0, 180, 0); - qproperty-FreezeColor:rgb(200, 0, 0); - } \ No newline at end of file diff --git a/stuff/config/qss/dark/dark.qss b/stuff/config/qss/dark/dark.qss deleted file mode 100644 index 945f4db..0000000 --- a/stuff/config/qss/dark/dark.qss +++ /dev/null @@ -1,1413 +0,0 @@ -/* LESS Definitions */ -/*Image URL*/ -/*Text Color*/ -/*Used in Dialog border*/ -/*Color for Selected Item*/ -/*Color for title texts*/ -/* color adjustable by delta */ -/*set padding*/ -/*set margin*/ -/* ------ Qt Widgets Common Difinitions ------ */ -QMenu, -QMenuBar, -QMainWindow, -QWidget { - color: #bebebe; - background-color: #303030; - font-family: "Segoe UI", "Lucida Grande"; - font-size: 12px; - font-weight: normal; -} -QMenu:disabled, -QMenuBar:disabled, -QMainWindow:disabled, -QWidget:disabled { - color: #808080; -} -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog { - background-color: #303030; -} -QMainWindow::separator { - background: yellow; - width: 10px; - /* when vertical */ - height: 10px; - /* when horizontal */ -} -QToolTip, -#helpTooltip { - border: 1px solid black; - background-color: #ffffe1; - padding: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - background-color: #303030; - alternate-background-color: #3d3d3d; -} -QTreeWidget::item:selected { - background-color: #448044; - color: black; -} -QTreeWidget::item { - color: #bebebe; -} -QStatusBar { - background-color: #c0c0c0; -} -QStatusBar::item { - border-width: 0; -} -QStatusBar QLabel { - background-color: #c0c0c0; -} -QStatusBar #StatusBarLabel { - background-color: #ffffff; - padding-left: 3px; - padding-right: 3px; - padding-top: 1px; - padding-bottom: 1px; -} -QMenuBar { - background-color: #303030; -} -QMenuBar::item:selected { - background-color: #4a4a4a; - border-width: 1px; -} -QMenu { - background-color: #232323; -} -QMenu::item:selected { - background: #448044; - color: #dcdcdc; -} -QMenu::item:disabled { - background-color: #303030; - color: #808080; -} -QMenu::item:disabled:selected { - background: #6c6c6c; -} -QMenu::separator { - background-color: #4a4a4a; - margin-left: 0px; - margin-right: 0px; - margin-top: 2px; - margin-bottom: 2px; - border-width: 1px; - height: 2px; -} -QToolBar { - background-color: #303030; - border-width: 0px; - /* border-top: 1px solid rgb(88, 88, 88); */ - margin: 0px; - padding: 0px; - border-image: none; -} -QToolBar::separator:horizontal { - image: url("imgs/bottomseparator.png"); -} -QToolBar::separator:vertical { - image: url("imgs/separator.png"); -} -QToolBar QToolButton { - background-color: #303030; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; -} -QToolBar QToolButton:hover { - border-image: url("imgs/over.png") 2; - border-radius: 4px; -} -QToolBar QToolButton:checked, -QToolBar QToolButton:pressed { - border-image: url("imgs/click.png") 2; - border-radius: 4px; -} -QToolBar QToolButton:disabled { - background-color: #3d3d3d; - color: #808080; -} -QToolBar QToolButton::menu-indicator { - image: none; -} -QToolBar QToolButton::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ -} -QToolBar QLabel { - background-color: #303030; - margin-top: 1px; - border-width: 2; -} -QToolBar QToolBar { - border-width: 0px; -} -QLineEdit { - /*darken little bit*/ - color: #cdcdcd; - background-color: #232323; - border-width: 1px; - border-radius: 2px; - border: 1px solid #4e4e4e; -} -QLineEdit:disabled { - background-color: #4a4a4a; - color: #808080; -} -QComboBox { - /*darken little bit*/ - color: #cdcdcd; - background-color: #232323; - border: 1px solid #4e4e4e; - padding-left: 1px; - padding-right: 1px; - padding-top: 1px; - padding-bottom: 1px; - border-radius: 3px; - padding-left: 4px; - /*arrow button*/ - /*arrow button triangle*/ -} -QComboBox::drop-down { - background-color: #232323; - border-width: 2px; - border-radius: 3px; - /*pressed state*/ -} -QComboBox::drop-down:on { - /*.base_inset;*/ -} -QComboBox::drop-down:disabled { - background-color: #4a4a4a; -} -QComboBox::down-arrow { - image: url("imgs/combo_down_arrow.png"); -} -QComboBox:disabled { - background-color: #4a4a4a; - border: 1px solid #4e4e4e; - color: #808080; -} -QComboBox QAbstractItemView { - outline: 0px; - selection-background-color: #448044; -} -QPushButton { - /* .base_outset; */ - color: #cfcfcf; - border: 1px solid #666666; - border-radius: 4px; - padding-left: 15px; - padding-right: 15px; - padding-top: 3px; - padding-bottom: 3px; - /*lighten lilttle bit when hover*/ - /*lighten lilttle bit when pressed*/ -} -QPushButton:checked { - background-color: #3d3d3d; - border-style: inset; - border-left-color: #191919; - border-top-color: #0d0d0d; - border-right-color: #656565; - border-bottom-color: #797979; -} -QPushButton:pressed { - background-color: #424242; -} -QPushButton:hover { - background-color: #4a4a4a; -} -QPushButton:hover:pressed { - background-color: #424242; -} -QPushButton:hover:checked { - background-color: #3d3d3d; - border-style: inset; - border-left-color: #191919; - border-top-color: #0d0d0d; - border-right-color: #656565; - border-bottom-color: #797979; -} -QPushButton:disabled { - background-color: #3d3d3d; - color: #505050; -} -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -QCheckBox:hover { - background-color: #4a4a4a; - border-radius: 2px; -} -QCheckBox:disabled { - color: #808080; -} -QCheckBox::indicator, -QGroupBox::indicator { - width: 11px; - height: 11px; - background-color: #232323; - border: 1px solid #6c6c6c; - border-radius: 2px; -} -QCheckBox::indicator:disabled, -QGroupBox::indicator:disabled { - background-color: #3d3d3d; - border: 1px solid #6c6c6c; -} -QCheckBox::indicator:checked, -QGroupBox::indicator:checked { - image: url("imgs/check_indicator.png"); -} -QCheckBox::indicator:checked:disabled, -QGroupBox::indicator:checked:disabled { - image: url("imgs/check_indicator_disabled.png"); -} -QSlider::groove:horizontal { - background-color: #161616; - border-bottom: 1px solid #454545; - height: 2px; - margin: 1px; -} -QSlider::handle:horizontal { - background-color: #7d7d7d; - border-radius: 4px; - /*border-width: 2px;*/ - width: 8px; - margin: -8px 0px; - /* expand outside the groove */ -} -QGroupBox { - border: 1px solid #585858; - margin: 6px 0 3px 0; - padding: 5px 3px; - border-radius: 3px; -} -QGroupBox::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; -} -QGroupBox::title:disabled { - color: #808080; -} -QGroupBox:disabled { - color: #0c0c0c; - border-color: #808080; -} -/* between the Studio Palette and the Style Editor */ -QSplitter::handle { - background-color: #3d3d3d; -} -/* ------ Toonz Classes Difinitions ------ */ -TPanel { - /*Used for dialog border*/ - background-color: #000000; -} -TPanelTitleBar { - qproperty-BorderPixmap: url("imgs/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("imgs/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("imgs/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("imgs/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: #c0c0c0; - qproperty-ActiveTitleColor: #ffffff; -} -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer { - margin: 0px; - padding: 0px; -} -PaletteViewer #ToolBarContainer QToolBar { - border: 1px; - background-color: #303030; -} -PaletteViewer #ToolBarContainer QToolBar QToolButton { - margin: 0px; - padding: 1px; - border: 0px; -} -PaletteViewer #ToolBarContainer #keyFrameNavigator { - border: 0px; -} -#TabBarContainer { - qproperty-BottomAboveLineColor: #303030; - qproperty-BottomBelowLineColor: #848484; - background-color: #232323; -} -#TabBarContainer #ScrollLeftButton, -#TabBarContainer #ScrollRightButton { - margin-top: 1px; -} -#PaletteTabBar, -#FxSettingsTabBar { - background-color: #232323; - border-bottom: 1px solid #585858; -} -#PaletteTabBar::tab, -#FxSettingsTabBar::tab { - padding-left: 7px; - padding-right: 7px; - padding-top: 2px; - padding-bottom: 2px; - background-color: #232323; - /* for non selected tab */ - border: 1px solid #585858; - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - margin-top: 3px; - /* for non selected tab */ - border-bottom-color: #6c6c6c; - /* for non selected tab */ -} -#PaletteTabBar::tab:selected, -#FxSettingsTabBar::tab:selected { - background-color: #303030; - border: 1px solid #848484; - border-bottom-color: #303030; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; - margin-top: 2px; -} -#PaletteTabBar::tab:first, -#FxSettingsTabBar::tab:first { - margin-left: 2px; - /* the first selected tab has nothing to overlap with on the left */ -} -#PaletteTabBar::tab:last, -#FxSettingsTabBar::tab:last { - margin-right: 0px; - /* the last selected tab has nothing to overlap with on the right */ -} -#PaletteTabBar::tab:only-one, -#FxSettingsTabBar::tab:only-one { - margin: 0px; - margin-top: 2px; - margin-left: 2px; - /*margin-left 2px; /* if there is only one tab, we don't want overlapping margins */ -} -#PaletteLockButton:hover { - border-image: url("imgs/over_yellow.png") 2; -} -#PaletteLockButton:checked { - border-image: url("imgs/click_pink.png") 2; -} -#PaletteLockButton:checked:hover { - border-image: url("imgs/over_pressed_yellow.png") 2; -} -#PageViewer { - qproperty-TextColor: #bebebe; -} -/* ------ Style Editor ------ */ -#StyleEditor { - border: 0px; -} -#StyleEditor QPushButton { - margin: 1px; - margin-top: 3px; - min-width: 10px; - padding: 4px; - padding-top: 2px; - padding-bottom: 2px; -} -#StyleEditor QPushButton:checked { - background-color: #4a4a4a; - border: 1px solid #848484; -} -#StyleEditor QPushButton:hover { - background-color: #565656; - border: 1px solid #848484; -} -#StyleEditor QPushButton:hover:checked { - background-color: #636363; -} -#StyleEditor QPushButton:hover:checked:pressed { - background-color: #515151; -} -#StyleEditor QPushButton:pressed { - background-color: #515151; -} -#StyleEditor QLineEdit { - min-width: 28px; - max-width: 30px; -} -#StyleEditorTabBar { - border-bottom: 1px solid #585858; - background-color: #232323; -} -#StyleEditorTabBar QPushButton { - margin: 10px; -} -#StyleEditorTabBar::tab { - padding-left: 2px; - padding-right: 2px; - padding-top: 2px; - padding-bottom: 2px; - background-color: #232323; - /* for non selected tab */ - border: 1px solid #585858; - /* min-width: 60px; */ - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - margin-top: 3px; - /* for non selected tab */ - border-bottom-color: #6c6c6c; - /* for non selected tab */ - font-size: 11px; - min-width: 40px; -} -#StyleEditorTabBar::tab:selected { - background-color: #303030; - border: 1px solid #848484; - border-bottom-color: #303030; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; - margin-top: 2px; -} -#StyleEditorTabBar::tab:first:selected { - margin-left: 0px; - /* the first selected tab has nothing to overlap with on the left */ -} -#StyleEditorTabBar::tab:last:selected { - margin-right: 0px; - /* the last selected tab has nothing to overlap with on the right */ -} -#StyleEditorTabBar::tab:only-one { - margin: 0px; - margin-top: 2px; - margin-left: 1px; -} -#HexagonalColorWheel { - qproperty-BGColor: #303030; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; -} -#colorSlider::handle:horizontal { - width: 8px; - margin: -8px -4px; -} -#colorSliderAddButton, -#colorSliderSubButton { - /* border-image: url("@{image_url}/colorslider_button_bg.png")2;*/ - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; - min-height: 8px; - max-width: 14px; -} -#colorSliderAddButton { - image: url("imgs/colorslider_add.png"); -} -#colorSliderAddButton:pressed { - image: url("imgs/colorslider_add_pressed.png"); -} -#colorSliderSubButton { - image: url("imgs/colorslider_sub.png"); -} -#colorSliderSubButton:pressed { - image: url("imgs/colorslider_sub_pressed.png"); -} -#PlainColorPageParts { - background-color: #303030; - border: 0px; -} -#colorSliderLabel, -#colorSliderField { - font-size: 12px; - min-height: 12px; -} -#colorSliderField { - color: #dcdcdc; -} -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: #e1e1e1; -} -DvScrollWidget > QPushButton:hover { - background-color: #f5f5f5; -} -DvScrollWidget > QPushButton:pressed { - background-color: #d7d7d7; -} -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} -#ScrollLeftButton { - image: url("imgs/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("imgs/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("imgs/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("imgs/down_arrow_black.png"); - border-top: 1px solid black; -} -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - background-color: #0a0a0a; -} -#ViewerPanel #ToolBarContainer { - border-top: 1px solid #6c6c6c; - margin-top: 1px; - padding-top: 3px; -} -FlipBook #ToolBarContainer { - border-top: 1px solid #6c6c6c; - margin-top: 1px; - padding-top: 3px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} -#ViewerFpsSlider { - background-color: #161616; - margin-left: 19px; - margin-right: 19px; - margin-top: 0px; - margin-bottom: 0px; - border: 1px solid #585858; - height: 21px; -} -#ViewerFpsSlider::handle { - border-image: url("imgs/handle_border.png") 6; - border-width: 6px; - image: none; - min-width: 5px; -} -#ViewerFpsSlider::add-line { - image: url("imgs/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::add-line:pressed { - image: url("imgs/fpssb_g_rarrow_pressed.png"); -} -#ViewerFpsSlider::sub-line { - image: url("imgs/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::sub-line:pressed { - image: url("imgs/fpssb_g_larrow_pressed.png"); -} -#FlipConsolePlayToolBar { - border: none; -} -#FlipConsolePlayToolBar QToolButton { - height: 14px; -} -FlipSlider { - qproperty-PBHeight: 20; - qproperty-PBOverlay: url("imgs/flipslider.png"); - qproperty-PBMarker: url("imgs/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-notStartedColor: #cc2222; - qproperty-startedColor: #c88080; - qproperty-baseColor: #626262; - qproperty-baseColor: #242424; -} -Ruler { - qproperty-ParentBGColor: #303030; - qproperty-ScaleColor: #e6e6e6; -} -#ComboViewerToolOptions { - border-top: 1px solid #848484; - /*.base_outset;*/ -} -#RulerToolOptionValues { - color: black; -} -/*-----------File Browser------------*/ -#DirTreeView, -#FunctionEditorTree, -#ShortcutTree, -#FxTreeView { - alternate-background-color: #3d3d3d; - border-top: 1px solid #848484; - background-color: #303030; - margin: 0px; -} -#DirTreeView::branch:adjoins-item { - border-image: url("imgs/tree_branch-end.png") 0; -} -#DirTreeView::branch:has-siblings { - border-image: url("imgs/tree_vline.png") 0; -} -#DirTreeView::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree_branch-more.png") 0; -} -#DirTreeView::branch:has-children:closed { - border-image: none; - image: url("imgs/tree_branch-closed_nosib.png"); -} -#DirTreeView::branch:has-children:open { - border-image: none; - image: url("imgs/tree_branch-open_nosib.png"); -} -#DirTreeView::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree_branch-closed.png"); -} -#DirTreeView::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree_branch-open.png"); -} -DvItemViewerPanel { - qproperty-TextColor: #bebebe; - qproperty-AlternateBackground: #3d3d3d; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #82be82; - qproperty-SelectedItemBackground: #448044; -} -DvDirTreeView { - qproperty-TextColor: #bebebe; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #82be82; - qproperty-SelectedFolderTextColor: #001e00; - qproperty-SelectedItemBackground: #448044; - alternate-background-color: #3d3d3d; -} -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid #585858; - margin-bottom: 5px; - border-radius: 3px; -} -#TitleTxtLabel { - color: #56a156; -} -#PsdSettingsGroupBox { - border: 1px solid #448044; -} -#FileDoesNotExistLabel { - color: #ff3232; -} -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#CleanupSettingsShowButton:checked, -#LoadLevelShowButton:checked, -#FxSettingsPreviewShowButton:checked { - image: url("imgs/minus.png"); -} -ParamsPage { - qproperty-TextColor: #bebebe; -} -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea { - border: 0px; -} -#FunctionSegmentViewer { - background-color: #303030; - border-width: 0px; -} -#xsheetArea, -#ScrollArea { - background-color: #161616; - border-width: 0px; -} -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: #e6e678; -} -#xsheetColumnAreaMenu_Lock { - background-color: #f5f5f5; -} -#xsheetColumnAreaMenu_Camstand { - background-color: #ffa480; -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; -} -#xsheetColumnAreaMenu_Preview:selected, -#xsheetColumnAreaMenu_Lock:selected, -#xsheetColumnAreaMenu_Camstand:selected { - background-color: #000080; -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; -} -#XSheetToolbar { - margin: 0; - padding: 0; - border: 0; -} -#XSheetToolbar::separator:horizontal { - margin-right: 4; - margin-left: 4; -} -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid #0f0f0f; - /* buttons */ -} -QScrollBar:vertical { - width: 16px; - margin-left: 0px; - margin-right: 0px; - margin-top: 16px; - margin-bottom: 16px; -} -QScrollBar:horizontal { - height: 16px; - margin-left: 16px; - margin-right: 16px; - margin-top: 0px; - margin-bottom: 0px; -} -QScrollBar::handle { - border-width: 3; - image-position: center center; -} -QScrollBar::handle:vertical { - border-image: url("imgs/sb_g_vhandle.png") 3; - image: url("imgs/sb_g_vline.png"); - min-height: 40px; -} -QScrollBar::handle:horizontal { - border-image: url("imgs/sb_g_hhandle.png") 3; - image: url("imgs/sb_g_hline.png"); - min-width: 40px; -} -QScrollBar::add-line { - subcontrol-origin: margin; -} -QScrollBar::add-line:vertical { - image: url("imgs/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; -} -QScrollBar::add-line:vertical:pressed { - image: url("imgs/sb_g_downarrow_pressed.png"); -} -QScrollBar::add-line:horizontal { - image: url("imgs/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; -} -QScrollBar::add-line:horizontal:pressed { - image: url("imgs/sb_g_rarrow_pressed.png"); -} -QScrollBar::sub-line { - subcontrol-origin: margin; -} -QScrollBar::sub-line:vertical { - image: url("imgs/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; -} -QScrollBar::sub-line:vertical:pressed { - image: url("imgs/sb_g_uparrow_pressed.png"); -} -QScrollBar::sub-line:horizontal { - image: url("imgs/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; -} -QScrollBar::sub-line:horizontal:pressed { - image: url("imgs/sb_g_larrow_pressed.png"); -} -QScrollBar::add-page, -QScrollBar::sub-page { - background-color: #232323; -} -#noteTextEdit { - color: black; -} -XsheetViewer { - qproperty-TextColor: #e6e6e6; - qproperty-BGColor: #484848; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-VerticalLineColor: #787878; - qproperty-VerticalLineHeadColor: #a0a0a0; - qproperty-PreviewFrameTextColor: #96e6e6; - qproperty-CurrentRowBgColor: #506082; - qproperty-EmptyColumnHeadColor: #606060; - qproperty-SelectedColumnTextColor: #e66464; - qproperty-EmptyCellColor: #404040; - qproperty-NotEmptyColumnColor: #484848; - qproperty-SelectedEmptyCellColor: #6c6c6c; - qproperty-LevelColumnColor: #4c6e4c; - qproperty-LevelColumnBorderColor: #8fb38f; - qproperty-SelectedLevelColumnColor: #6b8c6b; - qproperty-VectorColumnColor: #7b7b4c; - qproperty-VectorColumnBorderColor: #bbbb9a; - qproperty-SelectedVectorColumnColor: #8c8c60; - qproperty-ChildColumnColor: #6a526b; - qproperty-ChildColumnBorderColor: #b1a3b3; - qproperty-SelectedChildColumnColor: #7a617a; - qproperty-FullcolorColumnColor: #657a96; - qproperty-FullcolorColumnBorderColor: #9eb8bb; - qproperty-SelectedFullcolorColumnColor: #8896a7; - qproperty-FxColumnColor: #56553c; - qproperty-FxColumnBorderColor: #95958a; - qproperty-SelectedFxColumnColor: #6a6d5a; - qproperty-ReferenceColumnColor: #616161; - qproperty-ReferenceColumnBorderColor: #a2a2a2; - qproperty-SelectedReferenceColumnColor: #828282; - qproperty-PaletteColumnColor: #3a655f; - qproperty-PaletteColumnBorderColor: #86aca7; - qproperty-SelectedPaletteColumnColor: #5f8581; - qproperty-MeshColumnColor: #684d86; - qproperty-MeshColumnBorderColor: #ba92ef; - qproperty-SelectedMeshColumnColor: #8a75a2; - qproperty-SoundColumnColor: #657456; - qproperty-SoundColumnBorderColor: #a0af7d; - qproperty-SelectedSoundColumnColor: #7f956a; - qproperty-SoundColumnHlColor: #34fe5e; - qproperty-SoundColumnTrackColor: #b6c29d; - qproperty-ColumnHeadPastelizer: #000000; - qproperty-SelectedColumnHead: #506082; - qproperty-LightLightBGColor: #fafafa; - qproperty-LightBGColor: #f0f0f0; - qproperty-DarkBGColor: #e1e1e1; - qproperty-DarkLineColor: #969696; -} -XsheetViewer QScrollBar { - border: 1px solid #232323; -} -/*------- Schematic ---------*/ -#SchematicBottomFrame { - margin: 0px; - padding: 0px; - background-color: #303030; - border-top: 1px solid #848484; - border-image: none; -} -#SchematicSceneViewer { - background-color: #373737; -} -/*------ Function Editor ---------*/ -#FunctionParametersPanel { - border: 1px solid #585858; -} -#FunctionEditorTree::branch:adjoins-item, -#ShortcutTree::branch:adjoins-item { - border-image: url("imgs/tree17_branch-end.png") 0; -} -#FunctionEditorTree::branch:has-siblings, -#ShortcutTree::branch:has-siblings { - border-image: url("imgs/tree17_vline.png") 0; -} -#FunctionEditorTree::branch:has-siblings:adjoins-item, -#ShortcutTree::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree17_branch-more.png") 0; -} -#FunctionEditorTree::branch:has-children:closed, -#ShortcutTree::branch:has-children:closed { - border-image: none; - image: url("imgs/tree17_branch-closed_nosib.png"); -} -#FunctionEditorTree::branch:has-children:open, -#ShortcutTree::branch:has-children:open { - border-image: none; - image: url("imgs/tree17_branch-open_nosib.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:closed, -#ShortcutTree::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree17_branch-closed.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:open, -#ShortcutTree::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree17_branch-open.png"); -} -FunctionPanel { - qproperty-BGColor: #303030; - qproperty-ValueLineColor: #484848; - qproperty-FrameLineColor: #606060; - qproperty-OtherCurvesColor: #808080; - qproperty-RulerBackground: #303030; - qproperty-TextColor: #e6e6e6; - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} -FunctionTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-CurrentTextColor: #58e458; -} -SpreadsheetViewer { - qproperty-LightLightBGColor: #404040; - qproperty-CurrentRowBgColor: #506082; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-BGColor: #484848; - qproperty-VerticalLineColor: #787878; - qproperty-KeyFrameColor: #995d1d; - qproperty-KeyFrameBorderColor: #c9b04b; - qproperty-SelectedKeyFrameColor: #978056; - qproperty-InBetweenColor: #666250; - qproperty-InBetweenBorderColor: #cdcec8; - qproperty-SelectedInBetweenColor: #7e8079; - qproperty-SelectedEmptyColor: #6c6c6c; - qproperty-SelectedSceneRangeEmptyColor: #757575; - qproperty-TextColor: #e6e6e6; - qproperty-ColumnHeaderBorderColor: #8e8e8e; - qproperty-SelectedColumnTextColor: #58e458; -} -#keyFrameNavigator { - background: none; - margin: 0; - padding: 0; - border: 0; -} -#keyFrameNavigator QToolButton { - min-width: 18px; -} -#keyFrameNavigator #PreviousKey { - image: url('imgs/prevkey.png'); -} -#keyFrameNavigator #PreviousKey:disabled { - image: url('imgs/prevkey_disabled.png'); -} -#keyFrameNavigator #NextKey { - image: url('imgs/nextkey.png'); -} -#keyFrameNavigator #NextKey:disabled { - image: url('imgs/nextkey_disabled.png'); -} -#ExpressionField { - background-color: #e3e3e3; - border: 1px solid #585858; - border-radius: 2px; - min-height: 14px; -} -#FunctionSegmentViewerLinkButton { - border: 2px; - margin: 0px; - background-image: url("imgs/segment_unlinked.png"); - background-color: #636363; - border-style: outset; - border-left-color: #8b8b8b; - border-top-color: #9f9f9f; - border-right-color: #3f3f3f; - border-bottom-color: #333333; -} -#FunctionSegmentViewerLinkButton:checked { - background-image: url("imgs/segment_linked.png"); - background-color: #636363; - border-style: inset; - border-left-color: #3f3f3f; - border-top-color: #333333; - border-right-color: #8b8b8b; - border-bottom-color: #9f9f9f; -} -#FunctionSegmentViewerLinkButton:disabled { - background-image: url("imgs/segment_disabled.png"); - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; - border: 1px; -} -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel { - color: #56a156; -} -/*------ Cleanup Settings------*/ -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#CameraSettingsButton { - padding: 2px; - border: 0px; -} -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; - background-color: #303030; -} -#CameraSettingsRadioButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover.png"); -} -#CameraSettingsDPI { - color: #56a156; -} -#CameraSettingsRadioButton_Small { - padding: 2px; - background-color: #303030; -} -#CameraSettingsRadioButton_Small::indicator { - width: 11px; - height: 21px; -} -#CameraSettingsRadioButton_Small::indicator:checked { - image: url("imgs/cam_lock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked { - image: url("imgs/cam_unlock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover_small.png"); -} -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("imgs/fsp_released.png"); -} -#ForceSquaredPixelButton:hover { - image: url("imgs/fsp_hover.png"); -} -#ForceSquaredPixelButton:checked { - image: url("imgs/fsp_pressed.png"); -} -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; - /*space between button and text*/ -} -#EditToolLockButton::indicator { - background-color: #303030; - border-width: 0px; - width: 21px; - height: 21px; -} -#EditToolLockButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#EditToolLockButton::indicator:unchecked:hover { - image: url("imgs/cam_unlock_hover.png"); -} -#EditToolLockButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#EditToolLockButton::indicator:checked:hover { - image: url("imgs/cam_lock_hover.png"); -} -IconViewField { - qproperty-ScalePegPixmap: url("imgs/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("imgs/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("imgs/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("imgs/selectiontool_thickness.png"); -} -PopupButton::menu-indicator { - image: url("imgs/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; -} -PopupButton::menu-indicator:disabled { - image: url("imgs/down_arrow_disabled.png"); -} -#Cap, -#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; - max-width: 32px; -} -#Cap QMenu, -#Join QMenu { - min-width: 18px; - max-width: 18px; -} -#Cap QMenu::item, -#Join QMenu::item { - min-width: 16px; - max-width: 16px; - padding: 0px; -} -/*------ Script Console ------*/ -#ScriptConsole { - border: 1px inset; - background-color: #dcdcdc; - color: black; - font-family: "Courier"; -} -/*------ Topbar and Menubar of the MainWindow ------*/ -#TopBar { - height: 22px; - background-color: #232323; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background-color: #303030; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - /*border-image: url("@{image_url}/topbar_bg.png") 0 0 0 0 stretch stretch; */ - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; -} -#TopBarTab::tab { - margin-left: 5px; - margin-right: 5px; - margin-top: 1px; - margin-bottom: 1px; - padding-left: 8px; - padding-right: 8px; - padding-top: 1px; - padding-bottom: 1px; - background-color: #232323; - border: 1px solid #585858; - border-radius: 2px; -} -#TopBarTab::tab:selected { - background-color: #448044; - color: #e6e6e6; -} -#TopBarTab::tab:hover { - background-color: #646464; - color: #e6e6e6; -} -#StackedMenuBar { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#DockSeparator { - background-color: #232323; - border-width: 0; -} -#TDockPlaceholder { - background-color: #b9f000; -} -/*------ Popups -------*/ -QDialog #dialogButtonFrame { - background-color: #232323; -} -#SceneSettings QLabel { - color: #56a156; -} -#PreferencesPopup QListWidget { - background-color: #303030; - border-width: 2px; - alternate-background-color: #353535; - font-size: 12px; -} -#PreferencesPopup QListWidget::item { - padding: 2px; -} -#PreferencesPopup QListWidget::item:selected { - background-color: #448044; - color: #dcdcdc; -} -#PreferencesPopup QListWidget::item:hover { - background-color: #3d3d3d; -} -QListView { - outline: 0; -} -#OutputSettingsBox { - border: 1px solid #585858; - border-radius: 4px; -} -#OutputSettingsLabel { - color: #56a156; -} -#OutputSettingsCameraBox { - background-color: #303030; - border-width: 2px; -} -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#OutputSettingsShowButton:checked { - image: url("imgs/minus.png"); -} -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: #454545; - qproperty-LightLineEdgeColor: #303030; - qproperty-MiddleLineColor: #000000; - qproperty-DarkLineColor: #202020; - qproperty-HandleLeftPixmap: url("imgs/h_slider_left.png"); - qproperty-HandleRightPixmap: url("imgs/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("imgs/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("imgs/h_slider_right_disabled.png"); -} -#FxSettingsLabel { - color: #a0e680; -} -#FxSettings { - border-width: 0px; - border-bottom: 3px double #404040; -} -#FxSettingsHelpButton { - color: #a0c8ff; -} -#MatchLineButton { - background-color: #4a4a4a; -} -#MatchLineButton::pressed { - background-color: #7d7d7d; -} -#LargeSizedText { - font-size: 17px; -} -#GearButton { - qproperty-icon: url("imgs/gear.png"); -} -#SubfolderButton { - qproperty-icon: url("imgs/subfolder.png"); -} -#StartupLabel { - padding: 3px; -} -#StartupLabel:hover { - background-color: #4a4a4a; - border-radius: 3px; -} -Filmstrip QComboBox { - margin: 0px; - border-radius: 0px; -} -#WordButton { - font-size: 12px; - /* color: black; */ - background-color: #303030; - /*border-style: outset; - .set_border_color(white,black); */ - border-width: 1px; - border-radius: 4px; - border: 1px solid #848484; - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#WordButton:pressed { - color: black; - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -#WordButton:hover { - color: black; - background-color: #faffa2; -} -#WordButton:hover:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -PencilTestPopup { - /* Allow for using a 768 screen */ - min-height: 730px; - /* some clipping will still occur on width, but this - allows for filling half of a 1024 screen */ - min-width: 512px; -} -TPanelTitleBar { - qproperty-SeparatorColor: #232323; - qproperty-ActiveIconColor: #00b400; - qproperty-FreezeColor: #c80000; -} diff --git a/stuff/config/qss/dark/dark_mac.qss b/stuff/config/qss/dark/dark_mac.qss deleted file mode 100644 index 945f4db..0000000 --- a/stuff/config/qss/dark/dark_mac.qss +++ /dev/null @@ -1,1413 +0,0 @@ -/* LESS Definitions */ -/*Image URL*/ -/*Text Color*/ -/*Used in Dialog border*/ -/*Color for Selected Item*/ -/*Color for title texts*/ -/* color adjustable by delta */ -/*set padding*/ -/*set margin*/ -/* ------ Qt Widgets Common Difinitions ------ */ -QMenu, -QMenuBar, -QMainWindow, -QWidget { - color: #bebebe; - background-color: #303030; - font-family: "Segoe UI", "Lucida Grande"; - font-size: 12px; - font-weight: normal; -} -QMenu:disabled, -QMenuBar:disabled, -QMainWindow:disabled, -QWidget:disabled { - color: #808080; -} -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog { - background-color: #303030; -} -QMainWindow::separator { - background: yellow; - width: 10px; - /* when vertical */ - height: 10px; - /* when horizontal */ -} -QToolTip, -#helpTooltip { - border: 1px solid black; - background-color: #ffffe1; - padding: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - background-color: #303030; - alternate-background-color: #3d3d3d; -} -QTreeWidget::item:selected { - background-color: #448044; - color: black; -} -QTreeWidget::item { - color: #bebebe; -} -QStatusBar { - background-color: #c0c0c0; -} -QStatusBar::item { - border-width: 0; -} -QStatusBar QLabel { - background-color: #c0c0c0; -} -QStatusBar #StatusBarLabel { - background-color: #ffffff; - padding-left: 3px; - padding-right: 3px; - padding-top: 1px; - padding-bottom: 1px; -} -QMenuBar { - background-color: #303030; -} -QMenuBar::item:selected { - background-color: #4a4a4a; - border-width: 1px; -} -QMenu { - background-color: #232323; -} -QMenu::item:selected { - background: #448044; - color: #dcdcdc; -} -QMenu::item:disabled { - background-color: #303030; - color: #808080; -} -QMenu::item:disabled:selected { - background: #6c6c6c; -} -QMenu::separator { - background-color: #4a4a4a; - margin-left: 0px; - margin-right: 0px; - margin-top: 2px; - margin-bottom: 2px; - border-width: 1px; - height: 2px; -} -QToolBar { - background-color: #303030; - border-width: 0px; - /* border-top: 1px solid rgb(88, 88, 88); */ - margin: 0px; - padding: 0px; - border-image: none; -} -QToolBar::separator:horizontal { - image: url("imgs/bottomseparator.png"); -} -QToolBar::separator:vertical { - image: url("imgs/separator.png"); -} -QToolBar QToolButton { - background-color: #303030; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; -} -QToolBar QToolButton:hover { - border-image: url("imgs/over.png") 2; - border-radius: 4px; -} -QToolBar QToolButton:checked, -QToolBar QToolButton:pressed { - border-image: url("imgs/click.png") 2; - border-radius: 4px; -} -QToolBar QToolButton:disabled { - background-color: #3d3d3d; - color: #808080; -} -QToolBar QToolButton::menu-indicator { - image: none; -} -QToolBar QToolButton::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ -} -QToolBar QLabel { - background-color: #303030; - margin-top: 1px; - border-width: 2; -} -QToolBar QToolBar { - border-width: 0px; -} -QLineEdit { - /*darken little bit*/ - color: #cdcdcd; - background-color: #232323; - border-width: 1px; - border-radius: 2px; - border: 1px solid #4e4e4e; -} -QLineEdit:disabled { - background-color: #4a4a4a; - color: #808080; -} -QComboBox { - /*darken little bit*/ - color: #cdcdcd; - background-color: #232323; - border: 1px solid #4e4e4e; - padding-left: 1px; - padding-right: 1px; - padding-top: 1px; - padding-bottom: 1px; - border-radius: 3px; - padding-left: 4px; - /*arrow button*/ - /*arrow button triangle*/ -} -QComboBox::drop-down { - background-color: #232323; - border-width: 2px; - border-radius: 3px; - /*pressed state*/ -} -QComboBox::drop-down:on { - /*.base_inset;*/ -} -QComboBox::drop-down:disabled { - background-color: #4a4a4a; -} -QComboBox::down-arrow { - image: url("imgs/combo_down_arrow.png"); -} -QComboBox:disabled { - background-color: #4a4a4a; - border: 1px solid #4e4e4e; - color: #808080; -} -QComboBox QAbstractItemView { - outline: 0px; - selection-background-color: #448044; -} -QPushButton { - /* .base_outset; */ - color: #cfcfcf; - border: 1px solid #666666; - border-radius: 4px; - padding-left: 15px; - padding-right: 15px; - padding-top: 3px; - padding-bottom: 3px; - /*lighten lilttle bit when hover*/ - /*lighten lilttle bit when pressed*/ -} -QPushButton:checked { - background-color: #3d3d3d; - border-style: inset; - border-left-color: #191919; - border-top-color: #0d0d0d; - border-right-color: #656565; - border-bottom-color: #797979; -} -QPushButton:pressed { - background-color: #424242; -} -QPushButton:hover { - background-color: #4a4a4a; -} -QPushButton:hover:pressed { - background-color: #424242; -} -QPushButton:hover:checked { - background-color: #3d3d3d; - border-style: inset; - border-left-color: #191919; - border-top-color: #0d0d0d; - border-right-color: #656565; - border-bottom-color: #797979; -} -QPushButton:disabled { - background-color: #3d3d3d; - color: #505050; -} -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -QCheckBox:hover { - background-color: #4a4a4a; - border-radius: 2px; -} -QCheckBox:disabled { - color: #808080; -} -QCheckBox::indicator, -QGroupBox::indicator { - width: 11px; - height: 11px; - background-color: #232323; - border: 1px solid #6c6c6c; - border-radius: 2px; -} -QCheckBox::indicator:disabled, -QGroupBox::indicator:disabled { - background-color: #3d3d3d; - border: 1px solid #6c6c6c; -} -QCheckBox::indicator:checked, -QGroupBox::indicator:checked { - image: url("imgs/check_indicator.png"); -} -QCheckBox::indicator:checked:disabled, -QGroupBox::indicator:checked:disabled { - image: url("imgs/check_indicator_disabled.png"); -} -QSlider::groove:horizontal { - background-color: #161616; - border-bottom: 1px solid #454545; - height: 2px; - margin: 1px; -} -QSlider::handle:horizontal { - background-color: #7d7d7d; - border-radius: 4px; - /*border-width: 2px;*/ - width: 8px; - margin: -8px 0px; - /* expand outside the groove */ -} -QGroupBox { - border: 1px solid #585858; - margin: 6px 0 3px 0; - padding: 5px 3px; - border-radius: 3px; -} -QGroupBox::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; -} -QGroupBox::title:disabled { - color: #808080; -} -QGroupBox:disabled { - color: #0c0c0c; - border-color: #808080; -} -/* between the Studio Palette and the Style Editor */ -QSplitter::handle { - background-color: #3d3d3d; -} -/* ------ Toonz Classes Difinitions ------ */ -TPanel { - /*Used for dialog border*/ - background-color: #000000; -} -TPanelTitleBar { - qproperty-BorderPixmap: url("imgs/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("imgs/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("imgs/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("imgs/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: #c0c0c0; - qproperty-ActiveTitleColor: #ffffff; -} -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer { - margin: 0px; - padding: 0px; -} -PaletteViewer #ToolBarContainer QToolBar { - border: 1px; - background-color: #303030; -} -PaletteViewer #ToolBarContainer QToolBar QToolButton { - margin: 0px; - padding: 1px; - border: 0px; -} -PaletteViewer #ToolBarContainer #keyFrameNavigator { - border: 0px; -} -#TabBarContainer { - qproperty-BottomAboveLineColor: #303030; - qproperty-BottomBelowLineColor: #848484; - background-color: #232323; -} -#TabBarContainer #ScrollLeftButton, -#TabBarContainer #ScrollRightButton { - margin-top: 1px; -} -#PaletteTabBar, -#FxSettingsTabBar { - background-color: #232323; - border-bottom: 1px solid #585858; -} -#PaletteTabBar::tab, -#FxSettingsTabBar::tab { - padding-left: 7px; - padding-right: 7px; - padding-top: 2px; - padding-bottom: 2px; - background-color: #232323; - /* for non selected tab */ - border: 1px solid #585858; - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - margin-top: 3px; - /* for non selected tab */ - border-bottom-color: #6c6c6c; - /* for non selected tab */ -} -#PaletteTabBar::tab:selected, -#FxSettingsTabBar::tab:selected { - background-color: #303030; - border: 1px solid #848484; - border-bottom-color: #303030; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; - margin-top: 2px; -} -#PaletteTabBar::tab:first, -#FxSettingsTabBar::tab:first { - margin-left: 2px; - /* the first selected tab has nothing to overlap with on the left */ -} -#PaletteTabBar::tab:last, -#FxSettingsTabBar::tab:last { - margin-right: 0px; - /* the last selected tab has nothing to overlap with on the right */ -} -#PaletteTabBar::tab:only-one, -#FxSettingsTabBar::tab:only-one { - margin: 0px; - margin-top: 2px; - margin-left: 2px; - /*margin-left 2px; /* if there is only one tab, we don't want overlapping margins */ -} -#PaletteLockButton:hover { - border-image: url("imgs/over_yellow.png") 2; -} -#PaletteLockButton:checked { - border-image: url("imgs/click_pink.png") 2; -} -#PaletteLockButton:checked:hover { - border-image: url("imgs/over_pressed_yellow.png") 2; -} -#PageViewer { - qproperty-TextColor: #bebebe; -} -/* ------ Style Editor ------ */ -#StyleEditor { - border: 0px; -} -#StyleEditor QPushButton { - margin: 1px; - margin-top: 3px; - min-width: 10px; - padding: 4px; - padding-top: 2px; - padding-bottom: 2px; -} -#StyleEditor QPushButton:checked { - background-color: #4a4a4a; - border: 1px solid #848484; -} -#StyleEditor QPushButton:hover { - background-color: #565656; - border: 1px solid #848484; -} -#StyleEditor QPushButton:hover:checked { - background-color: #636363; -} -#StyleEditor QPushButton:hover:checked:pressed { - background-color: #515151; -} -#StyleEditor QPushButton:pressed { - background-color: #515151; -} -#StyleEditor QLineEdit { - min-width: 28px; - max-width: 30px; -} -#StyleEditorTabBar { - border-bottom: 1px solid #585858; - background-color: #232323; -} -#StyleEditorTabBar QPushButton { - margin: 10px; -} -#StyleEditorTabBar::tab { - padding-left: 2px; - padding-right: 2px; - padding-top: 2px; - padding-bottom: 2px; - background-color: #232323; - /* for non selected tab */ - border: 1px solid #585858; - /* min-width: 60px; */ - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - margin-top: 3px; - /* for non selected tab */ - border-bottom-color: #6c6c6c; - /* for non selected tab */ - font-size: 11px; - min-width: 40px; -} -#StyleEditorTabBar::tab:selected { - background-color: #303030; - border: 1px solid #848484; - border-bottom-color: #303030; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; - margin-top: 2px; -} -#StyleEditorTabBar::tab:first:selected { - margin-left: 0px; - /* the first selected tab has nothing to overlap with on the left */ -} -#StyleEditorTabBar::tab:last:selected { - margin-right: 0px; - /* the last selected tab has nothing to overlap with on the right */ -} -#StyleEditorTabBar::tab:only-one { - margin: 0px; - margin-top: 2px; - margin-left: 1px; -} -#HexagonalColorWheel { - qproperty-BGColor: #303030; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; -} -#colorSlider::handle:horizontal { - width: 8px; - margin: -8px -4px; -} -#colorSliderAddButton, -#colorSliderSubButton { - /* border-image: url("@{image_url}/colorslider_button_bg.png")2;*/ - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; - min-height: 8px; - max-width: 14px; -} -#colorSliderAddButton { - image: url("imgs/colorslider_add.png"); -} -#colorSliderAddButton:pressed { - image: url("imgs/colorslider_add_pressed.png"); -} -#colorSliderSubButton { - image: url("imgs/colorslider_sub.png"); -} -#colorSliderSubButton:pressed { - image: url("imgs/colorslider_sub_pressed.png"); -} -#PlainColorPageParts { - background-color: #303030; - border: 0px; -} -#colorSliderLabel, -#colorSliderField { - font-size: 12px; - min-height: 12px; -} -#colorSliderField { - color: #dcdcdc; -} -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: #e1e1e1; -} -DvScrollWidget > QPushButton:hover { - background-color: #f5f5f5; -} -DvScrollWidget > QPushButton:pressed { - background-color: #d7d7d7; -} -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} -#ScrollLeftButton { - image: url("imgs/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("imgs/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("imgs/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("imgs/down_arrow_black.png"); - border-top: 1px solid black; -} -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - background-color: #0a0a0a; -} -#ViewerPanel #ToolBarContainer { - border-top: 1px solid #6c6c6c; - margin-top: 1px; - padding-top: 3px; -} -FlipBook #ToolBarContainer { - border-top: 1px solid #6c6c6c; - margin-top: 1px; - padding-top: 3px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} -#ViewerFpsSlider { - background-color: #161616; - margin-left: 19px; - margin-right: 19px; - margin-top: 0px; - margin-bottom: 0px; - border: 1px solid #585858; - height: 21px; -} -#ViewerFpsSlider::handle { - border-image: url("imgs/handle_border.png") 6; - border-width: 6px; - image: none; - min-width: 5px; -} -#ViewerFpsSlider::add-line { - image: url("imgs/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::add-line:pressed { - image: url("imgs/fpssb_g_rarrow_pressed.png"); -} -#ViewerFpsSlider::sub-line { - image: url("imgs/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::sub-line:pressed { - image: url("imgs/fpssb_g_larrow_pressed.png"); -} -#FlipConsolePlayToolBar { - border: none; -} -#FlipConsolePlayToolBar QToolButton { - height: 14px; -} -FlipSlider { - qproperty-PBHeight: 20; - qproperty-PBOverlay: url("imgs/flipslider.png"); - qproperty-PBMarker: url("imgs/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-notStartedColor: #cc2222; - qproperty-startedColor: #c88080; - qproperty-baseColor: #626262; - qproperty-baseColor: #242424; -} -Ruler { - qproperty-ParentBGColor: #303030; - qproperty-ScaleColor: #e6e6e6; -} -#ComboViewerToolOptions { - border-top: 1px solid #848484; - /*.base_outset;*/ -} -#RulerToolOptionValues { - color: black; -} -/*-----------File Browser------------*/ -#DirTreeView, -#FunctionEditorTree, -#ShortcutTree, -#FxTreeView { - alternate-background-color: #3d3d3d; - border-top: 1px solid #848484; - background-color: #303030; - margin: 0px; -} -#DirTreeView::branch:adjoins-item { - border-image: url("imgs/tree_branch-end.png") 0; -} -#DirTreeView::branch:has-siblings { - border-image: url("imgs/tree_vline.png") 0; -} -#DirTreeView::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree_branch-more.png") 0; -} -#DirTreeView::branch:has-children:closed { - border-image: none; - image: url("imgs/tree_branch-closed_nosib.png"); -} -#DirTreeView::branch:has-children:open { - border-image: none; - image: url("imgs/tree_branch-open_nosib.png"); -} -#DirTreeView::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree_branch-closed.png"); -} -#DirTreeView::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree_branch-open.png"); -} -DvItemViewerPanel { - qproperty-TextColor: #bebebe; - qproperty-AlternateBackground: #3d3d3d; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #82be82; - qproperty-SelectedItemBackground: #448044; -} -DvDirTreeView { - qproperty-TextColor: #bebebe; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #82be82; - qproperty-SelectedFolderTextColor: #001e00; - qproperty-SelectedItemBackground: #448044; - alternate-background-color: #3d3d3d; -} -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid #585858; - margin-bottom: 5px; - border-radius: 3px; -} -#TitleTxtLabel { - color: #56a156; -} -#PsdSettingsGroupBox { - border: 1px solid #448044; -} -#FileDoesNotExistLabel { - color: #ff3232; -} -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#CleanupSettingsShowButton:checked, -#LoadLevelShowButton:checked, -#FxSettingsPreviewShowButton:checked { - image: url("imgs/minus.png"); -} -ParamsPage { - qproperty-TextColor: #bebebe; -} -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea { - border: 0px; -} -#FunctionSegmentViewer { - background-color: #303030; - border-width: 0px; -} -#xsheetArea, -#ScrollArea { - background-color: #161616; - border-width: 0px; -} -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: #e6e678; -} -#xsheetColumnAreaMenu_Lock { - background-color: #f5f5f5; -} -#xsheetColumnAreaMenu_Camstand { - background-color: #ffa480; -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; -} -#xsheetColumnAreaMenu_Preview:selected, -#xsheetColumnAreaMenu_Lock:selected, -#xsheetColumnAreaMenu_Camstand:selected { - background-color: #000080; -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; -} -#XSheetToolbar { - margin: 0; - padding: 0; - border: 0; -} -#XSheetToolbar::separator:horizontal { - margin-right: 4; - margin-left: 4; -} -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid #0f0f0f; - /* buttons */ -} -QScrollBar:vertical { - width: 16px; - margin-left: 0px; - margin-right: 0px; - margin-top: 16px; - margin-bottom: 16px; -} -QScrollBar:horizontal { - height: 16px; - margin-left: 16px; - margin-right: 16px; - margin-top: 0px; - margin-bottom: 0px; -} -QScrollBar::handle { - border-width: 3; - image-position: center center; -} -QScrollBar::handle:vertical { - border-image: url("imgs/sb_g_vhandle.png") 3; - image: url("imgs/sb_g_vline.png"); - min-height: 40px; -} -QScrollBar::handle:horizontal { - border-image: url("imgs/sb_g_hhandle.png") 3; - image: url("imgs/sb_g_hline.png"); - min-width: 40px; -} -QScrollBar::add-line { - subcontrol-origin: margin; -} -QScrollBar::add-line:vertical { - image: url("imgs/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; -} -QScrollBar::add-line:vertical:pressed { - image: url("imgs/sb_g_downarrow_pressed.png"); -} -QScrollBar::add-line:horizontal { - image: url("imgs/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; -} -QScrollBar::add-line:horizontal:pressed { - image: url("imgs/sb_g_rarrow_pressed.png"); -} -QScrollBar::sub-line { - subcontrol-origin: margin; -} -QScrollBar::sub-line:vertical { - image: url("imgs/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; -} -QScrollBar::sub-line:vertical:pressed { - image: url("imgs/sb_g_uparrow_pressed.png"); -} -QScrollBar::sub-line:horizontal { - image: url("imgs/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; -} -QScrollBar::sub-line:horizontal:pressed { - image: url("imgs/sb_g_larrow_pressed.png"); -} -QScrollBar::add-page, -QScrollBar::sub-page { - background-color: #232323; -} -#noteTextEdit { - color: black; -} -XsheetViewer { - qproperty-TextColor: #e6e6e6; - qproperty-BGColor: #484848; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-VerticalLineColor: #787878; - qproperty-VerticalLineHeadColor: #a0a0a0; - qproperty-PreviewFrameTextColor: #96e6e6; - qproperty-CurrentRowBgColor: #506082; - qproperty-EmptyColumnHeadColor: #606060; - qproperty-SelectedColumnTextColor: #e66464; - qproperty-EmptyCellColor: #404040; - qproperty-NotEmptyColumnColor: #484848; - qproperty-SelectedEmptyCellColor: #6c6c6c; - qproperty-LevelColumnColor: #4c6e4c; - qproperty-LevelColumnBorderColor: #8fb38f; - qproperty-SelectedLevelColumnColor: #6b8c6b; - qproperty-VectorColumnColor: #7b7b4c; - qproperty-VectorColumnBorderColor: #bbbb9a; - qproperty-SelectedVectorColumnColor: #8c8c60; - qproperty-ChildColumnColor: #6a526b; - qproperty-ChildColumnBorderColor: #b1a3b3; - qproperty-SelectedChildColumnColor: #7a617a; - qproperty-FullcolorColumnColor: #657a96; - qproperty-FullcolorColumnBorderColor: #9eb8bb; - qproperty-SelectedFullcolorColumnColor: #8896a7; - qproperty-FxColumnColor: #56553c; - qproperty-FxColumnBorderColor: #95958a; - qproperty-SelectedFxColumnColor: #6a6d5a; - qproperty-ReferenceColumnColor: #616161; - qproperty-ReferenceColumnBorderColor: #a2a2a2; - qproperty-SelectedReferenceColumnColor: #828282; - qproperty-PaletteColumnColor: #3a655f; - qproperty-PaletteColumnBorderColor: #86aca7; - qproperty-SelectedPaletteColumnColor: #5f8581; - qproperty-MeshColumnColor: #684d86; - qproperty-MeshColumnBorderColor: #ba92ef; - qproperty-SelectedMeshColumnColor: #8a75a2; - qproperty-SoundColumnColor: #657456; - qproperty-SoundColumnBorderColor: #a0af7d; - qproperty-SelectedSoundColumnColor: #7f956a; - qproperty-SoundColumnHlColor: #34fe5e; - qproperty-SoundColumnTrackColor: #b6c29d; - qproperty-ColumnHeadPastelizer: #000000; - qproperty-SelectedColumnHead: #506082; - qproperty-LightLightBGColor: #fafafa; - qproperty-LightBGColor: #f0f0f0; - qproperty-DarkBGColor: #e1e1e1; - qproperty-DarkLineColor: #969696; -} -XsheetViewer QScrollBar { - border: 1px solid #232323; -} -/*------- Schematic ---------*/ -#SchematicBottomFrame { - margin: 0px; - padding: 0px; - background-color: #303030; - border-top: 1px solid #848484; - border-image: none; -} -#SchematicSceneViewer { - background-color: #373737; -} -/*------ Function Editor ---------*/ -#FunctionParametersPanel { - border: 1px solid #585858; -} -#FunctionEditorTree::branch:adjoins-item, -#ShortcutTree::branch:adjoins-item { - border-image: url("imgs/tree17_branch-end.png") 0; -} -#FunctionEditorTree::branch:has-siblings, -#ShortcutTree::branch:has-siblings { - border-image: url("imgs/tree17_vline.png") 0; -} -#FunctionEditorTree::branch:has-siblings:adjoins-item, -#ShortcutTree::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree17_branch-more.png") 0; -} -#FunctionEditorTree::branch:has-children:closed, -#ShortcutTree::branch:has-children:closed { - border-image: none; - image: url("imgs/tree17_branch-closed_nosib.png"); -} -#FunctionEditorTree::branch:has-children:open, -#ShortcutTree::branch:has-children:open { - border-image: none; - image: url("imgs/tree17_branch-open_nosib.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:closed, -#ShortcutTree::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree17_branch-closed.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:open, -#ShortcutTree::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree17_branch-open.png"); -} -FunctionPanel { - qproperty-BGColor: #303030; - qproperty-ValueLineColor: #484848; - qproperty-FrameLineColor: #606060; - qproperty-OtherCurvesColor: #808080; - qproperty-RulerBackground: #303030; - qproperty-TextColor: #e6e6e6; - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} -FunctionTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-CurrentTextColor: #58e458; -} -SpreadsheetViewer { - qproperty-LightLightBGColor: #404040; - qproperty-CurrentRowBgColor: #506082; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-BGColor: #484848; - qproperty-VerticalLineColor: #787878; - qproperty-KeyFrameColor: #995d1d; - qproperty-KeyFrameBorderColor: #c9b04b; - qproperty-SelectedKeyFrameColor: #978056; - qproperty-InBetweenColor: #666250; - qproperty-InBetweenBorderColor: #cdcec8; - qproperty-SelectedInBetweenColor: #7e8079; - qproperty-SelectedEmptyColor: #6c6c6c; - qproperty-SelectedSceneRangeEmptyColor: #757575; - qproperty-TextColor: #e6e6e6; - qproperty-ColumnHeaderBorderColor: #8e8e8e; - qproperty-SelectedColumnTextColor: #58e458; -} -#keyFrameNavigator { - background: none; - margin: 0; - padding: 0; - border: 0; -} -#keyFrameNavigator QToolButton { - min-width: 18px; -} -#keyFrameNavigator #PreviousKey { - image: url('imgs/prevkey.png'); -} -#keyFrameNavigator #PreviousKey:disabled { - image: url('imgs/prevkey_disabled.png'); -} -#keyFrameNavigator #NextKey { - image: url('imgs/nextkey.png'); -} -#keyFrameNavigator #NextKey:disabled { - image: url('imgs/nextkey_disabled.png'); -} -#ExpressionField { - background-color: #e3e3e3; - border: 1px solid #585858; - border-radius: 2px; - min-height: 14px; -} -#FunctionSegmentViewerLinkButton { - border: 2px; - margin: 0px; - background-image: url("imgs/segment_unlinked.png"); - background-color: #636363; - border-style: outset; - border-left-color: #8b8b8b; - border-top-color: #9f9f9f; - border-right-color: #3f3f3f; - border-bottom-color: #333333; -} -#FunctionSegmentViewerLinkButton:checked { - background-image: url("imgs/segment_linked.png"); - background-color: #636363; - border-style: inset; - border-left-color: #3f3f3f; - border-top-color: #333333; - border-right-color: #8b8b8b; - border-bottom-color: #9f9f9f; -} -#FunctionSegmentViewerLinkButton:disabled { - background-image: url("imgs/segment_disabled.png"); - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; - border: 1px; -} -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel { - color: #56a156; -} -/*------ Cleanup Settings------*/ -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#CameraSettingsButton { - padding: 2px; - border: 0px; -} -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; - background-color: #303030; -} -#CameraSettingsRadioButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover.png"); -} -#CameraSettingsDPI { - color: #56a156; -} -#CameraSettingsRadioButton_Small { - padding: 2px; - background-color: #303030; -} -#CameraSettingsRadioButton_Small::indicator { - width: 11px; - height: 21px; -} -#CameraSettingsRadioButton_Small::indicator:checked { - image: url("imgs/cam_lock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked { - image: url("imgs/cam_unlock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover_small.png"); -} -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("imgs/fsp_released.png"); -} -#ForceSquaredPixelButton:hover { - image: url("imgs/fsp_hover.png"); -} -#ForceSquaredPixelButton:checked { - image: url("imgs/fsp_pressed.png"); -} -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; - /*space between button and text*/ -} -#EditToolLockButton::indicator { - background-color: #303030; - border-width: 0px; - width: 21px; - height: 21px; -} -#EditToolLockButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#EditToolLockButton::indicator:unchecked:hover { - image: url("imgs/cam_unlock_hover.png"); -} -#EditToolLockButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#EditToolLockButton::indicator:checked:hover { - image: url("imgs/cam_lock_hover.png"); -} -IconViewField { - qproperty-ScalePegPixmap: url("imgs/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("imgs/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("imgs/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("imgs/selectiontool_thickness.png"); -} -PopupButton::menu-indicator { - image: url("imgs/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; -} -PopupButton::menu-indicator:disabled { - image: url("imgs/down_arrow_disabled.png"); -} -#Cap, -#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; - max-width: 32px; -} -#Cap QMenu, -#Join QMenu { - min-width: 18px; - max-width: 18px; -} -#Cap QMenu::item, -#Join QMenu::item { - min-width: 16px; - max-width: 16px; - padding: 0px; -} -/*------ Script Console ------*/ -#ScriptConsole { - border: 1px inset; - background-color: #dcdcdc; - color: black; - font-family: "Courier"; -} -/*------ Topbar and Menubar of the MainWindow ------*/ -#TopBar { - height: 22px; - background-color: #232323; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background-color: #303030; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - /*border-image: url("@{image_url}/topbar_bg.png") 0 0 0 0 stretch stretch; */ - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; -} -#TopBarTab::tab { - margin-left: 5px; - margin-right: 5px; - margin-top: 1px; - margin-bottom: 1px; - padding-left: 8px; - padding-right: 8px; - padding-top: 1px; - padding-bottom: 1px; - background-color: #232323; - border: 1px solid #585858; - border-radius: 2px; -} -#TopBarTab::tab:selected { - background-color: #448044; - color: #e6e6e6; -} -#TopBarTab::tab:hover { - background-color: #646464; - color: #e6e6e6; -} -#StackedMenuBar { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#DockSeparator { - background-color: #232323; - border-width: 0; -} -#TDockPlaceholder { - background-color: #b9f000; -} -/*------ Popups -------*/ -QDialog #dialogButtonFrame { - background-color: #232323; -} -#SceneSettings QLabel { - color: #56a156; -} -#PreferencesPopup QListWidget { - background-color: #303030; - border-width: 2px; - alternate-background-color: #353535; - font-size: 12px; -} -#PreferencesPopup QListWidget::item { - padding: 2px; -} -#PreferencesPopup QListWidget::item:selected { - background-color: #448044; - color: #dcdcdc; -} -#PreferencesPopup QListWidget::item:hover { - background-color: #3d3d3d; -} -QListView { - outline: 0; -} -#OutputSettingsBox { - border: 1px solid #585858; - border-radius: 4px; -} -#OutputSettingsLabel { - color: #56a156; -} -#OutputSettingsCameraBox { - background-color: #303030; - border-width: 2px; -} -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#OutputSettingsShowButton:checked { - image: url("imgs/minus.png"); -} -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: #454545; - qproperty-LightLineEdgeColor: #303030; - qproperty-MiddleLineColor: #000000; - qproperty-DarkLineColor: #202020; - qproperty-HandleLeftPixmap: url("imgs/h_slider_left.png"); - qproperty-HandleRightPixmap: url("imgs/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("imgs/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("imgs/h_slider_right_disabled.png"); -} -#FxSettingsLabel { - color: #a0e680; -} -#FxSettings { - border-width: 0px; - border-bottom: 3px double #404040; -} -#FxSettingsHelpButton { - color: #a0c8ff; -} -#MatchLineButton { - background-color: #4a4a4a; -} -#MatchLineButton::pressed { - background-color: #7d7d7d; -} -#LargeSizedText { - font-size: 17px; -} -#GearButton { - qproperty-icon: url("imgs/gear.png"); -} -#SubfolderButton { - qproperty-icon: url("imgs/subfolder.png"); -} -#StartupLabel { - padding: 3px; -} -#StartupLabel:hover { - background-color: #4a4a4a; - border-radius: 3px; -} -Filmstrip QComboBox { - margin: 0px; - border-radius: 0px; -} -#WordButton { - font-size: 12px; - /* color: black; */ - background-color: #303030; - /*border-style: outset; - .set_border_color(white,black); */ - border-width: 1px; - border-radius: 4px; - border: 1px solid #848484; - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#WordButton:pressed { - color: black; - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -#WordButton:hover { - color: black; - background-color: #faffa2; -} -#WordButton:hover:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -PencilTestPopup { - /* Allow for using a 768 screen */ - min-height: 730px; - /* some clipping will still occur on width, but this - allows for filling half of a 1024 screen */ - min-width: 512px; -} -TPanelTitleBar { - qproperty-SeparatorColor: #232323; - qproperty-ActiveIconColor: #00b400; - qproperty-FreezeColor: #c80000; -} diff --git a/stuff/config/qss/dark/imgs/bottomseparator.png b/stuff/config/qss/dark/imgs/bottomseparator.png deleted file mode 100644 index afb41a1..0000000 Binary files a/stuff/config/qss/dark/imgs/bottomseparator.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/cam_lock.png b/stuff/config/qss/dark/imgs/cam_lock.png deleted file mode 100644 index 35ed76e..0000000 Binary files a/stuff/config/qss/dark/imgs/cam_lock.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/cam_lock_hover.png b/stuff/config/qss/dark/imgs/cam_lock_hover.png deleted file mode 100644 index 6ac9187..0000000 Binary files a/stuff/config/qss/dark/imgs/cam_lock_hover.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/cam_lock_hover_small.png b/stuff/config/qss/dark/imgs/cam_lock_hover_small.png deleted file mode 100644 index e93b677..0000000 Binary files a/stuff/config/qss/dark/imgs/cam_lock_hover_small.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/cam_lock_small.png b/stuff/config/qss/dark/imgs/cam_lock_small.png deleted file mode 100644 index d5bf7aa..0000000 Binary files a/stuff/config/qss/dark/imgs/cam_lock_small.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/cam_unlock.png b/stuff/config/qss/dark/imgs/cam_unlock.png deleted file mode 100644 index 8496602..0000000 Binary files a/stuff/config/qss/dark/imgs/cam_unlock.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/cam_unlock_hover.png b/stuff/config/qss/dark/imgs/cam_unlock_hover.png deleted file mode 100644 index fda03b4..0000000 Binary files a/stuff/config/qss/dark/imgs/cam_unlock_hover.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/cam_unlock_hover_small.png b/stuff/config/qss/dark/imgs/cam_unlock_hover_small.png deleted file mode 100644 index cca9693..0000000 Binary files a/stuff/config/qss/dark/imgs/cam_unlock_hover_small.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/cam_unlock_small.png b/stuff/config/qss/dark/imgs/cam_unlock_small.png deleted file mode 100644 index cca9693..0000000 Binary files a/stuff/config/qss/dark/imgs/cam_unlock_small.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/check_indicator.png b/stuff/config/qss/dark/imgs/check_indicator.png deleted file mode 100644 index a0c26fa..0000000 Binary files a/stuff/config/qss/dark/imgs/check_indicator.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/check_indicator_disabled.png b/stuff/config/qss/dark/imgs/check_indicator_disabled.png deleted file mode 100644 index 850f322..0000000 Binary files a/stuff/config/qss/dark/imgs/check_indicator_disabled.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/check_indicator_off.png b/stuff/config/qss/dark/imgs/check_indicator_off.png deleted file mode 100644 index ed99477..0000000 Binary files a/stuff/config/qss/dark/imgs/check_indicator_off.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/click.png b/stuff/config/qss/dark/imgs/click.png deleted file mode 100644 index 7abc513..0000000 Binary files a/stuff/config/qss/dark/imgs/click.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/click_pink.png b/stuff/config/qss/dark/imgs/click_pink.png deleted file mode 100644 index 0310332..0000000 Binary files a/stuff/config/qss/dark/imgs/click_pink.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/colorslider_add.png b/stuff/config/qss/dark/imgs/colorslider_add.png deleted file mode 100644 index ad28185..0000000 Binary files a/stuff/config/qss/dark/imgs/colorslider_add.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/colorslider_add_pressed.png b/stuff/config/qss/dark/imgs/colorslider_add_pressed.png deleted file mode 100644 index ce0ebeb..0000000 Binary files a/stuff/config/qss/dark/imgs/colorslider_add_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/colorslider_button_bg.png b/stuff/config/qss/dark/imgs/colorslider_button_bg.png deleted file mode 100644 index 7138969..0000000 Binary files a/stuff/config/qss/dark/imgs/colorslider_button_bg.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/colorslider_sub.png b/stuff/config/qss/dark/imgs/colorslider_sub.png deleted file mode 100644 index d6fca5f..0000000 Binary files a/stuff/config/qss/dark/imgs/colorslider_sub.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/colorslider_sub_pressed.png b/stuff/config/qss/dark/imgs/colorslider_sub_pressed.png deleted file mode 100644 index 374c8b0..0000000 Binary files a/stuff/config/qss/dark/imgs/colorslider_sub_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/combo_down_arrow.png b/stuff/config/qss/dark/imgs/combo_down_arrow.png deleted file mode 100644 index 3551eeb..0000000 Binary files a/stuff/config/qss/dark/imgs/combo_down_arrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/down_arrow_black.png b/stuff/config/qss/dark/imgs/down_arrow_black.png deleted file mode 100644 index d9fbc98..0000000 Binary files a/stuff/config/qss/dark/imgs/down_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/flipmarker.png b/stuff/config/qss/dark/imgs/flipmarker.png deleted file mode 100644 index fdbe460..0000000 Binary files a/stuff/config/qss/dark/imgs/flipmarker.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/flipslider.png b/stuff/config/qss/dark/imgs/flipslider.png deleted file mode 100644 index a95a71e..0000000 Binary files a/stuff/config/qss/dark/imgs/flipslider.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/fpssb_g_larrow.png b/stuff/config/qss/dark/imgs/fpssb_g_larrow.png deleted file mode 100644 index 69774ac..0000000 Binary files a/stuff/config/qss/dark/imgs/fpssb_g_larrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/fpssb_g_larrow_pressed.png b/stuff/config/qss/dark/imgs/fpssb_g_larrow_pressed.png deleted file mode 100644 index 169a0ef..0000000 Binary files a/stuff/config/qss/dark/imgs/fpssb_g_larrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/fpssb_g_rarrow.png b/stuff/config/qss/dark/imgs/fpssb_g_rarrow.png deleted file mode 100644 index ebae227..0000000 Binary files a/stuff/config/qss/dark/imgs/fpssb_g_rarrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/fpssb_g_rarrow_pressed.png b/stuff/config/qss/dark/imgs/fpssb_g_rarrow_pressed.png deleted file mode 100644 index 81212cb..0000000 Binary files a/stuff/config/qss/dark/imgs/fpssb_g_rarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/fsp_hover.png b/stuff/config/qss/dark/imgs/fsp_hover.png deleted file mode 100644 index b26fe18..0000000 Binary files a/stuff/config/qss/dark/imgs/fsp_hover.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/fsp_pressed.png b/stuff/config/qss/dark/imgs/fsp_pressed.png deleted file mode 100644 index 4b75abf..0000000 Binary files a/stuff/config/qss/dark/imgs/fsp_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/fsp_released.png b/stuff/config/qss/dark/imgs/fsp_released.png deleted file mode 100644 index e53cc44..0000000 Binary files a/stuff/config/qss/dark/imgs/fsp_released.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/gear.png b/stuff/config/qss/dark/imgs/gear.png deleted file mode 100644 index 7e07631..0000000 Binary files a/stuff/config/qss/dark/imgs/gear.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/h_slider_left.png b/stuff/config/qss/dark/imgs/h_slider_left.png deleted file mode 100644 index 62e6d1a..0000000 Binary files a/stuff/config/qss/dark/imgs/h_slider_left.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/h_slider_left_disabled.png b/stuff/config/qss/dark/imgs/h_slider_left_disabled.png deleted file mode 100644 index e2fb3af..0000000 Binary files a/stuff/config/qss/dark/imgs/h_slider_left_disabled.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/h_slider_right.png b/stuff/config/qss/dark/imgs/h_slider_right.png deleted file mode 100644 index f0f482f..0000000 Binary files a/stuff/config/qss/dark/imgs/h_slider_right.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/h_slider_right_disabled.png b/stuff/config/qss/dark/imgs/h_slider_right_disabled.png deleted file mode 100644 index 010b100..0000000 Binary files a/stuff/config/qss/dark/imgs/h_slider_right_disabled.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/handle_border.png b/stuff/config/qss/dark/imgs/handle_border.png deleted file mode 100644 index e2c8465..0000000 Binary files a/stuff/config/qss/dark/imgs/handle_border.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/left_arrow_black.png b/stuff/config/qss/dark/imgs/left_arrow_black.png deleted file mode 100644 index b89cdcc..0000000 Binary files a/stuff/config/qss/dark/imgs/left_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/minus.png b/stuff/config/qss/dark/imgs/minus.png deleted file mode 100644 index b10fa0f..0000000 Binary files a/stuff/config/qss/dark/imgs/minus.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/nextkey.png b/stuff/config/qss/dark/imgs/nextkey.png deleted file mode 100644 index ce8ccb4..0000000 Binary files a/stuff/config/qss/dark/imgs/nextkey.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/nextkey_disabled.png b/stuff/config/qss/dark/imgs/nextkey_disabled.png deleted file mode 100644 index 1f667f2..0000000 Binary files a/stuff/config/qss/dark/imgs/nextkey_disabled.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/nextkey_over.png b/stuff/config/qss/dark/imgs/nextkey_over.png deleted file mode 100644 index 49b0621..0000000 Binary files a/stuff/config/qss/dark/imgs/nextkey_over.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/over.png b/stuff/config/qss/dark/imgs/over.png deleted file mode 100644 index 1ee3dbb..0000000 Binary files a/stuff/config/qss/dark/imgs/over.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/over_pressed_yellow.png b/stuff/config/qss/dark/imgs/over_pressed_yellow.png deleted file mode 100644 index 892023a..0000000 Binary files a/stuff/config/qss/dark/imgs/over_pressed_yellow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/over_yellow.png b/stuff/config/qss/dark/imgs/over_yellow.png deleted file mode 100644 index fc182a6..0000000 Binary files a/stuff/config/qss/dark/imgs/over_yellow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/plus.png b/stuff/config/qss/dark/imgs/plus.png deleted file mode 100644 index 81ed056..0000000 Binary files a/stuff/config/qss/dark/imgs/plus.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/prevkey.png b/stuff/config/qss/dark/imgs/prevkey.png deleted file mode 100644 index d8f71be..0000000 Binary files a/stuff/config/qss/dark/imgs/prevkey.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/prevkey_disabled.png b/stuff/config/qss/dark/imgs/prevkey_disabled.png deleted file mode 100644 index fcaaa93..0000000 Binary files a/stuff/config/qss/dark/imgs/prevkey_disabled.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/prevkey_over.png b/stuff/config/qss/dark/imgs/prevkey_over.png deleted file mode 100644 index 47a67ca..0000000 Binary files a/stuff/config/qss/dark/imgs/prevkey_over.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/right_arrow_black.png b/stuff/config/qss/dark/imgs/right_arrow_black.png deleted file mode 100644 index 8878c62..0000000 Binary files a/stuff/config/qss/dark/imgs/right_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_downarrow.png b/stuff/config/qss/dark/imgs/sb_g_downarrow.png deleted file mode 100644 index 8cb05fb..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_downarrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_downarrow_pressed.png b/stuff/config/qss/dark/imgs/sb_g_downarrow_pressed.png deleted file mode 100644 index 01dbd01..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_downarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_hhandle.png b/stuff/config/qss/dark/imgs/sb_g_hhandle.png deleted file mode 100644 index 8749227..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_hhandle.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_hline.png b/stuff/config/qss/dark/imgs/sb_g_hline.png deleted file mode 100644 index 2399316..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_hline.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_larrow.png b/stuff/config/qss/dark/imgs/sb_g_larrow.png deleted file mode 100644 index dad9f76..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_larrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_larrow_pressed.png b/stuff/config/qss/dark/imgs/sb_g_larrow_pressed.png deleted file mode 100644 index c97c43d..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_larrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_ls_downarrow.png b/stuff/config/qss/dark/imgs/sb_g_ls_downarrow.png deleted file mode 100644 index e89fe51..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_ls_downarrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_ls_downarrow_pressed.png b/stuff/config/qss/dark/imgs/sb_g_ls_downarrow_pressed.png deleted file mode 100644 index e89fe51..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_ls_downarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_ls_uparrow.png b/stuff/config/qss/dark/imgs/sb_g_ls_uparrow.png deleted file mode 100644 index 725dc08..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_ls_uparrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_ls_uparrow_pressed.png b/stuff/config/qss/dark/imgs/sb_g_ls_uparrow_pressed.png deleted file mode 100644 index 9a83888..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_ls_uparrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_ls_vhandle.png b/stuff/config/qss/dark/imgs/sb_g_ls_vhandle.png deleted file mode 100644 index 386cb3b..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_ls_vhandle.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_rarrow.png b/stuff/config/qss/dark/imgs/sb_g_rarrow.png deleted file mode 100644 index e155c66..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_rarrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_rarrow_pressed.png b/stuff/config/qss/dark/imgs/sb_g_rarrow_pressed.png deleted file mode 100644 index 8a3b8d2..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_rarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_uparrow.png b/stuff/config/qss/dark/imgs/sb_g_uparrow.png deleted file mode 100644 index acd09f7..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_uparrow.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_uparrow_pressed.png b/stuff/config/qss/dark/imgs/sb_g_uparrow_pressed.png deleted file mode 100644 index 89ba33f..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_uparrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_vhandle.png b/stuff/config/qss/dark/imgs/sb_g_vhandle.png deleted file mode 100644 index 386cb3b..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_vhandle.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/sb_g_vline.png b/stuff/config/qss/dark/imgs/sb_g_vline.png deleted file mode 100644 index 0397a76..0000000 Binary files a/stuff/config/qss/dark/imgs/sb_g_vline.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/segment_disabled.png b/stuff/config/qss/dark/imgs/segment_disabled.png deleted file mode 100644 index a2b7822..0000000 Binary files a/stuff/config/qss/dark/imgs/segment_disabled.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/segment_linked.png b/stuff/config/qss/dark/imgs/segment_linked.png deleted file mode 100644 index a8a7f45..0000000 Binary files a/stuff/config/qss/dark/imgs/segment_linked.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/segment_unlinked.png b/stuff/config/qss/dark/imgs/segment_unlinked.png deleted file mode 100644 index 7621c82..0000000 Binary files a/stuff/config/qss/dark/imgs/segment_unlinked.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/selectiontool_position.png b/stuff/config/qss/dark/imgs/selectiontool_position.png deleted file mode 100644 index 9b5b591..0000000 Binary files a/stuff/config/qss/dark/imgs/selectiontool_position.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/selectiontool_rotation.png b/stuff/config/qss/dark/imgs/selectiontool_rotation.png deleted file mode 100644 index fb8b3a6..0000000 Binary files a/stuff/config/qss/dark/imgs/selectiontool_rotation.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/selectiontool_scalepeg.png b/stuff/config/qss/dark/imgs/selectiontool_scalepeg.png deleted file mode 100644 index 1880b02..0000000 Binary files a/stuff/config/qss/dark/imgs/selectiontool_scalepeg.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/selectiontool_thickness.png b/stuff/config/qss/dark/imgs/selectiontool_thickness.png deleted file mode 100644 index 2f906cc..0000000 Binary files a/stuff/config/qss/dark/imgs/selectiontool_thickness.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/separator.png b/stuff/config/qss/dark/imgs/separator.png deleted file mode 100644 index b3f380b..0000000 Binary files a/stuff/config/qss/dark/imgs/separator.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/separator_h.png b/stuff/config/qss/dark/imgs/separator_h.png deleted file mode 100644 index a07b4da..0000000 Binary files a/stuff/config/qss/dark/imgs/separator_h.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/separator_v.png b/stuff/config/qss/dark/imgs/separator_v.png deleted file mode 100644 index e663eee..0000000 Binary files a/stuff/config/qss/dark/imgs/separator_v.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/subfolder.png b/stuff/config/qss/dark/imgs/subfolder.png deleted file mode 100644 index 6c95142..0000000 Binary files a/stuff/config/qss/dark/imgs/subfolder.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/topbar_bg.png b/stuff/config/qss/dark/imgs/topbar_bg.png deleted file mode 100644 index 18ad746..0000000 Binary files a/stuff/config/qss/dark/imgs/topbar_bg.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tpaneltitlebar_border.png b/stuff/config/qss/dark/imgs/tpaneltitlebar_border.png deleted file mode 100644 index 6a7891c..0000000 Binary files a/stuff/config/qss/dark/imgs/tpaneltitlebar_border.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tpaneltitlebar_border_active.png b/stuff/config/qss/dark/imgs/tpaneltitlebar_border_active.png deleted file mode 100644 index e7c61f4..0000000 Binary files a/stuff/config/qss/dark/imgs/tpaneltitlebar_border_active.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tpaneltitlebar_border_float.png b/stuff/config/qss/dark/imgs/tpaneltitlebar_border_float.png deleted file mode 100644 index 719cf62..0000000 Binary files a/stuff/config/qss/dark/imgs/tpaneltitlebar_border_float.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tpaneltitlebar_border_float_active.png b/stuff/config/qss/dark/imgs/tpaneltitlebar_border_float_active.png deleted file mode 100644 index 6a7891c..0000000 Binary files a/stuff/config/qss/dark/imgs/tpaneltitlebar_border_float_active.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree17_branch-closed.png b/stuff/config/qss/dark/imgs/tree17_branch-closed.png deleted file mode 100644 index 070bde4..0000000 Binary files a/stuff/config/qss/dark/imgs/tree17_branch-closed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree17_branch-closed_nosib.png b/stuff/config/qss/dark/imgs/tree17_branch-closed_nosib.png deleted file mode 100644 index e05adab..0000000 Binary files a/stuff/config/qss/dark/imgs/tree17_branch-closed_nosib.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree17_branch-end.png b/stuff/config/qss/dark/imgs/tree17_branch-end.png deleted file mode 100644 index 7b45c3f..0000000 Binary files a/stuff/config/qss/dark/imgs/tree17_branch-end.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree17_branch-more.png b/stuff/config/qss/dark/imgs/tree17_branch-more.png deleted file mode 100644 index 66cc906..0000000 Binary files a/stuff/config/qss/dark/imgs/tree17_branch-more.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree17_branch-open.png b/stuff/config/qss/dark/imgs/tree17_branch-open.png deleted file mode 100644 index 083b12c..0000000 Binary files a/stuff/config/qss/dark/imgs/tree17_branch-open.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree17_branch-open_nosib.png b/stuff/config/qss/dark/imgs/tree17_branch-open_nosib.png deleted file mode 100644 index 3644846..0000000 Binary files a/stuff/config/qss/dark/imgs/tree17_branch-open_nosib.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree17_vline.png b/stuff/config/qss/dark/imgs/tree17_vline.png deleted file mode 100644 index 0dcebda..0000000 Binary files a/stuff/config/qss/dark/imgs/tree17_vline.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree_branch-closed.png b/stuff/config/qss/dark/imgs/tree_branch-closed.png deleted file mode 100644 index c67766c..0000000 Binary files a/stuff/config/qss/dark/imgs/tree_branch-closed.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree_branch-closed_nosib.png b/stuff/config/qss/dark/imgs/tree_branch-closed_nosib.png deleted file mode 100644 index 3191881..0000000 Binary files a/stuff/config/qss/dark/imgs/tree_branch-closed_nosib.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree_branch-end.png b/stuff/config/qss/dark/imgs/tree_branch-end.png deleted file mode 100644 index 291f530..0000000 Binary files a/stuff/config/qss/dark/imgs/tree_branch-end.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree_branch-more.png b/stuff/config/qss/dark/imgs/tree_branch-more.png deleted file mode 100644 index 262a221..0000000 Binary files a/stuff/config/qss/dark/imgs/tree_branch-more.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree_branch-open.png b/stuff/config/qss/dark/imgs/tree_branch-open.png deleted file mode 100644 index b8e604e..0000000 Binary files a/stuff/config/qss/dark/imgs/tree_branch-open.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree_branch-open_nosib.png b/stuff/config/qss/dark/imgs/tree_branch-open_nosib.png deleted file mode 100644 index 66768b9..0000000 Binary files a/stuff/config/qss/dark/imgs/tree_branch-open_nosib.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/tree_vline.png b/stuff/config/qss/dark/imgs/tree_vline.png deleted file mode 100644 index 9060682..0000000 Binary files a/stuff/config/qss/dark/imgs/tree_vline.png and /dev/null differ diff --git a/stuff/config/qss/dark/imgs/up_arrow_black.png b/stuff/config/qss/dark/imgs/up_arrow_black.png deleted file mode 100644 index 6c27909..0000000 Binary files a/stuff/config/qss/dark/imgs/up_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/gray_048/gray_048.less b/stuff/config/qss/gray_048/gray_048.less deleted file mode 100644 index 200671e..0000000 --- a/stuff/config/qss/gray_048/gray_048.less +++ /dev/null @@ -1,1462 +0,0 @@ -// out: gray_048.qss -/* LESS Definitions */ - -/*Image URL*/ -@image_url: "../gray_072/imgs"; - -/*Text Color*/ -@m_baseTxtColor: rgb(230,230,230); -@m_disabledTxtColor: rgb(128,128,128); - -@m_baseBG: rgb(48,48,48); -@m_base_lightH: rgb(88,88,88); -@m_base_lightV: rgb(108,108,108); -@m_base_darkH: rgb(12,12,12); -@m_base_darkV: rgb(0,0,0); - -/*Used in Dialog border*/ -@m_dialog_border_color: rgb(0,0,0); - -/*Color for Selected Item*/ -@m_selectedBG: rgb(128,160,220); - -/*Color for title texts*/ -@m_titleTxtColor: lighten(@m_selectedBG, 10%); - -/* color adjustable by delta */ -.baseBG(@dark: 0%){ - background-color: darken(@m_baseBG, @dark); -} -.baseBG(light, @light: 0%){ - background-color: lighten(@m_baseBG, @light); -} - -.set_border_color(@lefttop, @rightbottom){ - border-left-color: @lefttop; - border-top-color: @lefttop; - border-right-color: @rightbottom; - border-bottom-color: @rightbottom; -} - -.base_inset(@dark: 0%){ - .baseBG(@dark); - border-style: inset; - border-left-color: darken(@m_base_darkH, @dark); - border-top-color: darken(@m_base_darkV, @dark); - border-right-color: darken(@m_base_lightH, @dark); - border-bottom-color: darken(@m_base_lightV, @dark); -} -.base_inset(light, @light: 0%){ - .baseBG(light, @light); - border-style: inset; - border-left-color: lighten(@m_base_darkH, @light); - border-top-color: lighten(@m_base_darkV, @light); - border-right-color: lighten(@m_base_lightH, @light); - border-bottom-color: lighten(@m_base_lightV, @light); -} - -.base_outset(@dark: 0%){ - .baseBG(@dark); - border-style: outset; - border-left-color: darken(@m_base_lightH, @dark); - border-top-color: darken(@m_base_lightV, @dark); - border-right-color: darken(@m_base_darkH, @dark); - border-bottom-color: darken(@m_base_darkV, @dark); -} -.base_outset(light, @light: 0%){ - .baseBG(light, @light); - border-style: outset; - border-left-color: lighten(@m_base_lightH, @light); - border-top-color: lighten(@m_base_lightV, @light); - border-right-color: lighten(@m_base_darkH, @light); - border-bottom-color: lighten(@m_base_darkV, @light); -} - -/*set padding*/ -.set_padding(@hPad: 0px, @vPad: 0px){ - padding-left: @hPad; - padding-right: @hPad; - padding-top: @vPad; - padding-bottom: @vPad; -} -/*set margin*/ -.set_margin(@hMgn: 0px, @vMgn: 0px) { - margin-left: @hMgn; - margin-right: @hMgn; - margin-top: @vMgn; - margin-bottom: @vMgn; -} - -/* ------ Qt Widgets Common Difinitions ------ */ - -QWidget { - color: @m_baseTxtColor; - .baseBG; - &:disabled{ - color: @m_disabledTxtColor; - } -} - -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} - -QDialog -{ - .baseBG; -} - -QMainWindow::separator -{ - background: yellow; - width: 10px; /* when vertical */ - height: 10px; /* when horizontal */ -} - -QToolTip, #helpTooltip -{ - border: 1px solid black; - background-color: rgb(255,255,225); - padding: 2px; - border-radius: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - .base_inset; - alternate-background-color: lighten(@m_baseBG, 5%); - - &::item:selected - { - background-color: @m_selectedBG; - color: black; - } - &::item - { - color: @m_baseTxtColor; - } - -} -QStatusBar { - background-color: rgb(192,192,192); - - &::item { - border-width: 0; - } - & QLabel { - background-color: rgb(192,192,192); - } - & #StatusBarLabel { - background-color: rgb(255,255,255); - .set_padding( 3px, 1px ); - } -} -QMenuBar -{ - .baseBG(5%); - &::item:selected{ - .base_inset(5%); - border-width: 1px; - } -} - -QMenu -{ - .baseBG(5%); - - &::item { - &:selected{ - background: @m_selectedBG; - color: black; - } - &:disabled{ - .baseBG(light, 5%); - color: @m_disabledTxtColor; - } - &:disabled:selected{ - background: rgb(108,118,128); - } - } - - &::separator { - .base_inset(10%); - .set_margin(5px,2px); - border-width: 1px; - height: 0px; - } -} - -QToolBar -{ - .base_outset; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; - - &::separator:horizontal { - image: url("@{image_url}/bottomseparator.png"); - } - &::separator:vertical { - image: url("@{image_url}/separator.png"); - } - - & QToolButton { - .baseBG; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; - &:hover { - border-image: url("@{image_url}/over.png") 2; - } - &:checked, - &:pressed { - border-image: url("@{image_url}/click.png") 2; - } - &:disabled{ - .baseBG(light, 5%); - color: @m_disabledTxtColor; - } - &::menu-indicator - { - image: none; - } - &::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ - } - } - - & QLabel - { - .baseBG; - margin-top: 1px; - border-width: 2; - } - - & QToolBar - { - border-width: 0px; - } -} - -QLineEdit { - /*darken little bit*/ - .base_inset(10%); - border-width: 1px; - border-radius: 2px; - &:disabled { - .base_inset(light, 10%); - color: @m_disabledTxtColor; - } -} -QComboBox { - /*darken little bit*/ - .base_inset(10%); - border-width: 1px; - .set_padding( 3px, 0px ); - - /*arrow button*/ - &::drop-down { - .base_outset; - border-width: 2px; - /*pressed state*/ - &:on { - .base_inset; - } - } - /*arrow button triangle*/ - &::down-arrow { - image: url("@{image_url}/combo_down_arrow.png"); - } - &:disabled { - .base_inset(light, 10%); - color: @m_disabledTxtColor; - } - -} - -QPushButton { - .base_outset; - border-width: 1px; - border-radius: 4px; - .set_padding(15px, 3px); - &:checked { - .base_inset(light, 10%); - } - &:pressed { - .base_inset(light, 10%); - } - /*lighten lilttle bit when hover*/ - &:hover { - .base_outset(light, 10%); - &:pressed { - .base_inset(light, 10%); - } - &:checked { - .base_inset(light, 5%); - } - } - /*lighten lilttle bit when pressed*/ - &:disabled{ - .base_outset(light, 5%); - color: rgb(80,80,80); - } -} - -#PushButton_NoPadding { - .set_padding(3px, 3px); -} - -QCheckBox { - &:hover { - .baseBG(light, 10%); - } - &:disabled { - color: @m_disabledTxtColor; - } - &::indicator { - .base_inset(10%); - border-width: 2px; - &:disabled { - .base_inset(light, 5%); - } - &:checked { - image: url("@{image_url}/check_indicator.png"); - &:disabled { - image: url("@{image_url}/check_indicator_disabled.png"); - } - } - } -} - -QSlider { - &::groove:horizontal { - .base_inset(10%); - border-width: 1px; - height: 1px; - margin: 1px; - } - &::handle:horizontal { - .base_outset(light, 10%); - border-width: 2px; - width: 5px; - margin: -8px 0px; /* expand outside the groove */ - } -} - -QGroupBox { - border: 1px solid @m_baseTxtColor; - margin: 6px 0 0 0; - padding: 5px 3px; - - &::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; - } - &::indicator { - &:extend(QCheckBox::indicator all); - } - &:disabled{ - color: @m_base_darkH; - border-color: @m_disabledTxtColor; - } -} - -QSplitter::handle -{ - background-color: lighten(@m_baseBG, 25); -} - -/* ------ Toonz Classes Difinitions ------ */ - -TPanel { - /*Used for dialog border*/ - background-color: @m_dialog_border_color; -} - -TPanelTitleBar{ - qproperty-BorderPixmap: url("@{image_url}/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("@{image_url}/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("@{image_url}/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("@{image_url}/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: rgb(192,192,192); - qproperty-ActiveTitleColor: rgb(255,255,255); -} - -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer -{ - margin: 0px; - padding: 0px; - & QToolBar - { - border: 1px; - .base_outset(); - & QToolButton - { - margin: 0px; - padding: 1px; - border: 0px; - } - } - & #keyFrameNavigator - { - border: 0px; - } -} -#TabBarContainer{ - qproperty-BottomAboveLineColor: rgb(120, 120, 120); - qproperty-BottomBelowLineColor: rgb(255, 255, 255); - .baseBG(15%); - & #ScrollLeftButton, - & #ScrollRightButton{ - margin-top: 1px; - } -} -#PaletteTabBar, -#FxSettingsTabBar{ - .baseBG(15%); - &::tab { - .set_padding( 7px, 2px ); - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - .base_outset(5%); /* for non selected tab */ - margin-top: 2px; /* for non selected tab */ - border-bottom-color: @m_base_lightV; /* for non selected tab */ - - &:selected { - .base_outset(); - margin-top: 0px; - border-bottom-color: @m_baseBG; /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; - } - - &:first:selected { - margin-left: 0; /* the first selected tab has nothing to overlap with on the left */ - } - - &:last:selected { - margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ - } - - &:only-one { - margin: 0; /* if there is only one tab, we don't want overlapping margins */ - } - } -} - -#PaletteLockButton{ - &:hover{ - border-image: url("@{image_url}/over_yellow.png") 2; - } - &:checked{ - border-image: url("@{image_url}/click_pink.png") 2; - &:hover{ - border-image: url("@{image_url}/over_pressed_yellow.png") 2; - } - } -} - -#PageViewer{ - qproperty-TextColor: @m_baseTxtColor; -} - -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - .baseBG(15%); - &::tab{ - .set_padding( 2px, 1px ); - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - .base_outset(5%); /* for non selected tab */ - border-bottom-color: @m_base_lightV; /* for non selected tab */ - - &:selected { - .base_outset; - border-bottom-color: @m_baseBG; /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; - } - &:first:selected { - margin-left: 0; /* the first selected tab has nothing to overlap with on the left */ - } - &:last:selected { - margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ - } - &:only-one { - margin: 0; /* if there is only one tab, we don't want overlapping margins */ - } - } -} - -#HexagonalColorWheel { - qproperty-BGColor: @m_baseBG; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider { - &::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; - } - &::handle:horizontal { - width: 8px; - margin: -8px -4px; - } -} - -#colorSliderAddButton, -#colorSliderSubButton -{ - border-image: url("@{image_url}/colorslider_button_bg.png")2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} - -#colorSliderAddButton -{ - image: url("@{image_url}/colorslider_add.png"); - &:pressed { - image: url("@{image_url}/colorslider_add_pressed.png"); - } -} - -#colorSliderSubButton -{ - image: url("@{image_url}/colorslider_sub.png"); - &:pressed { - image: url("@{image_url}/colorslider_sub_pressed.png"); - } -} - -#PlainColorPageParts -{ - .base_outset; - border-top-width: 1px; - border-bottom-width: 1px; -} - -#colorSliderLabel, -#colorSliderField -{ - font-size: 14px; -} - - -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: rgb(225,225,225); - - &:hover { - background-color: rgb(245,245,245); - } - &:pressed { - background-color: rgb(215,215,215); - } -} - -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} - -#ScrollLeftButton { - image: url("@{image_url}/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("@{image_url}/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("@{image_url}/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("@{image_url}/down_arrow_black.png"); - border-top: 1px solid black; -} - -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - .baseBG(15%); - - & #ToolBarContainer - { - border-top: 1px solid @m_base_lightV; - margin-top: 1px; - padding-top: 3px; - } -} - -FlipBook #ToolBarContainer -{ - border-top: 1px solid @m_base_lightV; - margin-top: 1px; - padding-top: 3px; -} - -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} - -#ViewerFpsSlider -{ - .baseBG(light, 10%); - .set_margin(19px, 0px); - border: 1px solid black; - height: 21px; - - &::handle { - border-image: url("@{image_url}/handle_border.png")6; - border-width: 6px; - image: none; - min-width: 5px; - } - &::add-line { - image: url("@{image_url}/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; - &:pressed { - image: url("@{image_url}/fpssb_g_rarrow_pressed.png"); - } - } - &::sub-line { - image: url("@{image_url}/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; - &:pressed { - image: url("@{image_url}/fpssb_g_larrow_pressed.png"); - } - } -} - -#FlipConsolePlayToolBar{ - border: none; - & QToolButton { - height: 14px; - } -} - -FlipSlider { - qproperty-PBHeight: 20; - - qproperty-PBOverlay: url("@{image_url}/flipslider.png"); - qproperty-PBMarker: url("@{image_url}/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-baseColor: #626262; - qproperty-notStartedColor: rgb(204,34,34); - qproperty-startedColor: rgb(200,128,128); - qproperty-baseColor: #626262; -} - -Ruler { - qproperty-ParentBGColor: rgb(48,48,48); - qproperty-ScaleColor: rgb(230,230,230); -} - -#ComboViewerToolOptions{ - border: 1px; - .base_outset; -} -#RulerToolOptionValues{ - color: black; -} - -/*-----------File Browser------------*/ -#DirTreeView, #FunctionEditorTree, #ShortcutTree, #FxTreeView -{ - alternate-background-color: lighten(@m_baseBG, 5%); - border-width: 1px; - .base_inset; - margin: 0px; -} -#DirTreeView::branch { - &:adjoins-item { - border-image: url("@{image_url}/tree_branch-end.png") 0; - } - - &:has-siblings { - border-image: url("@{image_url}/tree_vline.png") 0; - &:adjoins-item - { - border-image: url("@{image_url}/tree_branch-more.png") 0; - } - } - &:has-children { - &:closed { - border-image: none; - image: url("@{image_url}/tree_branch-closed_nosib.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree_branch-open_nosib.png"); - } - - &:has-siblings { - &:closed { - border-image: none; - image: url("@{image_url}/tree_branch-closed.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree_branch-open.png"); - } - } - } -} - -DvItemViewerPanel { - qproperty-TextColor: @m_baseTxtColor; - qproperty-AlternateBackground: #3d3d3d; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: rgb(150, 230, 230); - qproperty-SelectedItemBackground: #80a0dc; -} - -DvDirTreeView { - qproperty-TextColor: @m_baseTxtColor; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: rgb(150, 230, 230); - qproperty-SelectedFolderTextColor: rgb(0,30,0); - qproperty-SelectedItemBackground: #80a0dc; - alternate-background-color: lighten(@m_baseBG, 5%); -} - -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid @m_baseTxtColor; -} - -#TitleTxtLabel{ - color: @m_titleTxtColor; -} - -#PsdSettingsGroupBox { - border: 1px solid @m_selectedBG; -} - -#FileDoesNotExistLabel { - color: rgb(255,50,50); -} - -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("@{image_url}/handle_border.png")5; - image: url("@{image_url}/plus.png"); - image-position: center center; - - &:checked { - image: url("@{image_url}/minus.png"); - } -} - -ParamsPage { - qproperty-TextColor: @m_baseTxtColor; -} - -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea -{ - border:0px; -} - -#FunctionSegmentViewer -{ - .base_inset; - border-width: 2px; -} - -#xsheetArea, #ScrollArea -{ - .base_inset(10%); - border-width: 2px; -} - -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: rgb(230,230,120); -} -#xsheetColumnAreaMenu_Lock { - background-color: rgb(245,245,245); -} -#xsheetColumnAreaMenu_Camstand { - background-color: rgb(255,164,128); -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; - &:selected { - background-color: rgb(0,0,128); - } -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; - } - - #XSheetToolbar { - margin: 0; - padding: 0; - border: 0; - &::separator:horizontal { - margin-right: 4; - margin-left: 4; - } - } - -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - - &:vertical { - width: 16px; - .set_margin( 0px, 16px ); - } - &:horizontal { - height: 16px; - .set_margin( 16px, 0px ); - } - - &::handle { - border-width: 3; - image-position: center center; - &:vertical { - border-image: url("@{image_url}/sb_g_vhandle.png")3; - image: url("@{image_url}/sb_g_vline.png"); - min-height: 40px; - } - - &:horizontal { - border-image: url("@{image_url}/sb_g_hhandle.png")3; - image: url("@{image_url}/sb_g_hline.png"); - min-width: 40px; - } - } - /* buttons */ - &::add-line { - subcontrol-origin: margin; - &:vertical { - image: url("@{image_url}/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; - &:pressed { - image: url("@{image_url}/sb_g_downarrow_pressed.png"); - } - } - &:horizontal { - image: url("@{image_url}/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; - &:pressed{ - image: url("@{image_url}/sb_g_rarrow_pressed.png"); - } - } - } - - &::sub-line { - subcontrol-origin: margin; - &:vertical { - image: url("@{image_url}/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; - &:pressed { - image: url("@{image_url}/sb_g_uparrow_pressed.png"); - } - } - &:horizontal { - image: url("@{image_url}/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; - &:pressed{ - image: url("@{image_url}/sb_g_larrow_pressed.png"); - } - } - } - - &::add-page, &::sub-page { - .baseBG(light, 10%); - } -} - -#noteTextEdit{ - color: black; -} - -XsheetViewer { - qproperty-TextColor: rgb(230,230,230); - qproperty-BGColor: rgb(72,72,72); - qproperty-LightLineColor: rgb(32,32,32); - qproperty-MarkerLineColor: rgb(30, 150, 196); - qproperty-VerticalLineColor: rgb(120,120,120); - qproperty-VerticalLineHeadColor: rgb(160,160,160); - qproperty-PreviewFrameTextColor: rgb(150, 230, 230); - qproperty-CurrentRowBgColor: rgb(80,96,130); - - qproperty-EmptyColumnHeadColor: rgb(96,96,96); - qproperty-SelectedColumnTextColor: rgb(230, 100, 100); - - qproperty-EmptyCellColor: rgb(64,64,64); - qproperty-NotEmptyColumnColor: rgb(72,72,72); - qproperty-SelectedEmptyCellColor: rgb(108,108,108); - - qproperty-LevelColumnColor: rgb(76,110,76); - qproperty-LevelColumnBorderColor: rgb(143,179,143); - qproperty-SelectedLevelColumnColor: rgb(107,140,107); - - qproperty-VectorColumnColor: rgb(123,123,76); - qproperty-VectorColumnBorderColor: rgb(187,187,154); - qproperty-SelectedVectorColumnColor: rgb(140,140,96); - - qproperty-ChildColumnColor: rgb(106,82,107); - qproperty-ChildColumnBorderColor: rgb(177,163,179); - qproperty-SelectedChildColumnColor: rgb(122,97,122); - - qproperty-FullcolorColumnColor: rgb(101,122,150); - qproperty-FullcolorColumnBorderColor: rgb(158,184,187); - qproperty-SelectedFullcolorColumnColor: rgb(136,150,167); - - qproperty-FxColumnColor: rgb(86,85,60); - qproperty-FxColumnBorderColor: rgb(149,149,138); - qproperty-SelectedFxColumnColor: rgb(106,109,90); - - qproperty-ReferenceColumnColor: rgb(97,97,97); - qproperty-ReferenceColumnBorderColor: rgb(162,162,162); - qproperty-SelectedReferenceColumnColor: rgb(130,130,130); - - qproperty-PaletteColumnColor: rgb(58,101,95); - qproperty-PaletteColumnBorderColor: rgb(134,172,167); - qproperty-SelectedPaletteColumnColor: rgb(95,133,129); - - qproperty-MeshColumnColor: rgb(104,77,134); - qproperty-MeshColumnBorderColor: rgb(186,146,239); - qproperty-SelectedMeshColumnColor: rgb(138,117,162); - - qproperty-SoundColumnColor: rgb(101,116,86); - qproperty-SoundColumnBorderColor: rgb(160,175,125); - qproperty-SelectedSoundColumnColor: rgb(127,149,106); - qproperty-SoundColumnHlColor: rgb(52,254,94); - qproperty-SoundColumnTrackColor: rgb(182,194,157); - - qproperty-ColumnHeadPastelizer: rgb(0,0,0); - qproperty-SelectedColumnHead: rgb(80,96,130); - - qproperty-LightLightBGColor: rgb(250,250,250); - qproperty-LightBGColor: rgb(240,240,240); - qproperty-DarkBGColor: rgb(225,225,225); - qproperty-DarkLineColor: rgb(150,150,150); -} - -/*------- Schematic ---------*/ -#SchematicBottomFrame -{ - margin: 0px; - padding: 0px; - .base_outset; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer -{ - background-color: rgb(55,55,55); -} - -/*------ Function Editor ---------*/ - -#FunctionParametersPanel -{ - border: 1px solid @m_baseTxtColor; -} -#FunctionEditorTree,#ShortcutTree -{ - &::branch { - &:adjoins-item { - border-image: url("@{image_url}/tree17_branch-end.png") 0; - } - - &:has-siblings { - border-image: url("@{image_url}/tree17_vline.png") 0; - &:adjoins-item { - border-image: url("@{image_url}/tree17_branch-more.png") 0; - } - } - - &:has-children { - &:closed { - border-image: none; - image: url("@{image_url}/tree17_branch-closed_nosib.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree17_branch-open_nosib.png"); - } - - &:has-siblings { - &:closed { - border-image: none; - image: url("@{image_url}/tree17_branch-closed.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree17_branch-open.png"); - } - } - } - } -} - -FunctionPanel { - qproperty-BGColor: rgb(48,48,48); - qproperty-ValueLineColor: rgb(72,72,72); - qproperty-FrameLineColor: rgb(96,96,96); - qproperty-OtherCurvesColor: rgb(128,128,128); - qproperty-RulerBackground: rgb(48,48,48); - qproperty-TextColor: rgb(230,230,230); - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} - -FunctionTreeView { - qproperty-TextColor: rgb(230,230,230); - qproperty-CurrentTextColor: rgb(230, 100, 100); -} - -SpreadsheetViewer { - qproperty-LightLightBGColor: rgb(64,64,64); - qproperty-CurrentRowBgColor: rgb(80,96,130); - qproperty-LightLineColor: rgb(32,32,32); - qproperty-MarkerLineColor: rgb(30, 150, 196); - qproperty-BGColor: rgb(72,72,72); - qproperty-VerticalLineColor: rgb(120,120,120); - qproperty-KeyFrameColor: rgb(153,93,29); - qproperty-KeyFrameBorderColor: rgb(201,176,75); - qproperty-SelectedKeyFrameColor: rgb(151,128,86); - qproperty-InBetweenColor: rgb(102,98,80); - qproperty-InBetweenBorderColor: rgb(205,206,200); - qproperty-SelectedInBetweenColor: rgb(126,128,121); - qproperty-SelectedEmptyColor: rgb(108,108,108); - qproperty-SelectedSceneRangeEmptyColor: rgb(117,117,117); - qproperty-TextColor: rgb(230,230,230); - qproperty-ColumnHeaderBorderColor: rgb(142,142,142); - qproperty-SelectedColumnTextColor: rgb(230, 100, 100); -} -#keyFrameNavigator { - background: none; // Fixes BG overflow - margin: 0; - padding: 0; - border: 0; - & QToolButton { - min-width: 18px; - } - #PreviousKey{ - image: url('@{image_url}/prevkey.png'); - &:disabled{ - image: url('@{image_url}/prevkey_disabled.png'); - } - } - #NextKey{ - image: url('@{image_url}/nextkey.png'); - &:disabled{ - image: url('@{image_url}/nextkey_disabled.png'); - } - } -} - -#ExpressionField -{ - .base_inset(light, 50%); - border-width: 2px; - border-radius: 2px; - margin: 0px; -} - -#FunctionSegmentViewerLinkButton -{ - border: 2px; - margin: 0px; - background-image: url("@{image_url}/segment_unlinked.png"); - .base_outset(light,20%); - &:checked { - background-image: url("@{image_url}/segment_linked.png"); - .base_inset(light,20%); - } - &:disabled{ - background-image: url("@{image_url}/segment_disabled.png"); - .base_outset(light,10%); - border: 1px; - } -} - -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - .base_inset(10%); - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel -{ - color: @m_titleTxtColor; -} - -/*------ Cleanup Settings------*/ - -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} - -#CameraSettingsButton -{ - padding: 2px; - border: 0px; -} - -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; - &:checked { - image: url("@{image_url}/cam_lock.png"); - } - &:unchecked { - image: url("@{image_url}/cam_unlock.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover.png"); - } - } -} - -#CameraSettingsDPI{ - color: @m_titleTxtColor; -} - -#CameraSettingsRadioButton_Small { - padding: 2px; - &::indicator { - width: 11px; - height: 21px; - &:checked { - image: url("@{image_url}/cam_lock_small.png"); - } - &:unchecked { - image: url("@{image_url}/cam_unlock_small.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover_small.png"); - } - } - } -} - -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("@{image_url}/fsp_released.png"); - - &:hover { - image: url("@{image_url}/fsp_hover.png"); - } - &:checked { - image: url("@{image_url}/fsp_pressed.png"); - } -} - -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; /*space between button and text*/ - &::indicator { - border-width: 0px; - width: 21px; - height: 21px; - &:unchecked { - image: url("@{image_url}/cam_unlock.png"); - &:hover { - image: url("@{image_url}/cam_unlock_hover.png"); - } - } - &:checked { - image: url("@{image_url}/cam_lock.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover.png"); - } - } - } -} - -IconViewField { - qproperty-ScalePegPixmap: url("@{image_url}/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("@{image_url}/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("@{image_url}/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("@{image_url}/selectiontool_thickness.png"); -} - -PopupButton { - &::menu-indicator { - image: url("@{image_url}/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; - } - &::menu-indicator:disabled { - image: url("@{image_url}/down_arrow_disabled.png"); - } -} - -#Cap,#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; max-width: 32px; - & QMenu { - min-width: 18px; max-width: 18px; - &::item { - min-width: 16px; max-width: 16px; - padding: 0px; - } - } -} - -/*------ Script Console ------*/ - -#ScriptConsole { - border: 1px inset; - background-color: rgb(220,220,220); - color: black; - font-family: "Courier"; -} - -/*------ Topbar and Menubar of the MainWindow ------*/ - -#TopBar { - height: 22px; - .baseBG(5%); - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - .baseBG; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("@{image_url}/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; - &::tab { - .set_margin(5px, 1px); - .set_padding(8px, 1px); - .baseBG( light, 5% ); - border: 1px solid white; - &:selected { - background-color: rgb(90,140,120); - } - &:hover { - background-color: rgb(120,120,90); - } - } -} -#StackedMenuBar -{ - background: rgb(160,160,160); - margin: 0px; - border: 0px; - padding: 0px; -} - -#DockSeparator{ - .base_outset(light, 10%); - //border-image: url("@{image_url}/dock_handle_border.png") 2; - border-width: 1; -} - -#TDockPlaceholder { - background-color: rgb(185,240,0,255); -} - -/*------ Popups -------*/ - -QDialog #dialogButtonFrame { - .baseBG(10%); -} - -#SceneSettings QLabel -{ - color: @m_titleTxtColor; -} -#PreferencesPopup QListWidget -{ - .base_inset; - border-width: 2px; - alternate-background-color: lighten(@m_baseBG, 5%); - font-size: 14px; - &::item{ - padding: 3px; - &:selected{ - background-color: @m_selectedBG; - color : black; - } - &:hover{ - background-color: lighten(@m_baseBG, 10%); - } - } -} -#OutputSettingsBox { - border:1px solid @m_selectedBG; -} - -#OutputSettingsLabel { - color: @m_titleTxtColor; -} - -#OutputSettingsCameraBox { - .base_inset; - border-width: 2px; -} - -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("@{image_url}/handle_border.png")5; - image: url("@{image_url}/plus.png"); - image-position: center center; - - &:checked - { - image: url("@{image_url}/minus.png"); - } -} - -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: rgb(155,155,155); - qproperty-LightLineEdgeColor: @m_baseBG; - qproperty-DarkLineColor: rgb(47,47,47); - qproperty-MiddleLineColor: rgb(0,0,0); - qproperty-HandleLeftPixmap: url("@{image_url}/h_slider_left.png"); - qproperty-HandleRightPixmap: url("@{image_url}/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("@{image_url}/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("@{image_url}/h_slider_right_disabled.png"); -} - -#FxSettingsLabel{ - color: rgb(160,230,128); -} - -#FxSettings{ - border-width: 0px; - border-bottom: 3px double rgb(64,64,64); -} - -#FxSettingsHelpButton{ - color: rgb(160,200,255); -} - -#MatchLineButton { - .baseBG(light, 10%); - &::pressed - { - .baseBG(light, 30%); - } -} - -#LargeSizedText { - font-size: 17px; -} - -#GearButton { - qproperty-icon: url("@{image_url}/gear.png"); -} - -#SubfolderButton { - qproperty-icon: url("@{image_url}/subfolder.png"); -} - -#StartupLabel { - padding: 3px; - &:hover { - .baseBG(light, 10%); - } -} - -#WordButton { - font-size: 12px; - color: black; - background-color: rgb(192, 192, 192); - border-style: outset; - .set_border_color(white,black); - border-width: 1px; - border-radius: 1px; - .set_padding(3px, 3px); - &:pressed { - background-color: rgb(250, 255, 162); - border-style: inset; - .set_border_color(black,white); - } - &:hover { - background-color: rgb(250, 255, 162); - &:pressed { - background-color: rgb(250, 255, 162); - border-style: inset; - .set_border_color(black,white); - } - } -} \ No newline at end of file diff --git a/stuff/config/qss/gray_048/gray_048.qss b/stuff/config/qss/gray_048/gray_048.qss deleted file mode 100644 index 156340c..0000000 --- a/stuff/config/qss/gray_048/gray_048.qss +++ /dev/null @@ -1,1460 +0,0 @@ -/* LESS Definitions */ -/*Image URL*/ -/*Text Color*/ -/*Used in Dialog border*/ -/*Color for Selected Item*/ -/*Color for title texts*/ -/* color adjustable by delta */ -/*set padding*/ -/*set margin*/ -/* ------ Qt Widgets Common Difinitions ------ */ -QWidget { - color: #e6e6e6; - background-color: #303030; -} -QWidget:disabled { - color: #808080; -} -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog { - background-color: #303030; -} -QMainWindow::separator { - background: yellow; - width: 10px; - /* when vertical */ - height: 10px; - /* when horizontal */ -} -QToolTip, -#helpTooltip { - border: 1px solid black; - background-color: #ffffe1; - padding: 2px; - border-radius: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - alternate-background-color: #3d3d3d; -} -QTreeWidget::item:selected { - background-color: #80a0dc; - color: black; -} -QTreeWidget::item { - color: #e6e6e6; -} -QStatusBar { - background-color: #c0c0c0; -} -QStatusBar::item { - border-width: 0; -} -QStatusBar QLabel { - background-color: #c0c0c0; -} -QStatusBar #StatusBarLabel { - background-color: #ffffff; - padding-left: 3px; - padding-right: 3px; - padding-top: 1px; - padding-bottom: 1px; -} -QMenuBar { - background-color: #232323; -} -QMenuBar::item:selected { - background-color: #232323; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #4b4b4b; - border-bottom-color: #5f5f5f; - border-width: 1px; -} -QMenu { - background-color: #232323; -} -QMenu::item:selected { - background: #80a0dc; - color: black; -} -QMenu::item:disabled { - background-color: #3d3d3d; - color: #808080; -} -QMenu::item:disabled:selected { - background: #6c7680; -} -QMenu::separator { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - margin-left: 5px; - margin-right: 5px; - margin-top: 2px; - margin-bottom: 2px; - border-width: 1px; - height: 0px; -} -QToolBar { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; -} -QToolBar::separator:horizontal { - image: url("../gray_072/imgs/bottomseparator.png"); -} -QToolBar::separator:vertical { - image: url("../gray_072/imgs/separator.png"); -} -QToolBar QToolButton { - background-color: #303030; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; -} -QToolBar QToolButton:hover { - border-image: url("../gray_072/imgs/over.png") 2; -} -QToolBar QToolButton:checked, -QToolBar QToolButton:pressed { - border-image: url("../gray_072/imgs/click.png") 2; -} -QToolBar QToolButton:disabled { - background-color: #3d3d3d; - color: #808080; -} -QToolBar QToolButton::menu-indicator { - image: none; -} -QToolBar QToolButton::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ -} -QToolBar QLabel { - background-color: #303030; - margin-top: 1px; - border-width: 2; -} -QToolBar QToolBar { - border-width: 0px; -} -QLineEdit { - /*darken little bit*/ - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - border-radius: 2px; -} -QLineEdit:disabled { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; - color: #808080; -} -QComboBox { - /*darken little bit*/ - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 0px; - padding-bottom: 0px; - /*arrow button*/ - /*arrow button triangle*/ -} -QComboBox::drop-down { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-width: 2px; - /*pressed state*/ -} -QComboBox::drop-down:on { - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; -} -QComboBox::down-arrow { - image: url("../gray_072/imgs/combo_down_arrow.png"); -} -QComboBox:disabled { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; - color: #808080; -} -QPushButton { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-width: 1px; - border-radius: 4px; - padding-left: 15px; - padding-right: 15px; - padding-top: 3px; - padding-bottom: 3px; - /*lighten lilttle bit when hover*/ - /*lighten lilttle bit when pressed*/ -} -QPushButton:checked { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; -} -QPushButton:pressed { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; -} -QPushButton:hover { - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; -} -QPushButton:hover:pressed { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; -} -QPushButton:hover:checked { - background-color: #3d3d3d; - border-style: inset; - border-left-color: #191919; - border-top-color: #0d0d0d; - border-right-color: #656565; - border-bottom-color: #797979; -} -QPushButton:disabled { - background-color: #3d3d3d; - border-style: outset; - border-left-color: #656565; - border-top-color: #797979; - border-right-color: #191919; - border-bottom-color: #0d0d0d; - color: #505050; -} -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -QCheckBox:hover { - background-color: #4a4a4a; -} -QCheckBox:disabled { - color: #808080; -} -QCheckBox::indicator, -QGroupBox::indicator { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 2px; -} -QCheckBox::indicator:disabled, -QGroupBox::indicator:disabled { - background-color: #3d3d3d; - border-style: inset; - border-left-color: #191919; - border-top-color: #0d0d0d; - border-right-color: #656565; - border-bottom-color: #797979; -} -QCheckBox::indicator:checked, -QGroupBox::indicator:checked { - image: url("../gray_072/imgs/check_indicator.png"); -} -QCheckBox::indicator:checked:disabled, -QGroupBox::indicator:checked:disabled { - image: url("../gray_072/imgs/check_indicator_disabled.png"); -} -QSlider::groove:horizontal { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - height: 1px; - margin: 1px; -} -QSlider::handle:horizontal { - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; - border-width: 2px; - width: 5px; - margin: -8px 0px; - /* expand outside the groove */ -} -QGroupBox { - border: 1px solid #e6e6e6; - margin: 6px 0 0 0; - padding: 5px 3px; -} -QGroupBox::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; -} -QGroupBox:disabled { - color: #0c0c0c; - border-color: #808080; -} -QSplitter::handle { - background-color: #707070; -} -/* ------ Toonz Classes Difinitions ------ */ -TPanel { - /*Used for dialog border*/ - background-color: #000000; -} -TPanelTitleBar { - qproperty-BorderPixmap: url("../gray_072/imgs/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("../gray_072/imgs/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("../gray_072/imgs/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("../gray_072/imgs/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: #c0c0c0; - qproperty-ActiveTitleColor: #ffffff; -} -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer { - margin: 0px; - padding: 0px; -} -PaletteViewer #ToolBarContainer QToolBar { - border: 1px; - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; -} -PaletteViewer #ToolBarContainer QToolBar QToolButton { - margin: 0px; - padding: 1px; - border: 0px; -} -PaletteViewer #ToolBarContainer #keyFrameNavigator { - border: 0px; -} -#TabBarContainer { - qproperty-BottomAboveLineColor: #787878; - qproperty-BottomBelowLineColor: #ffffff; - background-color: #0a0a0a; -} -#TabBarContainer #ScrollLeftButton, -#TabBarContainer #ScrollRightButton { - margin-top: 1px; -} -#PaletteTabBar, -#FxSettingsTabBar { - background-color: #0a0a0a; -} -#PaletteTabBar::tab, -#FxSettingsTabBar::tab { - padding-left: 7px; - padding-right: 7px; - padding-top: 2px; - padding-bottom: 2px; - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - background-color: #232323; - border-style: outset; - border-left-color: #4b4b4b; - border-top-color: #5f5f5f; - border-right-color: #000000; - border-bottom-color: #000000; - /* for non selected tab */ - margin-top: 2px; - /* for non selected tab */ - border-bottom-color: #6c6c6c; - /* for non selected tab */ -} -#PaletteTabBar::tab:selected, -#FxSettingsTabBar::tab:selected { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - margin-top: 0px; - border-bottom-color: #303030; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; -} -#PaletteTabBar::tab:first:selected, -#FxSettingsTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#PaletteTabBar::tab:last:selected, -#FxSettingsTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#PaletteTabBar::tab:only-one, -#FxSettingsTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#PaletteLockButton:hover { - border-image: url("../gray_072/imgs/over_yellow.png") 2; -} -#PaletteLockButton:checked { - border-image: url("../gray_072/imgs/click_pink.png") 2; -} -#PaletteLockButton:checked:hover { - border-image: url("../gray_072/imgs/over_pressed_yellow.png") 2; -} -#PageViewer { - qproperty-TextColor: #e6e6e6; -} -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - background-color: #0a0a0a; -} -#StyleEditorTabBar::tab { - padding-left: 2px; - padding-right: 2px; - padding-top: 1px; - padding-bottom: 1px; - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - background-color: #232323; - border-style: outset; - border-left-color: #4b4b4b; - border-top-color: #5f5f5f; - border-right-color: #000000; - border-bottom-color: #000000; - /* for non selected tab */ - border-bottom-color: #6c6c6c; - /* for non selected tab */ -} -#StyleEditorTabBar::tab:selected { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-bottom-color: #303030; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; -} -#StyleEditorTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#StyleEditorTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#StyleEditorTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#HexagonalColorWheel { - qproperty-BGColor: #303030; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; -} -#colorSlider::handle:horizontal { - width: 8px; - margin: -8px -4px; -} -#colorSliderAddButton, -#colorSliderSubButton { - border-image: url("../gray_072/imgs/colorslider_button_bg.png") 2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} -#colorSliderAddButton { - image: url("../gray_072/imgs/colorslider_add.png"); -} -#colorSliderAddButton:pressed { - image: url("../gray_072/imgs/colorslider_add_pressed.png"); -} -#colorSliderSubButton { - image: url("../gray_072/imgs/colorslider_sub.png"); -} -#colorSliderSubButton:pressed { - image: url("../gray_072/imgs/colorslider_sub_pressed.png"); -} -#PlainColorPageParts { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-top-width: 1px; - border-bottom-width: 1px; -} -#colorSliderLabel, -#colorSliderField { - font-size: 14px; -} -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: #e1e1e1; -} -DvScrollWidget > QPushButton:hover { - background-color: #f5f5f5; -} -DvScrollWidget > QPushButton:pressed { - background-color: #d7d7d7; -} -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} -#ScrollLeftButton { - image: url("../gray_072/imgs/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("../gray_072/imgs/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("../gray_072/imgs/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("../gray_072/imgs/down_arrow_black.png"); - border-top: 1px solid black; -} -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - background-color: #0a0a0a; -} -#ViewerPanel #ToolBarContainer { - border-top: 1px solid #6c6c6c; - margin-top: 1px; - padding-top: 3px; -} -FlipBook #ToolBarContainer { - border-top: 1px solid #6c6c6c; - margin-top: 1px; - padding-top: 3px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} -#ViewerFpsSlider { - background-color: #4a4a4a; - margin-left: 19px; - margin-right: 19px; - margin-top: 0px; - margin-bottom: 0px; - border: 1px solid black; - height: 21px; -} -#ViewerFpsSlider::handle { - border-image: url("../gray_072/imgs/handle_border.png") 6; - border-width: 6px; - image: none; - min-width: 5px; -} -#ViewerFpsSlider::add-line { - image: url("../gray_072/imgs/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::add-line:pressed { - image: url("../gray_072/imgs/fpssb_g_rarrow_pressed.png"); -} -#ViewerFpsSlider::sub-line { - image: url("../gray_072/imgs/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::sub-line:pressed { - image: url("../gray_072/imgs/fpssb_g_larrow_pressed.png"); -} -#FlipConsolePlayToolBar { - border: none; -} -#FlipConsolePlayToolBar QToolButton { - height: 14px; -} -FlipSlider { - qproperty-PBHeight: 20; - qproperty-PBOverlay: url("../gray_072/imgs/flipslider.png"); - qproperty-PBMarker: url("../gray_072/imgs/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-notStartedColor: #cc2222; - qproperty-startedColor: #c88080; - qproperty-baseColor: #626262; -} -Ruler { - qproperty-ParentBGColor: #303030; - qproperty-ScaleColor: #e6e6e6; -} -#ComboViewerToolOptions { - border: 1px; - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; -} -#RulerToolOptionValues { - color: black; -} -/*-----------File Browser------------*/ -#DirTreeView, -#FunctionEditorTree, -#ShortcutTree, -#FxTreeView { - alternate-background-color: #3d3d3d; - border-width: 1px; - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - margin: 0px; -} -#DirTreeView::branch:adjoins-item { - border-image: url("../gray_072/imgs/tree_branch-end.png") 0; -} -#DirTreeView::branch:has-siblings { - border-image: url("../gray_072/imgs/tree_vline.png") 0; -} -#DirTreeView::branch:has-siblings:adjoins-item { - border-image: url("../gray_072/imgs/tree_branch-more.png") 0; -} -#DirTreeView::branch:has-children:closed { - border-image: none; - image: url("../gray_072/imgs/tree_branch-closed_nosib.png"); -} -#DirTreeView::branch:has-children:open { - border-image: none; - image: url("../gray_072/imgs/tree_branch-open_nosib.png"); -} -#DirTreeView::branch:has-children:has-siblings:closed { - border-image: none; - image: url("../gray_072/imgs/tree_branch-closed.png"); -} -#DirTreeView::branch:has-children:has-siblings:open { - border-image: none; - image: url("../gray_072/imgs/tree_branch-open.png"); -} -DvItemViewerPanel { - qproperty-TextColor: #e6e6e6; - qproperty-AlternateBackground: #3d3d3d; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #96e6e6; - qproperty-SelectedItemBackground: #80a0dc; -} -DvDirTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #96e6e6; - qproperty-SelectedFolderTextColor: #001e00; - qproperty-SelectedItemBackground: #80a0dc; - alternate-background-color: #3d3d3d; -} -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid #e6e6e6; -} -#TitleTxtLabel { - color: #a8bee7; -} -#PsdSettingsGroupBox { - border: 1px solid #80a0dc; -} -#FileDoesNotExistLabel { - color: #ff3232; -} -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("../gray_072/imgs/handle_border.png") 5; - image: url("../gray_072/imgs/plus.png"); - image-position: center center; -} -#CleanupSettingsShowButton:checked, -#LoadLevelShowButton:checked, -#FxSettingsPreviewShowButton:checked { - image: url("../gray_072/imgs/minus.png"); -} -ParamsPage { - qproperty-TextColor: #e6e6e6; -} -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea { - border: 0px; -} -#FunctionSegmentViewer { - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - border-width: 2px; -} -#xsheetArea, -#ScrollArea { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 2px; -} -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: #e6e678; -} -#xsheetColumnAreaMenu_Lock { - background-color: #f5f5f5; -} -#xsheetColumnAreaMenu_Camstand { - background-color: #ffa480; -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; -} -#xsheetColumnAreaMenu_Preview:selected, -#xsheetColumnAreaMenu_Lock:selected, -#xsheetColumnAreaMenu_Camstand:selected { - background-color: #000080; -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; -} -#XSheetToolbar { - margin: 0; - padding: 0; - border: 0; -} -#XSheetToolbar::separator:horizontal { - margin-right: 4; - margin-left: 4; -} -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - /* buttons */ -} -QScrollBar:vertical { - width: 16px; - margin-left: 0px; - margin-right: 0px; - margin-top: 16px; - margin-bottom: 16px; -} -QScrollBar:horizontal { - height: 16px; - margin-left: 16px; - margin-right: 16px; - margin-top: 0px; - margin-bottom: 0px; -} -QScrollBar::handle { - border-width: 3; - image-position: center center; -} -QScrollBar::handle:vertical { - border-image: url("../gray_072/imgs/sb_g_vhandle.png") 3; - image: url("../gray_072/imgs/sb_g_vline.png"); - min-height: 40px; -} -QScrollBar::handle:horizontal { - border-image: url("../gray_072/imgs/sb_g_hhandle.png") 3; - image: url("../gray_072/imgs/sb_g_hline.png"); - min-width: 40px; -} -QScrollBar::add-line { - subcontrol-origin: margin; -} -QScrollBar::add-line:vertical { - image: url("../gray_072/imgs/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; -} -QScrollBar::add-line:vertical:pressed { - image: url("../gray_072/imgs/sb_g_downarrow_pressed.png"); -} -QScrollBar::add-line:horizontal { - image: url("../gray_072/imgs/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; -} -QScrollBar::add-line:horizontal:pressed { - image: url("../gray_072/imgs/sb_g_rarrow_pressed.png"); -} -QScrollBar::sub-line { - subcontrol-origin: margin; -} -QScrollBar::sub-line:vertical { - image: url("../gray_072/imgs/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; -} -QScrollBar::sub-line:vertical:pressed { - image: url("../gray_072/imgs/sb_g_uparrow_pressed.png"); -} -QScrollBar::sub-line:horizontal { - image: url("../gray_072/imgs/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; -} -QScrollBar::sub-line:horizontal:pressed { - image: url("../gray_072/imgs/sb_g_larrow_pressed.png"); -} -QScrollBar::add-page, -QScrollBar::sub-page { - background-color: #4a4a4a; -} -#noteTextEdit { - color: black; -} -XsheetViewer { - qproperty-TextColor: #e6e6e6; - qproperty-BGColor: #484848; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-VerticalLineColor: #787878; - qproperty-VerticalLineHeadColor: #a0a0a0; - qproperty-PreviewFrameTextColor: #96e6e6; - qproperty-CurrentRowBgColor: #506082; - qproperty-EmptyColumnHeadColor: #606060; - qproperty-SelectedColumnTextColor: #e66464; - qproperty-EmptyCellColor: #404040; - qproperty-NotEmptyColumnColor: #484848; - qproperty-SelectedEmptyCellColor: #6c6c6c; - qproperty-LevelColumnColor: #4c6e4c; - qproperty-LevelColumnBorderColor: #8fb38f; - qproperty-SelectedLevelColumnColor: #6b8c6b; - qproperty-VectorColumnColor: #7b7b4c; - qproperty-VectorColumnBorderColor: #bbbb9a; - qproperty-SelectedVectorColumnColor: #8c8c60; - qproperty-ChildColumnColor: #6a526b; - qproperty-ChildColumnBorderColor: #b1a3b3; - qproperty-SelectedChildColumnColor: #7a617a; - qproperty-FullcolorColumnColor: #657a96; - qproperty-FullcolorColumnBorderColor: #9eb8bb; - qproperty-SelectedFullcolorColumnColor: #8896a7; - qproperty-FxColumnColor: #56553c; - qproperty-FxColumnBorderColor: #95958a; - qproperty-SelectedFxColumnColor: #6a6d5a; - qproperty-ReferenceColumnColor: #616161; - qproperty-ReferenceColumnBorderColor: #a2a2a2; - qproperty-SelectedReferenceColumnColor: #828282; - qproperty-PaletteColumnColor: #3a655f; - qproperty-PaletteColumnBorderColor: #86aca7; - qproperty-SelectedPaletteColumnColor: #5f8581; - qproperty-MeshColumnColor: #684d86; - qproperty-MeshColumnBorderColor: #ba92ef; - qproperty-SelectedMeshColumnColor: #8a75a2; - qproperty-SoundColumnColor: #657456; - qproperty-SoundColumnBorderColor: #a0af7d; - qproperty-SelectedSoundColumnColor: #7f956a; - qproperty-SoundColumnHlColor: #34fe5e; - qproperty-SoundColumnTrackColor: #b6c29d; - qproperty-ColumnHeadPastelizer: #000000; - qproperty-SelectedColumnHead: #506082; - qproperty-LightLightBGColor: #fafafa; - qproperty-LightBGColor: #f0f0f0; - qproperty-DarkBGColor: #e1e1e1; - qproperty-DarkLineColor: #969696; -} -/*------- Schematic ---------*/ -#SchematicBottomFrame { - margin: 0px; - padding: 0px; - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer { - background-color: #373737; -} -/*------ Function Editor ---------*/ -#FunctionParametersPanel { - border: 1px solid #e6e6e6; -} -#FunctionEditorTree::branch:adjoins-item, -#ShortcutTree::branch:adjoins-item { - border-image: url("../gray_072/imgs/tree17_branch-end.png") 0; -} -#FunctionEditorTree::branch:has-siblings, -#ShortcutTree::branch:has-siblings { - border-image: url("../gray_072/imgs/tree17_vline.png") 0; -} -#FunctionEditorTree::branch:has-siblings:adjoins-item, -#ShortcutTree::branch:has-siblings:adjoins-item { - border-image: url("../gray_072/imgs/tree17_branch-more.png") 0; -} -#FunctionEditorTree::branch:has-children:closed, -#ShortcutTree::branch:has-children:closed { - border-image: none; - image: url("../gray_072/imgs/tree17_branch-closed_nosib.png"); -} -#FunctionEditorTree::branch:has-children:open, -#ShortcutTree::branch:has-children:open { - border-image: none; - image: url("../gray_072/imgs/tree17_branch-open_nosib.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:closed, -#ShortcutTree::branch:has-children:has-siblings:closed { - border-image: none; - image: url("../gray_072/imgs/tree17_branch-closed.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:open, -#ShortcutTree::branch:has-children:has-siblings:open { - border-image: none; - image: url("../gray_072/imgs/tree17_branch-open.png"); -} -FunctionPanel { - qproperty-BGColor: #303030; - qproperty-ValueLineColor: #484848; - qproperty-FrameLineColor: #606060; - qproperty-OtherCurvesColor: #808080; - qproperty-RulerBackground: #303030; - qproperty-TextColor: #e6e6e6; - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} -FunctionTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-CurrentTextColor: #e66464; -} -SpreadsheetViewer { - qproperty-LightLightBGColor: #404040; - qproperty-CurrentRowBgColor: #506082; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-BGColor: #484848; - qproperty-VerticalLineColor: #787878; - qproperty-KeyFrameColor: #995d1d; - qproperty-KeyFrameBorderColor: #c9b04b; - qproperty-SelectedKeyFrameColor: #978056; - qproperty-InBetweenColor: #666250; - qproperty-InBetweenBorderColor: #cdcec8; - qproperty-SelectedInBetweenColor: #7e8079; - qproperty-SelectedEmptyColor: #6c6c6c; - qproperty-SelectedSceneRangeEmptyColor: #757575; - qproperty-TextColor: #e6e6e6; - qproperty-ColumnHeaderBorderColor: #8e8e8e; - qproperty-SelectedColumnTextColor: #e66464; -} -#keyFrameNavigator { - background: none; - margin: 0; - padding: 0; - border: 0; -} -#keyFrameNavigator QToolButton { - min-width: 18px; -} -#keyFrameNavigator #PreviousKey { - image: url('../gray_072/imgs/prevkey.png'); -} -#keyFrameNavigator #PreviousKey:disabled { - image: url('../gray_072/imgs/prevkey_disabled.png'); -} -#keyFrameNavigator #NextKey { - image: url('../gray_072/imgs/nextkey.png'); -} -#keyFrameNavigator #NextKey:disabled { - image: url('../gray_072/imgs/nextkey_disabled.png'); -} -#ExpressionField { - background-color: #b0b0b0; - border-style: inset; - border-left-color: #8c8c8c; - border-top-color: #808080; - border-right-color: #d8d8d8; - border-bottom-color: #ececec; - border-width: 2px; - border-radius: 2px; - margin: 0px; -} -#FunctionSegmentViewerLinkButton { - border: 2px; - margin: 0px; - background-image: url("../gray_072/imgs/segment_unlinked.png"); - background-color: #636363; - border-style: outset; - border-left-color: #8b8b8b; - border-top-color: #9f9f9f; - border-right-color: #3f3f3f; - border-bottom-color: #333333; -} -#FunctionSegmentViewerLinkButton:checked { - background-image: url("../gray_072/imgs/segment_linked.png"); - background-color: #636363; - border-style: inset; - border-left-color: #3f3f3f; - border-top-color: #333333; - border-right-color: #8b8b8b; - border-bottom-color: #9f9f9f; -} -#FunctionSegmentViewerLinkButton:disabled { - background-image: url("../gray_072/imgs/segment_disabled.png"); - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; - border: 1px; -} -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel { - color: #a8bee7; -} -/*------ Cleanup Settings------*/ -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#CameraSettingsButton { - padding: 2px; - border: 0px; -} -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; -} -#CameraSettingsRadioButton::indicator:checked { - image: url("../gray_072/imgs/cam_lock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked { - image: url("../gray_072/imgs/cam_unlock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked:hover { - image: url("../gray_072/imgs/cam_lock_hover.png"); -} -#CameraSettingsDPI { - color: #a8bee7; -} -#CameraSettingsRadioButton_Small { - padding: 2px; -} -#CameraSettingsRadioButton_Small::indicator { - width: 11px; - height: 21px; -} -#CameraSettingsRadioButton_Small::indicator:checked { - image: url("../gray_072/imgs/cam_lock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked { - image: url("../gray_072/imgs/cam_unlock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked:hover { - image: url("../gray_072/imgs/cam_lock_hover_small.png"); -} -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("../gray_072/imgs/fsp_released.png"); -} -#ForceSquaredPixelButton:hover { - image: url("../gray_072/imgs/fsp_hover.png"); -} -#ForceSquaredPixelButton:checked { - image: url("../gray_072/imgs/fsp_pressed.png"); -} -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; - /*space between button and text*/ -} -#EditToolLockButton::indicator { - border-width: 0px; - width: 21px; - height: 21px; -} -#EditToolLockButton::indicator:unchecked { - image: url("../gray_072/imgs/cam_unlock.png"); -} -#EditToolLockButton::indicator:unchecked:hover { - image: url("../gray_072/imgs/cam_unlock_hover.png"); -} -#EditToolLockButton::indicator:checked { - image: url("../gray_072/imgs/cam_lock.png"); -} -#EditToolLockButton::indicator:checked:hover { - image: url("../gray_072/imgs/cam_lock_hover.png"); -} -IconViewField { - qproperty-ScalePegPixmap: url("../gray_072/imgs/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("../gray_072/imgs/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("../gray_072/imgs/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("../gray_072/imgs/selectiontool_thickness.png"); -} -PopupButton::menu-indicator { - image: url("../gray_072/imgs/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; -} -PopupButton::menu-indicator:disabled { - image: url("../gray_072/imgs/down_arrow_disabled.png"); -} -#Cap, -#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; - max-width: 32px; -} -#Cap QMenu, -#Join QMenu { - min-width: 18px; - max-width: 18px; -} -#Cap QMenu::item, -#Join QMenu::item { - min-width: 16px; - max-width: 16px; - padding: 0px; -} -/*------ Script Console ------*/ -#ScriptConsole { - border: 1px inset; - background-color: #dcdcdc; - color: black; - font-family: "Courier"; -} -/*------ Topbar and Menubar of the MainWindow ------*/ -#TopBar { - height: 22px; - background-color: #232323; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background-color: #303030; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("../gray_072/imgs/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; -} -#TopBarTab::tab { - margin-left: 5px; - margin-right: 5px; - margin-top: 1px; - margin-bottom: 1px; - padding-left: 8px; - padding-right: 8px; - padding-top: 1px; - padding-bottom: 1px; - background-color: #3d3d3d; - border: 1px solid white; -} -#TopBarTab::tab:selected { - background-color: #5a8c78; -} -#TopBarTab::tab:hover { - background-color: #78785a; -} -#StackedMenuBar { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#DockSeparator { - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; - border-width: 1; -} -#TDockPlaceholder { - background-color: #b9f000; -} -/*------ Popups -------*/ -QDialog #dialogButtonFrame { - background-color: #161616; -} -#SceneSettings QLabel { - color: #a8bee7; -} -#PreferencesPopup QListWidget { - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - border-width: 2px; - alternate-background-color: #3d3d3d; - font-size: 14px; -} -#PreferencesPopup QListWidget::item { - padding: 3px; -} -#PreferencesPopup QListWidget::item:selected { - background-color: #80a0dc; - color: black; -} -#PreferencesPopup QListWidget::item:hover { - background-color: #4a4a4a; -} -#OutputSettingsBox { - border: 1px solid #80a0dc; -} -#OutputSettingsLabel { - color: #a8bee7; -} -#OutputSettingsCameraBox { - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - border-width: 2px; -} -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("../gray_072/imgs/handle_border.png") 5; - image: url("../gray_072/imgs/plus.png"); - image-position: center center; -} -#OutputSettingsShowButton:checked { - image: url("../gray_072/imgs/minus.png"); -} -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: #9b9b9b; - qproperty-LightLineEdgeColor: #303030; - qproperty-DarkLineColor: #2f2f2f; - qproperty-MiddleLineColor: #000000; - qproperty-HandleLeftPixmap: url("../gray_072/imgs/h_slider_left.png"); - qproperty-HandleRightPixmap: url("../gray_072/imgs/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("../gray_072/imgs/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("../gray_072/imgs/h_slider_right_disabled.png"); -} -#FxSettingsLabel { - color: #a0e680; -} -#FxSettings { - border-width: 0px; - border-bottom: 3px double #404040; -} -#FxSettingsHelpButton { - color: #a0c8ff; -} -#MatchLineButton { - background-color: #4a4a4a; -} -#MatchLineButton::pressed { - background-color: #7d7d7d; -} -#LargeSizedText { - font-size: 17px; -} -#GearButton { - qproperty-icon: url("../gray_072/imgs/gear.png"); -} -#SubfolderButton { - qproperty-icon: url("../gray_072/imgs/subfolder.png"); -} -#StartupLabel { - padding: 3px; -} -#StartupLabel:hover { - background-color: #4a4a4a; -} -#WordButton { - font-size: 12px; - color: black; - background-color: #c0c0c0; - border-style: outset; - border-left-color: white; - border-top-color: white; - border-right-color: black; - border-bottom-color: black; - border-width: 1px; - border-radius: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#WordButton:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -#WordButton:hover { - background-color: #faffa2; -} -#WordButton:hover:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} diff --git a/stuff/config/qss/gray_048/gray_048_mac.qss b/stuff/config/qss/gray_048/gray_048_mac.qss deleted file mode 100644 index 156340c..0000000 --- a/stuff/config/qss/gray_048/gray_048_mac.qss +++ /dev/null @@ -1,1460 +0,0 @@ -/* LESS Definitions */ -/*Image URL*/ -/*Text Color*/ -/*Used in Dialog border*/ -/*Color for Selected Item*/ -/*Color for title texts*/ -/* color adjustable by delta */ -/*set padding*/ -/*set margin*/ -/* ------ Qt Widgets Common Difinitions ------ */ -QWidget { - color: #e6e6e6; - background-color: #303030; -} -QWidget:disabled { - color: #808080; -} -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog { - background-color: #303030; -} -QMainWindow::separator { - background: yellow; - width: 10px; - /* when vertical */ - height: 10px; - /* when horizontal */ -} -QToolTip, -#helpTooltip { - border: 1px solid black; - background-color: #ffffe1; - padding: 2px; - border-radius: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - alternate-background-color: #3d3d3d; -} -QTreeWidget::item:selected { - background-color: #80a0dc; - color: black; -} -QTreeWidget::item { - color: #e6e6e6; -} -QStatusBar { - background-color: #c0c0c0; -} -QStatusBar::item { - border-width: 0; -} -QStatusBar QLabel { - background-color: #c0c0c0; -} -QStatusBar #StatusBarLabel { - background-color: #ffffff; - padding-left: 3px; - padding-right: 3px; - padding-top: 1px; - padding-bottom: 1px; -} -QMenuBar { - background-color: #232323; -} -QMenuBar::item:selected { - background-color: #232323; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #4b4b4b; - border-bottom-color: #5f5f5f; - border-width: 1px; -} -QMenu { - background-color: #232323; -} -QMenu::item:selected { - background: #80a0dc; - color: black; -} -QMenu::item:disabled { - background-color: #3d3d3d; - color: #808080; -} -QMenu::item:disabled:selected { - background: #6c7680; -} -QMenu::separator { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - margin-left: 5px; - margin-right: 5px; - margin-top: 2px; - margin-bottom: 2px; - border-width: 1px; - height: 0px; -} -QToolBar { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; -} -QToolBar::separator:horizontal { - image: url("../gray_072/imgs/bottomseparator.png"); -} -QToolBar::separator:vertical { - image: url("../gray_072/imgs/separator.png"); -} -QToolBar QToolButton { - background-color: #303030; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; -} -QToolBar QToolButton:hover { - border-image: url("../gray_072/imgs/over.png") 2; -} -QToolBar QToolButton:checked, -QToolBar QToolButton:pressed { - border-image: url("../gray_072/imgs/click.png") 2; -} -QToolBar QToolButton:disabled { - background-color: #3d3d3d; - color: #808080; -} -QToolBar QToolButton::menu-indicator { - image: none; -} -QToolBar QToolButton::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ -} -QToolBar QLabel { - background-color: #303030; - margin-top: 1px; - border-width: 2; -} -QToolBar QToolBar { - border-width: 0px; -} -QLineEdit { - /*darken little bit*/ - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - border-radius: 2px; -} -QLineEdit:disabled { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; - color: #808080; -} -QComboBox { - /*darken little bit*/ - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 0px; - padding-bottom: 0px; - /*arrow button*/ - /*arrow button triangle*/ -} -QComboBox::drop-down { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-width: 2px; - /*pressed state*/ -} -QComboBox::drop-down:on { - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; -} -QComboBox::down-arrow { - image: url("../gray_072/imgs/combo_down_arrow.png"); -} -QComboBox:disabled { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; - color: #808080; -} -QPushButton { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-width: 1px; - border-radius: 4px; - padding-left: 15px; - padding-right: 15px; - padding-top: 3px; - padding-bottom: 3px; - /*lighten lilttle bit when hover*/ - /*lighten lilttle bit when pressed*/ -} -QPushButton:checked { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; -} -QPushButton:pressed { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; -} -QPushButton:hover { - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; -} -QPushButton:hover:pressed { - background-color: #4a4a4a; - border-style: inset; - border-left-color: #262626; - border-top-color: #1a1a1a; - border-right-color: #727272; - border-bottom-color: #868686; -} -QPushButton:hover:checked { - background-color: #3d3d3d; - border-style: inset; - border-left-color: #191919; - border-top-color: #0d0d0d; - border-right-color: #656565; - border-bottom-color: #797979; -} -QPushButton:disabled { - background-color: #3d3d3d; - border-style: outset; - border-left-color: #656565; - border-top-color: #797979; - border-right-color: #191919; - border-bottom-color: #0d0d0d; - color: #505050; -} -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -QCheckBox:hover { - background-color: #4a4a4a; -} -QCheckBox:disabled { - color: #808080; -} -QCheckBox::indicator, -QGroupBox::indicator { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 2px; -} -QCheckBox::indicator:disabled, -QGroupBox::indicator:disabled { - background-color: #3d3d3d; - border-style: inset; - border-left-color: #191919; - border-top-color: #0d0d0d; - border-right-color: #656565; - border-bottom-color: #797979; -} -QCheckBox::indicator:checked, -QGroupBox::indicator:checked { - image: url("../gray_072/imgs/check_indicator.png"); -} -QCheckBox::indicator:checked:disabled, -QGroupBox::indicator:checked:disabled { - image: url("../gray_072/imgs/check_indicator_disabled.png"); -} -QSlider::groove:horizontal { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - height: 1px; - margin: 1px; -} -QSlider::handle:horizontal { - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; - border-width: 2px; - width: 5px; - margin: -8px 0px; - /* expand outside the groove */ -} -QGroupBox { - border: 1px solid #e6e6e6; - margin: 6px 0 0 0; - padding: 5px 3px; -} -QGroupBox::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; -} -QGroupBox:disabled { - color: #0c0c0c; - border-color: #808080; -} -QSplitter::handle { - background-color: #707070; -} -/* ------ Toonz Classes Difinitions ------ */ -TPanel { - /*Used for dialog border*/ - background-color: #000000; -} -TPanelTitleBar { - qproperty-BorderPixmap: url("../gray_072/imgs/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("../gray_072/imgs/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("../gray_072/imgs/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("../gray_072/imgs/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: #c0c0c0; - qproperty-ActiveTitleColor: #ffffff; -} -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer { - margin: 0px; - padding: 0px; -} -PaletteViewer #ToolBarContainer QToolBar { - border: 1px; - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; -} -PaletteViewer #ToolBarContainer QToolBar QToolButton { - margin: 0px; - padding: 1px; - border: 0px; -} -PaletteViewer #ToolBarContainer #keyFrameNavigator { - border: 0px; -} -#TabBarContainer { - qproperty-BottomAboveLineColor: #787878; - qproperty-BottomBelowLineColor: #ffffff; - background-color: #0a0a0a; -} -#TabBarContainer #ScrollLeftButton, -#TabBarContainer #ScrollRightButton { - margin-top: 1px; -} -#PaletteTabBar, -#FxSettingsTabBar { - background-color: #0a0a0a; -} -#PaletteTabBar::tab, -#FxSettingsTabBar::tab { - padding-left: 7px; - padding-right: 7px; - padding-top: 2px; - padding-bottom: 2px; - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - background-color: #232323; - border-style: outset; - border-left-color: #4b4b4b; - border-top-color: #5f5f5f; - border-right-color: #000000; - border-bottom-color: #000000; - /* for non selected tab */ - margin-top: 2px; - /* for non selected tab */ - border-bottom-color: #6c6c6c; - /* for non selected tab */ -} -#PaletteTabBar::tab:selected, -#FxSettingsTabBar::tab:selected { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - margin-top: 0px; - border-bottom-color: #303030; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; -} -#PaletteTabBar::tab:first:selected, -#FxSettingsTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#PaletteTabBar::tab:last:selected, -#FxSettingsTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#PaletteTabBar::tab:only-one, -#FxSettingsTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#PaletteLockButton:hover { - border-image: url("../gray_072/imgs/over_yellow.png") 2; -} -#PaletteLockButton:checked { - border-image: url("../gray_072/imgs/click_pink.png") 2; -} -#PaletteLockButton:checked:hover { - border-image: url("../gray_072/imgs/over_pressed_yellow.png") 2; -} -#PageViewer { - qproperty-TextColor: #e6e6e6; -} -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - background-color: #0a0a0a; -} -#StyleEditorTabBar::tab { - padding-left: 2px; - padding-right: 2px; - padding-top: 1px; - padding-bottom: 1px; - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - background-color: #232323; - border-style: outset; - border-left-color: #4b4b4b; - border-top-color: #5f5f5f; - border-right-color: #000000; - border-bottom-color: #000000; - /* for non selected tab */ - border-bottom-color: #6c6c6c; - /* for non selected tab */ -} -#StyleEditorTabBar::tab:selected { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-bottom-color: #303030; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; -} -#StyleEditorTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#StyleEditorTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#StyleEditorTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#HexagonalColorWheel { - qproperty-BGColor: #303030; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; -} -#colorSlider::handle:horizontal { - width: 8px; - margin: -8px -4px; -} -#colorSliderAddButton, -#colorSliderSubButton { - border-image: url("../gray_072/imgs/colorslider_button_bg.png") 2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} -#colorSliderAddButton { - image: url("../gray_072/imgs/colorslider_add.png"); -} -#colorSliderAddButton:pressed { - image: url("../gray_072/imgs/colorslider_add_pressed.png"); -} -#colorSliderSubButton { - image: url("../gray_072/imgs/colorslider_sub.png"); -} -#colorSliderSubButton:pressed { - image: url("../gray_072/imgs/colorslider_sub_pressed.png"); -} -#PlainColorPageParts { - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-top-width: 1px; - border-bottom-width: 1px; -} -#colorSliderLabel, -#colorSliderField { - font-size: 14px; -} -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: #e1e1e1; -} -DvScrollWidget > QPushButton:hover { - background-color: #f5f5f5; -} -DvScrollWidget > QPushButton:pressed { - background-color: #d7d7d7; -} -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} -#ScrollLeftButton { - image: url("../gray_072/imgs/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("../gray_072/imgs/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("../gray_072/imgs/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("../gray_072/imgs/down_arrow_black.png"); - border-top: 1px solid black; -} -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - background-color: #0a0a0a; -} -#ViewerPanel #ToolBarContainer { - border-top: 1px solid #6c6c6c; - margin-top: 1px; - padding-top: 3px; -} -FlipBook #ToolBarContainer { - border-top: 1px solid #6c6c6c; - margin-top: 1px; - padding-top: 3px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} -#ViewerFpsSlider { - background-color: #4a4a4a; - margin-left: 19px; - margin-right: 19px; - margin-top: 0px; - margin-bottom: 0px; - border: 1px solid black; - height: 21px; -} -#ViewerFpsSlider::handle { - border-image: url("../gray_072/imgs/handle_border.png") 6; - border-width: 6px; - image: none; - min-width: 5px; -} -#ViewerFpsSlider::add-line { - image: url("../gray_072/imgs/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::add-line:pressed { - image: url("../gray_072/imgs/fpssb_g_rarrow_pressed.png"); -} -#ViewerFpsSlider::sub-line { - image: url("../gray_072/imgs/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::sub-line:pressed { - image: url("../gray_072/imgs/fpssb_g_larrow_pressed.png"); -} -#FlipConsolePlayToolBar { - border: none; -} -#FlipConsolePlayToolBar QToolButton { - height: 14px; -} -FlipSlider { - qproperty-PBHeight: 20; - qproperty-PBOverlay: url("../gray_072/imgs/flipslider.png"); - qproperty-PBMarker: url("../gray_072/imgs/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-notStartedColor: #cc2222; - qproperty-startedColor: #c88080; - qproperty-baseColor: #626262; -} -Ruler { - qproperty-ParentBGColor: #303030; - qproperty-ScaleColor: #e6e6e6; -} -#ComboViewerToolOptions { - border: 1px; - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; -} -#RulerToolOptionValues { - color: black; -} -/*-----------File Browser------------*/ -#DirTreeView, -#FunctionEditorTree, -#ShortcutTree, -#FxTreeView { - alternate-background-color: #3d3d3d; - border-width: 1px; - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - margin: 0px; -} -#DirTreeView::branch:adjoins-item { - border-image: url("../gray_072/imgs/tree_branch-end.png") 0; -} -#DirTreeView::branch:has-siblings { - border-image: url("../gray_072/imgs/tree_vline.png") 0; -} -#DirTreeView::branch:has-siblings:adjoins-item { - border-image: url("../gray_072/imgs/tree_branch-more.png") 0; -} -#DirTreeView::branch:has-children:closed { - border-image: none; - image: url("../gray_072/imgs/tree_branch-closed_nosib.png"); -} -#DirTreeView::branch:has-children:open { - border-image: none; - image: url("../gray_072/imgs/tree_branch-open_nosib.png"); -} -#DirTreeView::branch:has-children:has-siblings:closed { - border-image: none; - image: url("../gray_072/imgs/tree_branch-closed.png"); -} -#DirTreeView::branch:has-children:has-siblings:open { - border-image: none; - image: url("../gray_072/imgs/tree_branch-open.png"); -} -DvItemViewerPanel { - qproperty-TextColor: #e6e6e6; - qproperty-AlternateBackground: #3d3d3d; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #96e6e6; - qproperty-SelectedItemBackground: #80a0dc; -} -DvDirTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #96e6e6; - qproperty-SelectedFolderTextColor: #001e00; - qproperty-SelectedItemBackground: #80a0dc; - alternate-background-color: #3d3d3d; -} -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid #e6e6e6; -} -#TitleTxtLabel { - color: #a8bee7; -} -#PsdSettingsGroupBox { - border: 1px solid #80a0dc; -} -#FileDoesNotExistLabel { - color: #ff3232; -} -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("../gray_072/imgs/handle_border.png") 5; - image: url("../gray_072/imgs/plus.png"); - image-position: center center; -} -#CleanupSettingsShowButton:checked, -#LoadLevelShowButton:checked, -#FxSettingsPreviewShowButton:checked { - image: url("../gray_072/imgs/minus.png"); -} -ParamsPage { - qproperty-TextColor: #e6e6e6; -} -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea { - border: 0px; -} -#FunctionSegmentViewer { - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - border-width: 2px; -} -#xsheetArea, -#ScrollArea { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 2px; -} -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: #e6e678; -} -#xsheetColumnAreaMenu_Lock { - background-color: #f5f5f5; -} -#xsheetColumnAreaMenu_Camstand { - background-color: #ffa480; -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; -} -#xsheetColumnAreaMenu_Preview:selected, -#xsheetColumnAreaMenu_Lock:selected, -#xsheetColumnAreaMenu_Camstand:selected { - background-color: #000080; -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; -} -#XSheetToolbar { - margin: 0; - padding: 0; - border: 0; -} -#XSheetToolbar::separator:horizontal { - margin-right: 4; - margin-left: 4; -} -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - /* buttons */ -} -QScrollBar:vertical { - width: 16px; - margin-left: 0px; - margin-right: 0px; - margin-top: 16px; - margin-bottom: 16px; -} -QScrollBar:horizontal { - height: 16px; - margin-left: 16px; - margin-right: 16px; - margin-top: 0px; - margin-bottom: 0px; -} -QScrollBar::handle { - border-width: 3; - image-position: center center; -} -QScrollBar::handle:vertical { - border-image: url("../gray_072/imgs/sb_g_vhandle.png") 3; - image: url("../gray_072/imgs/sb_g_vline.png"); - min-height: 40px; -} -QScrollBar::handle:horizontal { - border-image: url("../gray_072/imgs/sb_g_hhandle.png") 3; - image: url("../gray_072/imgs/sb_g_hline.png"); - min-width: 40px; -} -QScrollBar::add-line { - subcontrol-origin: margin; -} -QScrollBar::add-line:vertical { - image: url("../gray_072/imgs/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; -} -QScrollBar::add-line:vertical:pressed { - image: url("../gray_072/imgs/sb_g_downarrow_pressed.png"); -} -QScrollBar::add-line:horizontal { - image: url("../gray_072/imgs/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; -} -QScrollBar::add-line:horizontal:pressed { - image: url("../gray_072/imgs/sb_g_rarrow_pressed.png"); -} -QScrollBar::sub-line { - subcontrol-origin: margin; -} -QScrollBar::sub-line:vertical { - image: url("../gray_072/imgs/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; -} -QScrollBar::sub-line:vertical:pressed { - image: url("../gray_072/imgs/sb_g_uparrow_pressed.png"); -} -QScrollBar::sub-line:horizontal { - image: url("../gray_072/imgs/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; -} -QScrollBar::sub-line:horizontal:pressed { - image: url("../gray_072/imgs/sb_g_larrow_pressed.png"); -} -QScrollBar::add-page, -QScrollBar::sub-page { - background-color: #4a4a4a; -} -#noteTextEdit { - color: black; -} -XsheetViewer { - qproperty-TextColor: #e6e6e6; - qproperty-BGColor: #484848; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-VerticalLineColor: #787878; - qproperty-VerticalLineHeadColor: #a0a0a0; - qproperty-PreviewFrameTextColor: #96e6e6; - qproperty-CurrentRowBgColor: #506082; - qproperty-EmptyColumnHeadColor: #606060; - qproperty-SelectedColumnTextColor: #e66464; - qproperty-EmptyCellColor: #404040; - qproperty-NotEmptyColumnColor: #484848; - qproperty-SelectedEmptyCellColor: #6c6c6c; - qproperty-LevelColumnColor: #4c6e4c; - qproperty-LevelColumnBorderColor: #8fb38f; - qproperty-SelectedLevelColumnColor: #6b8c6b; - qproperty-VectorColumnColor: #7b7b4c; - qproperty-VectorColumnBorderColor: #bbbb9a; - qproperty-SelectedVectorColumnColor: #8c8c60; - qproperty-ChildColumnColor: #6a526b; - qproperty-ChildColumnBorderColor: #b1a3b3; - qproperty-SelectedChildColumnColor: #7a617a; - qproperty-FullcolorColumnColor: #657a96; - qproperty-FullcolorColumnBorderColor: #9eb8bb; - qproperty-SelectedFullcolorColumnColor: #8896a7; - qproperty-FxColumnColor: #56553c; - qproperty-FxColumnBorderColor: #95958a; - qproperty-SelectedFxColumnColor: #6a6d5a; - qproperty-ReferenceColumnColor: #616161; - qproperty-ReferenceColumnBorderColor: #a2a2a2; - qproperty-SelectedReferenceColumnColor: #828282; - qproperty-PaletteColumnColor: #3a655f; - qproperty-PaletteColumnBorderColor: #86aca7; - qproperty-SelectedPaletteColumnColor: #5f8581; - qproperty-MeshColumnColor: #684d86; - qproperty-MeshColumnBorderColor: #ba92ef; - qproperty-SelectedMeshColumnColor: #8a75a2; - qproperty-SoundColumnColor: #657456; - qproperty-SoundColumnBorderColor: #a0af7d; - qproperty-SelectedSoundColumnColor: #7f956a; - qproperty-SoundColumnHlColor: #34fe5e; - qproperty-SoundColumnTrackColor: #b6c29d; - qproperty-ColumnHeadPastelizer: #000000; - qproperty-SelectedColumnHead: #506082; - qproperty-LightLightBGColor: #fafafa; - qproperty-LightBGColor: #f0f0f0; - qproperty-DarkBGColor: #e1e1e1; - qproperty-DarkLineColor: #969696; -} -/*------- Schematic ---------*/ -#SchematicBottomFrame { - margin: 0px; - padding: 0px; - background-color: #303030; - border-style: outset; - border-left-color: #585858; - border-top-color: #6c6c6c; - border-right-color: #0c0c0c; - border-bottom-color: #000000; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer { - background-color: #373737; -} -/*------ Function Editor ---------*/ -#FunctionParametersPanel { - border: 1px solid #e6e6e6; -} -#FunctionEditorTree::branch:adjoins-item, -#ShortcutTree::branch:adjoins-item { - border-image: url("../gray_072/imgs/tree17_branch-end.png") 0; -} -#FunctionEditorTree::branch:has-siblings, -#ShortcutTree::branch:has-siblings { - border-image: url("../gray_072/imgs/tree17_vline.png") 0; -} -#FunctionEditorTree::branch:has-siblings:adjoins-item, -#ShortcutTree::branch:has-siblings:adjoins-item { - border-image: url("../gray_072/imgs/tree17_branch-more.png") 0; -} -#FunctionEditorTree::branch:has-children:closed, -#ShortcutTree::branch:has-children:closed { - border-image: none; - image: url("../gray_072/imgs/tree17_branch-closed_nosib.png"); -} -#FunctionEditorTree::branch:has-children:open, -#ShortcutTree::branch:has-children:open { - border-image: none; - image: url("../gray_072/imgs/tree17_branch-open_nosib.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:closed, -#ShortcutTree::branch:has-children:has-siblings:closed { - border-image: none; - image: url("../gray_072/imgs/tree17_branch-closed.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:open, -#ShortcutTree::branch:has-children:has-siblings:open { - border-image: none; - image: url("../gray_072/imgs/tree17_branch-open.png"); -} -FunctionPanel { - qproperty-BGColor: #303030; - qproperty-ValueLineColor: #484848; - qproperty-FrameLineColor: #606060; - qproperty-OtherCurvesColor: #808080; - qproperty-RulerBackground: #303030; - qproperty-TextColor: #e6e6e6; - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} -FunctionTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-CurrentTextColor: #e66464; -} -SpreadsheetViewer { - qproperty-LightLightBGColor: #404040; - qproperty-CurrentRowBgColor: #506082; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-BGColor: #484848; - qproperty-VerticalLineColor: #787878; - qproperty-KeyFrameColor: #995d1d; - qproperty-KeyFrameBorderColor: #c9b04b; - qproperty-SelectedKeyFrameColor: #978056; - qproperty-InBetweenColor: #666250; - qproperty-InBetweenBorderColor: #cdcec8; - qproperty-SelectedInBetweenColor: #7e8079; - qproperty-SelectedEmptyColor: #6c6c6c; - qproperty-SelectedSceneRangeEmptyColor: #757575; - qproperty-TextColor: #e6e6e6; - qproperty-ColumnHeaderBorderColor: #8e8e8e; - qproperty-SelectedColumnTextColor: #e66464; -} -#keyFrameNavigator { - background: none; - margin: 0; - padding: 0; - border: 0; -} -#keyFrameNavigator QToolButton { - min-width: 18px; -} -#keyFrameNavigator #PreviousKey { - image: url('../gray_072/imgs/prevkey.png'); -} -#keyFrameNavigator #PreviousKey:disabled { - image: url('../gray_072/imgs/prevkey_disabled.png'); -} -#keyFrameNavigator #NextKey { - image: url('../gray_072/imgs/nextkey.png'); -} -#keyFrameNavigator #NextKey:disabled { - image: url('../gray_072/imgs/nextkey_disabled.png'); -} -#ExpressionField { - background-color: #b0b0b0; - border-style: inset; - border-left-color: #8c8c8c; - border-top-color: #808080; - border-right-color: #d8d8d8; - border-bottom-color: #ececec; - border-width: 2px; - border-radius: 2px; - margin: 0px; -} -#FunctionSegmentViewerLinkButton { - border: 2px; - margin: 0px; - background-image: url("../gray_072/imgs/segment_unlinked.png"); - background-color: #636363; - border-style: outset; - border-left-color: #8b8b8b; - border-top-color: #9f9f9f; - border-right-color: #3f3f3f; - border-bottom-color: #333333; -} -#FunctionSegmentViewerLinkButton:checked { - background-image: url("../gray_072/imgs/segment_linked.png"); - background-color: #636363; - border-style: inset; - border-left-color: #3f3f3f; - border-top-color: #333333; - border-right-color: #8b8b8b; - border-bottom-color: #9f9f9f; -} -#FunctionSegmentViewerLinkButton:disabled { - background-image: url("../gray_072/imgs/segment_disabled.png"); - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; - border: 1px; -} -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - background-color: #161616; - border-style: inset; - border-left-color: #000000; - border-top-color: #000000; - border-right-color: #3f3f3f; - border-bottom-color: #525252; - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel { - color: #a8bee7; -} -/*------ Cleanup Settings------*/ -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#CameraSettingsButton { - padding: 2px; - border: 0px; -} -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; -} -#CameraSettingsRadioButton::indicator:checked { - image: url("../gray_072/imgs/cam_lock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked { - image: url("../gray_072/imgs/cam_unlock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked:hover { - image: url("../gray_072/imgs/cam_lock_hover.png"); -} -#CameraSettingsDPI { - color: #a8bee7; -} -#CameraSettingsRadioButton_Small { - padding: 2px; -} -#CameraSettingsRadioButton_Small::indicator { - width: 11px; - height: 21px; -} -#CameraSettingsRadioButton_Small::indicator:checked { - image: url("../gray_072/imgs/cam_lock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked { - image: url("../gray_072/imgs/cam_unlock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked:hover { - image: url("../gray_072/imgs/cam_lock_hover_small.png"); -} -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("../gray_072/imgs/fsp_released.png"); -} -#ForceSquaredPixelButton:hover { - image: url("../gray_072/imgs/fsp_hover.png"); -} -#ForceSquaredPixelButton:checked { - image: url("../gray_072/imgs/fsp_pressed.png"); -} -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; - /*space between button and text*/ -} -#EditToolLockButton::indicator { - border-width: 0px; - width: 21px; - height: 21px; -} -#EditToolLockButton::indicator:unchecked { - image: url("../gray_072/imgs/cam_unlock.png"); -} -#EditToolLockButton::indicator:unchecked:hover { - image: url("../gray_072/imgs/cam_unlock_hover.png"); -} -#EditToolLockButton::indicator:checked { - image: url("../gray_072/imgs/cam_lock.png"); -} -#EditToolLockButton::indicator:checked:hover { - image: url("../gray_072/imgs/cam_lock_hover.png"); -} -IconViewField { - qproperty-ScalePegPixmap: url("../gray_072/imgs/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("../gray_072/imgs/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("../gray_072/imgs/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("../gray_072/imgs/selectiontool_thickness.png"); -} -PopupButton::menu-indicator { - image: url("../gray_072/imgs/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; -} -PopupButton::menu-indicator:disabled { - image: url("../gray_072/imgs/down_arrow_disabled.png"); -} -#Cap, -#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; - max-width: 32px; -} -#Cap QMenu, -#Join QMenu { - min-width: 18px; - max-width: 18px; -} -#Cap QMenu::item, -#Join QMenu::item { - min-width: 16px; - max-width: 16px; - padding: 0px; -} -/*------ Script Console ------*/ -#ScriptConsole { - border: 1px inset; - background-color: #dcdcdc; - color: black; - font-family: "Courier"; -} -/*------ Topbar and Menubar of the MainWindow ------*/ -#TopBar { - height: 22px; - background-color: #232323; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background-color: #303030; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("../gray_072/imgs/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; -} -#TopBarTab::tab { - margin-left: 5px; - margin-right: 5px; - margin-top: 1px; - margin-bottom: 1px; - padding-left: 8px; - padding-right: 8px; - padding-top: 1px; - padding-bottom: 1px; - background-color: #3d3d3d; - border: 1px solid white; -} -#TopBarTab::tab:selected { - background-color: #5a8c78; -} -#TopBarTab::tab:hover { - background-color: #78785a; -} -#StackedMenuBar { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#DockSeparator { - background-color: #4a4a4a; - border-style: outset; - border-left-color: #727272; - border-top-color: #868686; - border-right-color: #262626; - border-bottom-color: #1a1a1a; - border-width: 1; -} -#TDockPlaceholder { - background-color: #b9f000; -} -/*------ Popups -------*/ -QDialog #dialogButtonFrame { - background-color: #161616; -} -#SceneSettings QLabel { - color: #a8bee7; -} -#PreferencesPopup QListWidget { - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - border-width: 2px; - alternate-background-color: #3d3d3d; - font-size: 14px; -} -#PreferencesPopup QListWidget::item { - padding: 3px; -} -#PreferencesPopup QListWidget::item:selected { - background-color: #80a0dc; - color: black; -} -#PreferencesPopup QListWidget::item:hover { - background-color: #4a4a4a; -} -#OutputSettingsBox { - border: 1px solid #80a0dc; -} -#OutputSettingsLabel { - color: #a8bee7; -} -#OutputSettingsCameraBox { - background-color: #303030; - border-style: inset; - border-left-color: #0c0c0c; - border-top-color: #000000; - border-right-color: #585858; - border-bottom-color: #6c6c6c; - border-width: 2px; -} -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("../gray_072/imgs/handle_border.png") 5; - image: url("../gray_072/imgs/plus.png"); - image-position: center center; -} -#OutputSettingsShowButton:checked { - image: url("../gray_072/imgs/minus.png"); -} -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: #9b9b9b; - qproperty-LightLineEdgeColor: #303030; - qproperty-DarkLineColor: #2f2f2f; - qproperty-MiddleLineColor: #000000; - qproperty-HandleLeftPixmap: url("../gray_072/imgs/h_slider_left.png"); - qproperty-HandleRightPixmap: url("../gray_072/imgs/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("../gray_072/imgs/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("../gray_072/imgs/h_slider_right_disabled.png"); -} -#FxSettingsLabel { - color: #a0e680; -} -#FxSettings { - border-width: 0px; - border-bottom: 3px double #404040; -} -#FxSettingsHelpButton { - color: #a0c8ff; -} -#MatchLineButton { - background-color: #4a4a4a; -} -#MatchLineButton::pressed { - background-color: #7d7d7d; -} -#LargeSizedText { - font-size: 17px; -} -#GearButton { - qproperty-icon: url("../gray_072/imgs/gear.png"); -} -#SubfolderButton { - qproperty-icon: url("../gray_072/imgs/subfolder.png"); -} -#StartupLabel { - padding: 3px; -} -#StartupLabel:hover { - background-color: #4a4a4a; -} -#WordButton { - font-size: 12px; - color: black; - background-color: #c0c0c0; - border-style: outset; - border-left-color: white; - border-top-color: white; - border-right-color: black; - border-bottom-color: black; - border-width: 1px; - border-radius: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#WordButton:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -#WordButton:hover { - background-color: #faffa2; -} -#WordButton:hover:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} diff --git a/stuff/config/qss/gray_072/gray_072.less b/stuff/config/qss/gray_072/gray_072.less deleted file mode 100644 index c2c1a3a..0000000 --- a/stuff/config/qss/gray_072/gray_072.less +++ /dev/null @@ -1,1461 +0,0 @@ -// out: gray_072.qss -/* LESS Definitions */ - -/*Image URL*/ -@image_url: "imgs"; - -/*Text Color*/ -@m_baseTxtColor: rgb(230,230,230); -@m_disabledTxtColor: rgb(128,128,128); - -@m_baseBG: rgb(72,72,72); -@m_base_lightH: rgb(108,108,108); -@m_base_lightV: rgb(128,128,128); -@m_base_darkH: rgb(32,32,32); -@m_base_darkV: rgb(0,0,0); - -/*Used in Dialog border*/ -@m_dialog_border_color: rgb(32,32,32); - -/*Color for Selected Item*/ -@m_selectedBG: rgb(128,160,220); - -/*Color for title texts*/ -@m_titleTxtColor: lighten(@m_selectedBG, 10%); - -/* color adjustable by delta */ -.baseBG(@dark: 0%){ - background-color: darken(@m_baseBG, @dark); -} -.baseBG(light, @light: 0%){ - background-color: lighten(@m_baseBG, @light); -} -.set_border_color(@lefttop, @rightbottom){ - border-left-color: @lefttop; - border-top-color: @lefttop; - border-right-color: @rightbottom; - border-bottom-color: @rightbottom; -} -.base_inset(@dark: 0%){ - .baseBG(@dark); - border-style: inset; - border-left-color: darken(@m_base_darkH, @dark); - border-top-color: darken(@m_base_darkV, @dark); - border-right-color: darken(@m_base_lightH, @dark); - border-bottom-color: darken(@m_base_lightV, @dark); -} -.base_inset(light, @light: 0%){ - .baseBG(light, @light); - border-style: inset; - border-left-color: lighten(@m_base_darkH, @light); - border-top-color: lighten(@m_base_darkV, @light); - border-right-color: lighten(@m_base_lightH, @light); - border-bottom-color: lighten(@m_base_lightV, @light); -} - -.base_outset(@dark: 0%){ - .baseBG(@dark); - border-style: outset; - border-left-color: darken(@m_base_lightH, @dark); - border-top-color: darken(@m_base_lightV, @dark); - border-right-color: darken(@m_base_darkH, @dark); - border-bottom-color: darken(@m_base_darkV, @dark); -} -.base_outset(light, @light: 0%){ - .baseBG(light, @light); - border-style: outset; - border-left-color: lighten(@m_base_lightH, @light); - border-top-color: lighten(@m_base_lightV, @light); - border-right-color: lighten(@m_base_darkH, @light); - border-bottom-color: lighten(@m_base_darkV, @light); -} - -/*set padding*/ -.set_padding(@hPad: 0px, @vPad: 0px){ - padding-left: @hPad; - padding-right: @hPad; - padding-top: @vPad; - padding-bottom: @vPad; -} -/*set margin*/ -.set_margin(@hMgn: 0px, @vMgn: 0px) { - margin-left: @hMgn; - margin-right: @hMgn; - margin-top: @vMgn; - margin-bottom: @vMgn; -} - -/* ------ Qt Widgets Common Difinitions ------ */ - -QWidget { - color: @m_baseTxtColor; - .baseBG; - &:disabled{ - color: @m_disabledTxtColor; - } -} - -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} - -QDialog -{ - .baseBG; -} - -QMainWindow::separator -{ - background: yellow; - width: 10px; /* when vertical */ - height: 10px; /* when horizontal */ -} - -QToolTip, #helpTooltip -{ - border: 1px solid black; - background-color: rgb(255,255,225); - padding: 2px; - border-radius: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - .base_inset; - alternate-background-color: lighten(@m_baseBG, 5%); - - &::item:selected - { - background-color: @m_selectedBG; - color: black; - } - &::item - { - color: @m_baseTxtColor; - } - -} -QStatusBar { - background-color: rgb(192,192,192); - - &::item { - border-width: 0; - } - & QLabel { - background-color: rgb(192,192,192); - } - & #StatusBarLabel { - background-color: rgb(255,255,255); - .set_padding( 3px, 1px ); - } -} -QMenuBar -{ - .baseBG(5%); - &::item:selected{ - .base_inset(5%); - border-width: 1px; - } -} - -QMenu -{ - .baseBG(5%); - - &::item { - &:selected{ - background: @m_selectedBG; - color: black; - } - &:disabled{ - .baseBG(light, 5%); - color: @m_disabledTxtColor; - } - &:disabled:selected{ - background: rgb(108,118,128); - } - } - - &::separator { - .base_inset(10%); - .set_margin(5px,2px); - border-width: 1px; - height: 0px; - } -} - -QToolBar -{ - .base_outset; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; - - &::separator:horizontal { - image: url("@{image_url}/bottomseparator.png"); - } - &::separator:vertical { - image: url("@{image_url}/separator.png"); - } - - & QToolButton { - .baseBG; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; - &:hover { - border-image: url("@{image_url}/over.png") 2; - } - &:checked, - &:pressed { - border-image: url("@{image_url}/click.png") 2; - } - &:disabled{ - .baseBG(light, 5%); - color: @m_disabledTxtColor; - } - &::menu-indicator - { - image: none; - } - &::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ - } - } - - & QLabel - { - .baseBG; - margin-top: 1px; - border-width: 2; - } - - & QToolBar - { - border-width: 0px; - } -} - -QLineEdit { - /*darken little bit*/ - .base_inset(10%); - border-width: 1px; - border-radius: 2px; - &:disabled { - .base_inset(light, 10%); - color: @m_disabledTxtColor; - } -} -QComboBox { - /*darken little bit*/ - .base_inset(10%); - border-width: 1px; - .set_padding( 3px, 0px ); - - /*arrow button*/ - &::drop-down { - .base_outset; - border-width: 2px; - /*pressed state*/ - &:on { - .base_inset; - } - } - /*arrow button triangle*/ - &::down-arrow { - image: url("@{image_url}/combo_down_arrow.png"); - } - &:disabled { - .base_inset(light, 10%); - color: @m_disabledTxtColor; - } - -} - -QPushButton { - .base_outset; - border-width: 1px; - border-radius: 4px; - .set_padding(15px, 3px); - &:checked { - .base_inset(light, 10%); - } - &:pressed { - .base_inset(light, 10%); - } - /*lighten lilttle bit when hover*/ - &:hover { - .base_outset(light, 10%); - &:pressed { - .base_inset(light, 10%); - } - &:checked { - .base_inset(light, 5%); - } - } - /*lighten lilttle bit when pressed*/ - &:disabled{ - .base_outset(light, 5%); - color: rgb(80,80,80); - } -} - -#PushButton_NoPadding { - .set_padding(3px, 3px); -} - -QCheckBox { - &:hover { - .baseBG(light, 10%); - } - &:disabled { - color: rgb(80,80,80); - } - &::indicator { - .base_inset(10%); - border-width: 2px; - &:disabled { - .base_inset(light, 5%); - } - &:checked { - image: url("@{image_url}/check_indicator.png"); - &:disabled { - image: url("@{image_url}/check_indicator_disabled.png"); - } - } - } -} - -QSlider { - &::groove:horizontal { - .base_inset(10%); - border-width: 1px; - height: 1px; - margin: 1px; - } - &::handle:horizontal { - .base_outset(light, 10%); - border-width: 2px; - width: 5px; - margin: -8px 0px; /* expand outside the groove */ - } -} - -QGroupBox { - border: 1px solid @m_baseTxtColor; - margin: 6px 0 0 0; - padding: 5px 3px; - - &::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; - } - &::indicator { - &:extend(QCheckBox::indicator all); - } - &:disabled{ - color: @m_base_darkH; - border-color: @m_disabledTxtColor; - } -} - -QSplitter::handle -{ - background-color: lighten(@m_baseBG, 25); -} -/* ------ Toonz Classes Difinitions ------ */ - -TPanel { - /*Used for dialog border*/ - background-color: @m_dialog_border_color; -} - -TPanelTitleBar{ - qproperty-BorderPixmap: url("@{image_url}/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("@{image_url}/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("@{image_url}/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("@{image_url}/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: rgb(192,192,192); - qproperty-ActiveTitleColor: rgb(255,255,255); -} - -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer -{ - margin: 0px; - padding: 0px; - & QToolBar - { - border: 1px; - .base_outset(); - & QToolButton - { - margin: 0px; - padding: 1px; - border: 0px; - } - } - & #keyFrameNavigator - { - border: 0px; - } -} -#TabBarContainer{ - qproperty-BottomAboveLineColor: rgb(120, 120, 120); - qproperty-BottomBelowLineColor: rgb(255, 255, 255); - .baseBG(15%); - & #ScrollLeftButton, - & #ScrollRightButton{ - margin-top: 1px; - } -} -#PaletteTabBar, -#FxSettingsTabBar{ - .baseBG(15%); - &::tab { - .set_padding( 7px, 2px ); - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - .base_outset(5%); /* for non selected tab */ - margin-top: 2px; /* for non selected tab */ - border-bottom-color: @m_base_lightV; /* for non selected tab */ - - &:selected { - .base_outset(); - margin-top: 0px; - border-bottom-color: @m_baseBG; /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; - } - - &:first:selected { - margin-left: 0; /* the first selected tab has nothing to overlap with on the left */ - } - - &:last:selected { - margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ - } - - &:only-one { - margin: 0; /* if there is only one tab, we don't want overlapping margins */ - } - } -} - -#PaletteLockButton{ - &:hover{ - border-image: url("@{image_url}/over_yellow.png") 2; - } - &:checked{ - border-image: url("@{image_url}/click_pink.png") 2; - &:hover{ - border-image: url("@{image_url}/over_pressed_yellow.png") 2; - } - } -} - -#PageViewer{ - qproperty-TextColor: @m_baseTxtColor; -} - -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - .baseBG(15%); - &::tab{ - .set_padding( 2px, 1px ); - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - .base_outset(5%); /* for non selected tab */ - border-bottom-color: @m_base_lightV; /* for non selected tab */ - - &:selected { - .base_outset; - border-bottom-color: @m_baseBG; /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; - } - &:first:selected { - margin-left: 0; /* the first selected tab has nothing to overlap with on the left */ - } - &:last:selected { - margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ - } - &:only-one { - margin: 0; /* if there is only one tab, we don't want overlapping margins */ - } - } -} - -#HexagonalColorWheel { - qproperty-BGColor: @m_baseBG; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider { - &::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; - } - &::handle:horizontal { - width: 8px; - margin: -8px -4px; - } -} - -#colorSliderAddButton, -#colorSliderSubButton -{ - border-image: url("@{image_url}/colorslider_button_bg.png")2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} - -#colorSliderAddButton -{ - image: url("@{image_url}/colorslider_add.png"); - &:pressed { - image: url("@{image_url}/colorslider_add_pressed.png"); - } -} - -#colorSliderSubButton -{ - image: url("@{image_url}/colorslider_sub.png"); - &:pressed { - image: url("@{image_url}/colorslider_sub_pressed.png"); - } -} - -#PlainColorPageParts -{ - .base_outset; - border-top-width: 1px; - border-bottom-width: 1px; -} - -#colorSliderLabel, -#colorSliderField -{ - font-size: 14px; -} - - -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: rgb(225,225,225); - - &:hover { - background-color: rgb(245,245,245); - } - &:pressed { - background-color: rgb(215,215,215); - } -} - -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} - -#ScrollLeftButton { - image: url("@{image_url}/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("@{image_url}/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("@{image_url}/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("@{image_url}/down_arrow_black.png"); - border-top: 1px solid black; -} - -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - .baseBG(15%); - - & #ToolBarContainer - { - border-top: 1px solid @m_base_lightV; - margin-top: 1px; - padding-top: 3px; - } -} - -FlipBook #ToolBarContainer -{ - border-top: 1px solid @m_base_lightV; - margin-top: 1px; - padding-top: 3px; -} - -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} - -#ViewerFpsSlider -{ - .baseBG(light, 10%); - .set_margin(19px, 0px); - border: 1px solid black; - height: 21px; - - &::handle { - border-image: url("@{image_url}/handle_border.png")6; - border-width: 6px; - image: none; - min-width: 5px; - } - &::add-line { - image: url("@{image_url}/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; - &:pressed { - image: url("@{image_url}/fpssb_g_rarrow_pressed.png"); - } - } - &::sub-line { - image: url("@{image_url}/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; - &:pressed { - image: url("@{image_url}/fpssb_g_larrow_pressed.png"); - } - } -} - -#FlipConsolePlayToolBar{ - border: none; - & QToolButton { - height: 14px; - } -} - -FlipSlider { - qproperty-PBHeight: 20; - - qproperty-PBOverlay: url("@{image_url}/flipslider.png"); - qproperty-PBMarker: url("@{image_url}/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-baseColor: #626262; - qproperty-notStartedColor: rgb(204,34,34); - qproperty-startedColor: rgb(200,128,128); - qproperty-baseColor: #626262; -} - -Ruler { - qproperty-ParentBGColor: rgb(48,48,48); - qproperty-ScaleColor: rgb(230,230,230); -} - -#ComboViewerToolOptions{ - border: 1px; - .base_outset; -} - -#RulerToolOptionValues{ - color: black; -} - -/*-----------File Browser------------*/ -#DirTreeView, #FunctionEditorTree, #ShortcutTree, #FxTreeView -{ - alternate-background-color: lighten(@m_baseBG, 5%); - border-width: 1px; - .base_inset; - margin: 0px; -} -#DirTreeView::branch { - &:adjoins-item { - border-image: url("@{image_url}/tree_branch-end.png") 0; - } - - &:has-siblings { - border-image: url("@{image_url}/tree_vline.png") 0; - &:adjoins-item - { - border-image: url("@{image_url}/tree_branch-more.png") 0; - } - } - &:has-children { - &:closed { - border-image: none; - image: url("@{image_url}/tree_branch-closed_nosib.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree_branch-open_nosib.png"); - } - - &:has-siblings { - &:closed { - border-image: none; - image: url("@{image_url}/tree_branch-closed.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree_branch-open.png"); - } - } - } -} - -DvItemViewerPanel { - qproperty-TextColor: @m_baseTxtColor; - qproperty-AlternateBackground: #555555; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: rgb(150, 230, 230); - qproperty-SelectedItemBackground: #80a0dc; -} - -DvDirTreeView { - qproperty-TextColor: @m_baseTxtColor; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: rgb(150, 230, 230); - qproperty-SelectedFolderTextColor: rgb(0,30,0); - qproperty-SelectedItemBackground: #80a0dc; - alternate-background-color: lighten(@m_baseBG, 5%); -} - -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid @m_baseTxtColor; -} - - -#TitleTxtLabel{ - color: @m_titleTxtColor; -} - -#PsdSettingsGroupBox { - border: 1px solid @m_selectedBG; -} - -#FileDoesNotExistLabel { - color: rgb(255,50,50); -} - -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("@{image_url}/handle_border.png")5; - image: url("@{image_url}/plus.png"); - image-position: center center; - - &:checked { - image: url("@{image_url}/minus.png"); - } -} - -ParamsPage { - qproperty-TextColor: @m_baseTxtColor; -} - -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea -{ - border:0px; -} - -#FunctionSegmentViewer -{ - .base_inset; - border-width: 2px; -} - -#xsheetArea, #ScrollArea -{ - .base_inset(10%); - border-width: 2px; -} - -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: rgb(230,230,120); -} -#xsheetColumnAreaMenu_Lock { - background-color: rgb(245,245,245); -} -#xsheetColumnAreaMenu_Camstand { - background-color: rgb(255,164,128); -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; - &:selected { - background-color: rgb(0,0,128); - } -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; - } - - #XSheetToolbar { - margin: 0; - padding: 0; - border: 0; - &::separator:horizontal { - margin-right: 4; - margin-left: 4; - } - } - -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - - &:vertical { - width: 16px; - .set_margin( 0px, 16px ); - } - &:horizontal { - height: 16px; - .set_margin( 16px, 0px ); - } - - &::handle { - border-width: 3; - image-position: center center; - &:vertical { - border-image: url("@{image_url}/sb_g_vhandle.png")3; - image: url("@{image_url}/sb_g_vline.png"); - min-height: 40px; - } - - &:horizontal { - border-image: url("@{image_url}/sb_g_hhandle.png")3; - image: url("@{image_url}/sb_g_hline.png"); - min-width: 40px; - } - } - /* buttons */ - &::add-line { - subcontrol-origin: margin; - &:vertical { - image: url("@{image_url}/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; - &:pressed { - image: url("@{image_url}/sb_g_downarrow_pressed.png"); - } - } - &:horizontal { - image: url("@{image_url}/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; - &:pressed{ - image: url("@{image_url}/sb_g_rarrow_pressed.png"); - } - } - } - - &::sub-line { - subcontrol-origin: margin; - &:vertical { - image: url("@{image_url}/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; - &:pressed { - image: url("@{image_url}/sb_g_uparrow_pressed.png"); - } - } - &:horizontal { - image: url("@{image_url}/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; - &:pressed{ - image: url("@{image_url}/sb_g_larrow_pressed.png"); - } - } - } - - &::add-page, &::sub-page { - .baseBG(light, 10%); - } -} - -#noteTextEdit{ - color: black; -} - -XsheetViewer { - qproperty-TextColor: rgb(230,230,230); - qproperty-BGColor: rgb(72,72,72); - qproperty-LightLineColor: rgb(32,32,32); - qproperty-MarkerLineColor: rgb(30, 150, 196); - qproperty-VerticalLineColor: rgb(120,120,120); - qproperty-VerticalLineHeadColor: rgb(160,160,160); - qproperty-PreviewFrameTextColor: rgb(150, 230, 230); - qproperty-CurrentRowBgColor: rgb(80,96,130); - - qproperty-EmptyColumnHeadColor: rgb(96,96,96); - qproperty-SelectedColumnTextColor: rgb(230, 100, 100); - - qproperty-EmptyCellColor: rgb(64,64,64); - qproperty-NotEmptyColumnColor: rgb(72,72,72); - qproperty-SelectedEmptyCellColor: rgb(108,108,108); - - qproperty-LevelColumnColor: rgb(76,110,76); - qproperty-LevelColumnBorderColor: rgb(143,179,143); - qproperty-SelectedLevelColumnColor: rgb(107,140,107); - - qproperty-VectorColumnColor: rgb(123,123,76); - qproperty-VectorColumnBorderColor: rgb(187,187,154); - qproperty-SelectedVectorColumnColor: rgb(140,140,96); - - qproperty-ChildColumnColor: rgb(106,82,107); - qproperty-ChildColumnBorderColor: rgb(177,163,179); - qproperty-SelectedChildColumnColor: rgb(122,97,122); - - qproperty-FullcolorColumnColor: rgb(101,122,150); - qproperty-FullcolorColumnBorderColor: rgb(158,184,187); - qproperty-SelectedFullcolorColumnColor: rgb(136,150,167); - - qproperty-FxColumnColor: rgb(86,85,60); - qproperty-FxColumnBorderColor: rgb(149,149,138); - qproperty-SelectedFxColumnColor: rgb(106,109,90); - - qproperty-ReferenceColumnColor: rgb(97,97,97); - qproperty-ReferenceColumnBorderColor: rgb(162,162,162); - qproperty-SelectedReferenceColumnColor: rgb(130,130,130); - - qproperty-PaletteColumnColor: rgb(58,101,95); - qproperty-PaletteColumnBorderColor: rgb(134,172,167); - qproperty-SelectedPaletteColumnColor: rgb(95,133,129); - - qproperty-MeshColumnColor: rgb(104,77,134); - qproperty-MeshColumnBorderColor: rgb(186,146,239); - qproperty-SelectedMeshColumnColor: rgb(138,117,162); - - qproperty-SoundColumnColor: rgb(101,116,86); - qproperty-SoundColumnBorderColor: rgb(160,175,125); - qproperty-SelectedSoundColumnColor: rgb(127,149,106); - qproperty-SoundColumnHlColor: rgb(52,254,94); - qproperty-SoundColumnTrackColor: rgb(182,194,157); - - qproperty-ColumnHeadPastelizer: rgb(0,0,0); - qproperty-SelectedColumnHead: rgb(80,96,130); - - qproperty-LightLightBGColor: rgb(250,250,250); - qproperty-LightBGColor: rgb(240,240,240); - qproperty-DarkBGColor: rgb(225,225,225); - qproperty-DarkLineColor: rgb(150,150,150); -} - -/*------- Schematic ---------*/ -#SchematicBottomFrame -{ - margin: 0px; - padding: 0px; - .base_outset; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer -{ - background-color: rgb(55,55,55); -} - -/*------ Function Editor ---------*/ - -#FunctionParametersPanel -{ - border: 1px solid @m_baseTxtColor; -} -#FunctionEditorTree,#ShortcutTree -{ - &::branch { - &:adjoins-item { - border-image: url("@{image_url}/tree17_branch-end.png") 0; - } - - &:has-siblings { - border-image: url("@{image_url}/tree17_vline.png") 0; - &:adjoins-item { - border-image: url("@{image_url}/tree17_branch-more.png") 0; - } - } - - &:has-children { - &:closed { - border-image: none; - image: url("@{image_url}/tree17_branch-closed_nosib.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree17_branch-open_nosib.png"); - } - - &:has-siblings { - &:closed { - border-image: none; - image: url("@{image_url}/tree17_branch-closed.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree17_branch-open.png"); - } - } - } - } -} - -FunctionPanel { - qproperty-BGColor: rgb(48,48,48); - qproperty-ValueLineColor: rgb(72,72,72); - qproperty-FrameLineColor: rgb(96,96,96); - qproperty-OtherCurvesColor: rgb(128,128,128); - qproperty-RulerBackground: rgb(48,48,48); - qproperty-TextColor: rgb(230,230,230); - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} - -FunctionTreeView { - qproperty-TextColor: rgb(230,230,230); - qproperty-CurrentTextColor: rgb(230, 100, 100); -} - -SpreadsheetViewer { - qproperty-LightLightBGColor: rgb(64,64,64); - qproperty-CurrentRowBgColor: rgb(80,96,130); - qproperty-LightLineColor: rgb(32,32,32); - qproperty-MarkerLineColor: rgb(30, 150, 196); - qproperty-BGColor: rgb(72,72,72); - qproperty-VerticalLineColor: rgb(120,120,120); - qproperty-KeyFrameColor: rgb(153,93,29); - qproperty-KeyFrameBorderColor: rgb(201,176,75); - qproperty-SelectedKeyFrameColor: rgb(151,128,86); - qproperty-InBetweenColor: rgb(102,98,80); - qproperty-InBetweenBorderColor: rgb(205,206,200); - qproperty-SelectedInBetweenColor: rgb(126,128,121); - qproperty-SelectedEmptyColor: rgb(108,108,108); - qproperty-SelectedSceneRangeEmptyColor: rgb(117,117,117); - qproperty-TextColor: rgb(230,230,230); - qproperty-ColumnHeaderBorderColor: rgb(142,142,142); - qproperty-SelectedColumnTextColor: rgb(230, 100, 100); -} -#keyFrameNavigator { - background: none; // Fixes BG overflow - margin: 0; - padding: 0; - border: 0; - & QToolButton { - min-width: 18px; - } - #PreviousKey{ - image: url('@{image_url}/prevkey.png'); - &:disabled{ - image: url('@{image_url}/prevkey_disabled.png'); - } - } - #NextKey{ - image: url('@{image_url}/nextkey.png'); - &:disabled{ - image: url('@{image_url}/nextkey_disabled.png'); - } - } -} - -#ExpressionField -{ - .base_inset(light, 50%); - border-width: 2px; - border-radius: 2px; - margin: 0px; -} - -#FunctionSegmentViewerLinkButton -{ - border: 2px; - margin: 0px; - background-image: url("@{image_url}/segment_unlinked.png"); - .base_outset(light,20%); - &:checked { - background-image: url("@{image_url}/segment_linked.png"); - .base_inset(light,20%); - } - &:disabled{ - background-image: url("@{image_url}/segment_disabled.png"); - .base_outset(light,10%); - border: 1px; - } -} - -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - .base_inset(10%); - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel -{ - color: @m_titleTxtColor; -} - -/*------ Cleanup Settings------*/ - -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} - -#CameraSettingsButton -{ - padding: 2px; - border: 0px; -} - -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; - &:checked { - image: url("@{image_url}/cam_lock.png"); - } - &:unchecked { - image: url("@{image_url}/cam_unlock.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover.png"); - } - } -} - -#CameraSettingsDPI{ - color: @m_titleTxtColor; -} - -#CameraSettingsRadioButton_Small { - padding: 2px; - &::indicator { - width: 11px; - height: 21px; - &:checked { - image: url("@{image_url}/cam_lock_small.png"); - } - &:unchecked { - image: url("@{image_url}/cam_unlock_small.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover_small.png"); - } - } - } -} - -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("@{image_url}/fsp_released.png"); - - &:hover { - image: url("@{image_url}/fsp_hover.png"); - } - &:checked { - image: url("@{image_url}/fsp_pressed.png"); - } -} - -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; /*space between button and text*/ - &::indicator { - border-width: 0px; - width: 21px; - height: 21px; - &:unchecked { - image: url("@{image_url}/cam_unlock.png"); - &:hover { - image: url("@{image_url}/cam_unlock_hover.png"); - } - } - &:checked { - image: url("@{image_url}/cam_lock.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover.png"); - } - } - } -} - -IconViewField { - qproperty-ScalePegPixmap: url("@{image_url}/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("@{image_url}/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("@{image_url}/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("@{image_url}/selectiontool_thickness.png"); -} - -PopupButton { - &::menu-indicator { - image: url("@{image_url}/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; - } - &::menu-indicator:disabled { - image: url("@{image_url}/down_arrow_disabled.png"); - } -} - -#Cap,#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; max-width: 32px; - & QMenu { - min-width: 18px; max-width: 18px; - &::item { - min-width: 16px; max-width: 16px; - padding: 0px; - } - } -} - -/*------ Script Console ------*/ - -#ScriptConsole { - border: 1px inset; - background-color: rgb(220,220,220); - color: black; - font-family: "Courier"; -} - -/*------ Topbar and Menubar of the MainWindow ------*/ - -#TopBar { - height: 22px; - .baseBG(5%); - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - .baseBG; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("@{image_url}/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; - &::tab { - .set_margin(5px, 1px); - .set_padding(8px, 1px); - .baseBG( light, 5% ); - border: 1px solid white; - &:selected { - background-color: rgb(90,140,120); - } - &:hover { - background-color: rgb(120,120,90); - } - } -} -#StackedMenuBar -{ - background: rgb(160,160,160); - margin: 0px; - border: 0px; - padding: 0px; -} - -#DockSeparator{ - .base_outset(light, 10%); - //border-image: url("@{image_url}/dock_handle_border.png") 2; - border-width: 1; -} - -#TDockPlaceholder { - background-color: rgb(185,240,0,255); -} - -/*------ Popups -------*/ - -QDialog #dialogButtonFrame { - .baseBG(10%); -} - -#SceneSettings QLabel -{ - color: @m_titleTxtColor; -} -#PreferencesPopup QListWidget -{ - .base_inset; - border-width: 2px; - alternate-background-color: lighten(@m_baseBG, 5%); - font-size: 14px; - &::item{ - padding: 3px; - &:selected{ - background-color: @m_selectedBG; - color : black; - } - &:hover{ - background-color: lighten(@m_baseBG, 10%); - } - } -} -#OutputSettingsBox { - border:1px solid @m_selectedBG; -} - -#OutputSettingsLabel { - color: @m_titleTxtColor; -} - -#OutputSettingsCameraBox { - .base_inset; - border-width: 2px; -} - -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("@{image_url}/handle_border.png")5; - image: url("@{image_url}/plus.png"); - image-position: center center; - - &:checked - { - image: url("@{image_url}/minus.png"); - } -} - -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: rgb(155,155,155); - qproperty-LightLineEdgeColor: @m_baseBG; - qproperty-DarkLineColor: rgb(47,47,47); - qproperty-MiddleLineColor: rgb(0,0,0); - qproperty-HandleLeftPixmap: url("@{image_url}/h_slider_left.png"); - qproperty-HandleRightPixmap: url("@{image_url}/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("@{image_url}/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("@{image_url}/h_slider_right_disabled.png"); -} - -#FxSettingsLabel{ - color: rgb(160,230,128); -} - -#FxSettings{ - border-width: 0px; - border-bottom: 3px double rgb(64,64,64); -} - -#FxSettingsHelpButton{ - color: rgb(160,200,255); -} - -#MatchLineButton { - .baseBG(light, 10%); - &::pressed - { - .baseBG(light, 30%); - } -} - -#LargeSizedText { - font-size: 17px; -} - -#GearButton { - qproperty-icon: url("@{image_url}/gear.png"); -} - -#SubfolderButton { - qproperty-icon: url("@{image_url}/subfolder.png"); -} - -#StartupLabel { - padding: 3px; - &:hover { - .baseBG(light, 10%); - } -} - -#WordButton { - font-size: 12px; - color: black; - background-color: rgb(192, 192, 192); - border-style: outset; - .set_border_color(white,black); - border-width: 1px; - border-radius: 1px; - .set_padding(3px, 3px); - &:pressed { - background-color: rgb(250, 255, 162); - border-style: inset; - .set_border_color(black,white); - } - &:hover { - background-color: rgb(250, 255, 162); - &:pressed { - background-color: rgb(250, 255, 162); - border-style: inset; - .set_border_color(black,white); - } - } -} \ No newline at end of file diff --git a/stuff/config/qss/gray_072/gray_072.qss b/stuff/config/qss/gray_072/gray_072.qss deleted file mode 100644 index 7c05e39..0000000 --- a/stuff/config/qss/gray_072/gray_072.qss +++ /dev/null @@ -1,1460 +0,0 @@ -/* LESS Definitions */ -/*Image URL*/ -/*Text Color*/ -/*Used in Dialog border*/ -/*Color for Selected Item*/ -/*Color for title texts*/ -/* color adjustable by delta */ -/*set padding*/ -/*set margin*/ -/* ------ Qt Widgets Common Difinitions ------ */ -QWidget { - color: #e6e6e6; - background-color: #484848; -} -QWidget:disabled { - color: #808080; -} -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog { - background-color: #484848; -} -QMainWindow::separator { - background: yellow; - width: 10px; - /* when vertical */ - height: 10px; - /* when horizontal */ -} -QToolTip, -#helpTooltip { - border: 1px solid black; - background-color: #ffffe1; - padding: 2px; - border-radius: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - alternate-background-color: #555555; -} -QTreeWidget::item:selected { - background-color: #80a0dc; - color: black; -} -QTreeWidget::item { - color: #e6e6e6; -} -QStatusBar { - background-color: #c0c0c0; -} -QStatusBar::item { - border-width: 0; -} -QStatusBar QLabel { - background-color: #c0c0c0; -} -QStatusBar #StatusBarLabel { - background-color: #ffffff; - padding-left: 3px; - padding-right: 3px; - padding-top: 1px; - padding-bottom: 1px; -} -QMenuBar { - background-color: #3b3b3b; -} -QMenuBar::item:selected { - background-color: #3b3b3b; - border-style: inset; - border-left-color: #131313; - border-top-color: #000000; - border-right-color: #5f5f5f; - border-bottom-color: #737373; - border-width: 1px; -} -QMenu { - background-color: #3b3b3b; -} -QMenu::item:selected { - background: #80a0dc; - color: black; -} -QMenu::item:disabled { - background-color: #555555; - color: #808080; -} -QMenu::item:disabled:selected { - background: #6c7680; -} -QMenu::separator { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - margin-left: 5px; - margin-right: 5px; - margin-top: 2px; - margin-bottom: 2px; - border-width: 1px; - height: 0px; -} -QToolBar { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; -} -QToolBar::separator:horizontal { - image: url("imgs/bottomseparator.png"); -} -QToolBar::separator:vertical { - image: url("imgs/separator.png"); -} -QToolBar QToolButton { - background-color: #484848; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; -} -QToolBar QToolButton:hover { - border-image: url("imgs/over.png") 2; -} -QToolBar QToolButton:checked, -QToolBar QToolButton:pressed { - border-image: url("imgs/click.png") 2; -} -QToolBar QToolButton:disabled { - background-color: #555555; - color: #808080; -} -QToolBar QToolButton::menu-indicator { - image: none; -} -QToolBar QToolButton::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ -} -QToolBar QLabel { - background-color: #484848; - margin-top: 1px; - border-width: 2; -} -QToolBar QToolBar { - border-width: 0px; -} -QLineEdit { - /*darken little bit*/ - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 1px; - border-radius: 2px; -} -QLineEdit:disabled { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; - color: #808080; -} -QComboBox { - /*darken little bit*/ - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 0px; - padding-bottom: 0px; - /*arrow button*/ - /*arrow button triangle*/ -} -QComboBox::drop-down { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-width: 2px; - /*pressed state*/ -} -QComboBox::drop-down:on { - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; -} -QComboBox::down-arrow { - image: url("imgs/combo_down_arrow.png"); -} -QComboBox:disabled { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; - color: #808080; -} -QPushButton { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-width: 1px; - border-radius: 4px; - padding-left: 15px; - padding-right: 15px; - padding-top: 3px; - padding-bottom: 3px; - /*lighten lilttle bit when hover*/ - /*lighten lilttle bit when pressed*/ -} -QPushButton:checked { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; -} -QPushButton:pressed { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; -} -QPushButton:hover { - background-color: #626262; - border-style: outset; - border-left-color: #868686; - border-top-color: #9a9a9a; - border-right-color: #3a3a3a; - border-bottom-color: #1a1a1a; -} -QPushButton:hover:pressed { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; -} -QPushButton:hover:checked { - background-color: #555555; - border-style: inset; - border-left-color: #2d2d2d; - border-top-color: #0d0d0d; - border-right-color: #797979; - border-bottom-color: #8d8d8d; -} -QPushButton:disabled { - background-color: #555555; - border-style: outset; - border-left-color: #797979; - border-top-color: #8d8d8d; - border-right-color: #2d2d2d; - border-bottom-color: #0d0d0d; - color: #505050; -} -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -QCheckBox:hover { - background-color: #626262; -} -QCheckBox:disabled { - color: #505050; -} -QCheckBox::indicator, -QGroupBox::indicator { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 2px; -} -QCheckBox::indicator:disabled, -QGroupBox::indicator:disabled { - background-color: #555555; - border-style: inset; - border-left-color: #2d2d2d; - border-top-color: #0d0d0d; - border-right-color: #797979; - border-bottom-color: #8d8d8d; -} -QCheckBox::indicator:checked, -QGroupBox::indicator:checked { - image: url("imgs/check_indicator.png"); -} -QCheckBox::indicator:checked:disabled, -QGroupBox::indicator:checked:disabled { - image: url("imgs/check_indicator_disabled.png"); -} -QSlider::groove:horizontal { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 1px; - height: 1px; - margin: 1px; -} -QSlider::handle:horizontal { - background-color: #626262; - border-style: outset; - border-left-color: #868686; - border-top-color: #9a9a9a; - border-right-color: #3a3a3a; - border-bottom-color: #1a1a1a; - border-width: 2px; - width: 5px; - margin: -8px 0px; - /* expand outside the groove */ -} -QGroupBox { - border: 1px solid #e6e6e6; - margin: 6px 0 0 0; - padding: 5px 3px; -} -QGroupBox::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; -} -QGroupBox:disabled { - color: #202020; - border-color: #808080; -} -QSplitter::handle { - background-color: #888888; -} -/* ------ Toonz Classes Difinitions ------ */ -TPanel { - /*Used for dialog border*/ - background-color: #202020; -} -TPanelTitleBar { - qproperty-BorderPixmap: url("imgs/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("imgs/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("imgs/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("imgs/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: #c0c0c0; - qproperty-ActiveTitleColor: #ffffff; -} -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer { - margin: 0px; - padding: 0px; -} -PaletteViewer #ToolBarContainer QToolBar { - border: 1px; - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; -} -PaletteViewer #ToolBarContainer QToolBar QToolButton { - margin: 0px; - padding: 1px; - border: 0px; -} -PaletteViewer #ToolBarContainer #keyFrameNavigator { - border: 0px; -} -#TabBarContainer { - qproperty-BottomAboveLineColor: #787878; - qproperty-BottomBelowLineColor: #ffffff; - background-color: #222222; -} -#TabBarContainer #ScrollLeftButton, -#TabBarContainer #ScrollRightButton { - margin-top: 1px; -} -#PaletteTabBar, -#FxSettingsTabBar { - background-color: #222222; -} -#PaletteTabBar::tab, -#FxSettingsTabBar::tab { - padding-left: 7px; - padding-right: 7px; - padding-top: 2px; - padding-bottom: 2px; - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - background-color: #3b3b3b; - border-style: outset; - border-left-color: #5f5f5f; - border-top-color: #737373; - border-right-color: #131313; - border-bottom-color: #000000; - /* for non selected tab */ - margin-top: 2px; - /* for non selected tab */ - border-bottom-color: #808080; - /* for non selected tab */ -} -#PaletteTabBar::tab:selected, -#FxSettingsTabBar::tab:selected { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - margin-top: 0px; - border-bottom-color: #484848; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; -} -#PaletteTabBar::tab:first:selected, -#FxSettingsTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#PaletteTabBar::tab:last:selected, -#FxSettingsTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#PaletteTabBar::tab:only-one, -#FxSettingsTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#PaletteLockButton:hover { - border-image: url("imgs/over_yellow.png") 2; -} -#PaletteLockButton:checked { - border-image: url("imgs/click_pink.png") 2; -} -#PaletteLockButton:checked:hover { - border-image: url("imgs/over_pressed_yellow.png") 2; -} -#PageViewer { - qproperty-TextColor: #e6e6e6; -} -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - background-color: #222222; -} -#StyleEditorTabBar::tab { - padding-left: 2px; - padding-right: 2px; - padding-top: 1px; - padding-bottom: 1px; - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - background-color: #3b3b3b; - border-style: outset; - border-left-color: #5f5f5f; - border-top-color: #737373; - border-right-color: #131313; - border-bottom-color: #000000; - /* for non selected tab */ - border-bottom-color: #808080; - /* for non selected tab */ -} -#StyleEditorTabBar::tab:selected { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-bottom-color: #484848; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; -} -#StyleEditorTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#StyleEditorTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#StyleEditorTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#HexagonalColorWheel { - qproperty-BGColor: #484848; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; -} -#colorSlider::handle:horizontal { - width: 8px; - margin: -8px -4px; -} -#colorSliderAddButton, -#colorSliderSubButton { - border-image: url("imgs/colorslider_button_bg.png") 2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} -#colorSliderAddButton { - image: url("imgs/colorslider_add.png"); -} -#colorSliderAddButton:pressed { - image: url("imgs/colorslider_add_pressed.png"); -} -#colorSliderSubButton { - image: url("imgs/colorslider_sub.png"); -} -#colorSliderSubButton:pressed { - image: url("imgs/colorslider_sub_pressed.png"); -} -#PlainColorPageParts { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-top-width: 1px; - border-bottom-width: 1px; -} -#colorSliderLabel, -#colorSliderField { - font-size: 14px; -} -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: #e1e1e1; -} -DvScrollWidget > QPushButton:hover { - background-color: #f5f5f5; -} -DvScrollWidget > QPushButton:pressed { - background-color: #d7d7d7; -} -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} -#ScrollLeftButton { - image: url("imgs/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("imgs/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("imgs/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("imgs/down_arrow_black.png"); - border-top: 1px solid black; -} -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - background-color: #222222; -} -#ViewerPanel #ToolBarContainer { - border-top: 1px solid #808080; - margin-top: 1px; - padding-top: 3px; -} -FlipBook #ToolBarContainer { - border-top: 1px solid #808080; - margin-top: 1px; - padding-top: 3px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} -#ViewerFpsSlider { - background-color: #626262; - margin-left: 19px; - margin-right: 19px; - margin-top: 0px; - margin-bottom: 0px; - border: 1px solid black; - height: 21px; -} -#ViewerFpsSlider::handle { - border-image: url("imgs/handle_border.png") 6; - border-width: 6px; - image: none; - min-width: 5px; -} -#ViewerFpsSlider::add-line { - image: url("imgs/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::add-line:pressed { - image: url("imgs/fpssb_g_rarrow_pressed.png"); -} -#ViewerFpsSlider::sub-line { - image: url("imgs/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::sub-line:pressed { - image: url("imgs/fpssb_g_larrow_pressed.png"); -} -#FlipConsolePlayToolBar { - border: none; -} -#FlipConsolePlayToolBar QToolButton { - height: 14px; -} -FlipSlider { - qproperty-PBHeight: 20; - qproperty-PBOverlay: url("imgs/flipslider.png"); - qproperty-PBMarker: url("imgs/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-notStartedColor: #cc2222; - qproperty-startedColor: #c88080; - qproperty-baseColor: #626262; -} -Ruler { - qproperty-ParentBGColor: #303030; - qproperty-ScaleColor: #e6e6e6; -} -#ComboViewerToolOptions { - border: 1px; - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; -} -#RulerToolOptionValues { - color: black; -} -/*-----------File Browser------------*/ -#DirTreeView, -#FunctionEditorTree, -#ShortcutTree, -#FxTreeView { - alternate-background-color: #555555; - border-width: 1px; - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - margin: 0px; -} -#DirTreeView::branch:adjoins-item { - border-image: url("imgs/tree_branch-end.png") 0; -} -#DirTreeView::branch:has-siblings { - border-image: url("imgs/tree_vline.png") 0; -} -#DirTreeView::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree_branch-more.png") 0; -} -#DirTreeView::branch:has-children:closed { - border-image: none; - image: url("imgs/tree_branch-closed_nosib.png"); -} -#DirTreeView::branch:has-children:open { - border-image: none; - image: url("imgs/tree_branch-open_nosib.png"); -} -#DirTreeView::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree_branch-closed.png"); -} -#DirTreeView::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree_branch-open.png"); -} -DvItemViewerPanel { - qproperty-TextColor: #e6e6e6; - qproperty-AlternateBackground: #555555; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #96e6e6; - qproperty-SelectedItemBackground: #80a0dc; -} -DvDirTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #96e6e6; - qproperty-SelectedFolderTextColor: #001e00; - qproperty-SelectedItemBackground: #80a0dc; - alternate-background-color: #555555; -} -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid #e6e6e6; -} -#TitleTxtLabel { - color: #a8bee7; -} -#PsdSettingsGroupBox { - border: 1px solid #80a0dc; -} -#FileDoesNotExistLabel { - color: #ff3232; -} -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#CleanupSettingsShowButton:checked, -#LoadLevelShowButton:checked, -#FxSettingsPreviewShowButton:checked { - image: url("imgs/minus.png"); -} -ParamsPage { - qproperty-TextColor: #e6e6e6; -} -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea { - border: 0px; -} -#FunctionSegmentViewer { - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - border-width: 2px; -} -#xsheetArea, -#ScrollArea { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 2px; -} -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: #e6e678; -} -#xsheetColumnAreaMenu_Lock { - background-color: #f5f5f5; -} -#xsheetColumnAreaMenu_Camstand { - background-color: #ffa480; -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; -} -#xsheetColumnAreaMenu_Preview:selected, -#xsheetColumnAreaMenu_Lock:selected, -#xsheetColumnAreaMenu_Camstand:selected { - background-color: #000080; -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; -} -#XSheetToolbar { - margin: 0; - padding: 0; - border: 0; -} -#XSheetToolbar::separator:horizontal { - margin-right: 4; - margin-left: 4; -} -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - /* buttons */ -} -QScrollBar:vertical { - width: 16px; - margin-left: 0px; - margin-right: 0px; - margin-top: 16px; - margin-bottom: 16px; -} -QScrollBar:horizontal { - height: 16px; - margin-left: 16px; - margin-right: 16px; - margin-top: 0px; - margin-bottom: 0px; -} -QScrollBar::handle { - border-width: 3; - image-position: center center; -} -QScrollBar::handle:vertical { - border-image: url("imgs/sb_g_vhandle.png") 3; - image: url("imgs/sb_g_vline.png"); - min-height: 40px; -} -QScrollBar::handle:horizontal { - border-image: url("imgs/sb_g_hhandle.png") 3; - image: url("imgs/sb_g_hline.png"); - min-width: 40px; -} -QScrollBar::add-line { - subcontrol-origin: margin; -} -QScrollBar::add-line:vertical { - image: url("imgs/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; -} -QScrollBar::add-line:vertical:pressed { - image: url("imgs/sb_g_downarrow_pressed.png"); -} -QScrollBar::add-line:horizontal { - image: url("imgs/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; -} -QScrollBar::add-line:horizontal:pressed { - image: url("imgs/sb_g_rarrow_pressed.png"); -} -QScrollBar::sub-line { - subcontrol-origin: margin; -} -QScrollBar::sub-line:vertical { - image: url("imgs/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; -} -QScrollBar::sub-line:vertical:pressed { - image: url("imgs/sb_g_uparrow_pressed.png"); -} -QScrollBar::sub-line:horizontal { - image: url("imgs/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; -} -QScrollBar::sub-line:horizontal:pressed { - image: url("imgs/sb_g_larrow_pressed.png"); -} -QScrollBar::add-page, -QScrollBar::sub-page { - background-color: #626262; -} -#noteTextEdit { - color: black; -} -XsheetViewer { - qproperty-TextColor: #e6e6e6; - qproperty-BGColor: #484848; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-VerticalLineColor: #787878; - qproperty-VerticalLineHeadColor: #a0a0a0; - qproperty-PreviewFrameTextColor: #96e6e6; - qproperty-CurrentRowBgColor: #506082; - qproperty-EmptyColumnHeadColor: #606060; - qproperty-SelectedColumnTextColor: #e66464; - qproperty-EmptyCellColor: #404040; - qproperty-NotEmptyColumnColor: #484848; - qproperty-SelectedEmptyCellColor: #6c6c6c; - qproperty-LevelColumnColor: #4c6e4c; - qproperty-LevelColumnBorderColor: #8fb38f; - qproperty-SelectedLevelColumnColor: #6b8c6b; - qproperty-VectorColumnColor: #7b7b4c; - qproperty-VectorColumnBorderColor: #bbbb9a; - qproperty-SelectedVectorColumnColor: #8c8c60; - qproperty-ChildColumnColor: #6a526b; - qproperty-ChildColumnBorderColor: #b1a3b3; - qproperty-SelectedChildColumnColor: #7a617a; - qproperty-FullcolorColumnColor: #657a96; - qproperty-FullcolorColumnBorderColor: #9eb8bb; - qproperty-SelectedFullcolorColumnColor: #8896a7; - qproperty-FxColumnColor: #56553c; - qproperty-FxColumnBorderColor: #95958a; - qproperty-SelectedFxColumnColor: #6a6d5a; - qproperty-ReferenceColumnColor: #616161; - qproperty-ReferenceColumnBorderColor: #a2a2a2; - qproperty-SelectedReferenceColumnColor: #828282; - qproperty-PaletteColumnColor: #3a655f; - qproperty-PaletteColumnBorderColor: #86aca7; - qproperty-SelectedPaletteColumnColor: #5f8581; - qproperty-MeshColumnColor: #684d86; - qproperty-MeshColumnBorderColor: #ba92ef; - qproperty-SelectedMeshColumnColor: #8a75a2; - qproperty-SoundColumnColor: #657456; - qproperty-SoundColumnBorderColor: #a0af7d; - qproperty-SelectedSoundColumnColor: #7f956a; - qproperty-SoundColumnHlColor: #34fe5e; - qproperty-SoundColumnTrackColor: #b6c29d; - qproperty-ColumnHeadPastelizer: #000000; - qproperty-SelectedColumnHead: #506082; - qproperty-LightLightBGColor: #fafafa; - qproperty-LightBGColor: #f0f0f0; - qproperty-DarkBGColor: #e1e1e1; - qproperty-DarkLineColor: #969696; -} -/*------- Schematic ---------*/ -#SchematicBottomFrame { - margin: 0px; - padding: 0px; - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer { - background-color: #373737; -} -/*------ Function Editor ---------*/ -#FunctionParametersPanel { - border: 1px solid #e6e6e6; -} -#FunctionEditorTree::branch:adjoins-item, -#ShortcutTree::branch:adjoins-item { - border-image: url("imgs/tree17_branch-end.png") 0; -} -#FunctionEditorTree::branch:has-siblings, -#ShortcutTree::branch:has-siblings { - border-image: url("imgs/tree17_vline.png") 0; -} -#FunctionEditorTree::branch:has-siblings:adjoins-item, -#ShortcutTree::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree17_branch-more.png") 0; -} -#FunctionEditorTree::branch:has-children:closed, -#ShortcutTree::branch:has-children:closed { - border-image: none; - image: url("imgs/tree17_branch-closed_nosib.png"); -} -#FunctionEditorTree::branch:has-children:open, -#ShortcutTree::branch:has-children:open { - border-image: none; - image: url("imgs/tree17_branch-open_nosib.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:closed, -#ShortcutTree::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree17_branch-closed.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:open, -#ShortcutTree::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree17_branch-open.png"); -} -FunctionPanel { - qproperty-BGColor: #303030; - qproperty-ValueLineColor: #484848; - qproperty-FrameLineColor: #606060; - qproperty-OtherCurvesColor: #808080; - qproperty-RulerBackground: #303030; - qproperty-TextColor: #e6e6e6; - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} -FunctionTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-CurrentTextColor: #e66464; -} -SpreadsheetViewer { - qproperty-LightLightBGColor: #404040; - qproperty-CurrentRowBgColor: #506082; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-BGColor: #484848; - qproperty-VerticalLineColor: #787878; - qproperty-KeyFrameColor: #995d1d; - qproperty-KeyFrameBorderColor: #c9b04b; - qproperty-SelectedKeyFrameColor: #978056; - qproperty-InBetweenColor: #666250; - qproperty-InBetweenBorderColor: #cdcec8; - qproperty-SelectedInBetweenColor: #7e8079; - qproperty-SelectedEmptyColor: #6c6c6c; - qproperty-SelectedSceneRangeEmptyColor: #757575; - qproperty-TextColor: #e6e6e6; - qproperty-ColumnHeaderBorderColor: #8e8e8e; - qproperty-SelectedColumnTextColor: #e66464; -} -#keyFrameNavigator { - background: none; - margin: 0; - padding: 0; - border: 0; -} -#keyFrameNavigator QToolButton { - min-width: 18px; -} -#keyFrameNavigator #PreviousKey { - image: url('imgs/prevkey.png'); -} -#keyFrameNavigator #PreviousKey:disabled { - image: url('imgs/prevkey_disabled.png'); -} -#keyFrameNavigator #NextKey { - image: url('imgs/nextkey.png'); -} -#keyFrameNavigator #NextKey:disabled { - image: url('imgs/nextkey_disabled.png'); -} -#ExpressionField { - background-color: #c8c8c8; - border-style: inset; - border-left-color: #a0a0a0; - border-top-color: #808080; - border-right-color: #ececec; - border-bottom-color: #ffffff; - border-width: 2px; - border-radius: 2px; - margin: 0px; -} -#FunctionSegmentViewerLinkButton { - border: 2px; - margin: 0px; - background-image: url("imgs/segment_unlinked.png"); - background-color: #7b7b7b; - border-style: outset; - border-left-color: #9f9f9f; - border-top-color: #b3b3b3; - border-right-color: #535353; - border-bottom-color: #333333; -} -#FunctionSegmentViewerLinkButton:checked { - background-image: url("imgs/segment_linked.png"); - background-color: #7b7b7b; - border-style: inset; - border-left-color: #535353; - border-top-color: #333333; - border-right-color: #9f9f9f; - border-bottom-color: #b3b3b3; -} -#FunctionSegmentViewerLinkButton:disabled { - background-image: url("imgs/segment_disabled.png"); - background-color: #626262; - border-style: outset; - border-left-color: #868686; - border-top-color: #9a9a9a; - border-right-color: #3a3a3a; - border-bottom-color: #1a1a1a; - border: 1px; -} -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel { - color: #a8bee7; -} -/*------ Cleanup Settings------*/ -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#CameraSettingsButton { - padding: 2px; - border: 0px; -} -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; -} -#CameraSettingsRadioButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover.png"); -} -#CameraSettingsDPI { - color: #a8bee7; -} -#CameraSettingsRadioButton_Small { - padding: 2px; -} -#CameraSettingsRadioButton_Small::indicator { - width: 11px; - height: 21px; -} -#CameraSettingsRadioButton_Small::indicator:checked { - image: url("imgs/cam_lock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked { - image: url("imgs/cam_unlock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover_small.png"); -} -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("imgs/fsp_released.png"); -} -#ForceSquaredPixelButton:hover { - image: url("imgs/fsp_hover.png"); -} -#ForceSquaredPixelButton:checked { - image: url("imgs/fsp_pressed.png"); -} -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; - /*space between button and text*/ -} -#EditToolLockButton::indicator { - border-width: 0px; - width: 21px; - height: 21px; -} -#EditToolLockButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#EditToolLockButton::indicator:unchecked:hover { - image: url("imgs/cam_unlock_hover.png"); -} -#EditToolLockButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#EditToolLockButton::indicator:checked:hover { - image: url("imgs/cam_lock_hover.png"); -} -IconViewField { - qproperty-ScalePegPixmap: url("imgs/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("imgs/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("imgs/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("imgs/selectiontool_thickness.png"); -} -PopupButton::menu-indicator { - image: url("imgs/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; -} -PopupButton::menu-indicator:disabled { - image: url("imgs/down_arrow_disabled.png"); -} -#Cap, -#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; - max-width: 32px; -} -#Cap QMenu, -#Join QMenu { - min-width: 18px; - max-width: 18px; -} -#Cap QMenu::item, -#Join QMenu::item { - min-width: 16px; - max-width: 16px; - padding: 0px; -} -/*------ Script Console ------*/ -#ScriptConsole { - border: 1px inset; - background-color: #dcdcdc; - color: black; - font-family: "Courier"; -} -/*------ Topbar and Menubar of the MainWindow ------*/ -#TopBar { - height: 22px; - background-color: #3b3b3b; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background-color: #484848; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("imgs/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; -} -#TopBarTab::tab { - margin-left: 5px; - margin-right: 5px; - margin-top: 1px; - margin-bottom: 1px; - padding-left: 8px; - padding-right: 8px; - padding-top: 1px; - padding-bottom: 1px; - background-color: #555555; - border: 1px solid white; -} -#TopBarTab::tab:selected { - background-color: #5a8c78; -} -#TopBarTab::tab:hover { - background-color: #78785a; -} -#StackedMenuBar { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#DockSeparator { - background-color: #626262; - border-style: outset; - border-left-color: #868686; - border-top-color: #9a9a9a; - border-right-color: #3a3a3a; - border-bottom-color: #1a1a1a; - border-width: 1; -} -#TDockPlaceholder { - background-color: #b9f000; -} -/*------ Popups -------*/ -QDialog #dialogButtonFrame { - background-color: #2f2f2f; -} -#SceneSettings QLabel { - color: #a8bee7; -} -#PreferencesPopup QListWidget { - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - border-width: 2px; - alternate-background-color: #555555; - font-size: 14px; -} -#PreferencesPopup QListWidget::item { - padding: 3px; -} -#PreferencesPopup QListWidget::item:selected { - background-color: #80a0dc; - color: black; -} -#PreferencesPopup QListWidget::item:hover { - background-color: #626262; -} -#OutputSettingsBox { - border: 1px solid #80a0dc; -} -#OutputSettingsLabel { - color: #a8bee7; -} -#OutputSettingsCameraBox { - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - border-width: 2px; -} -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#OutputSettingsShowButton:checked { - image: url("imgs/minus.png"); -} -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: #9b9b9b; - qproperty-LightLineEdgeColor: #484848; - qproperty-DarkLineColor: #2f2f2f; - qproperty-MiddleLineColor: #000000; - qproperty-HandleLeftPixmap: url("imgs/h_slider_left.png"); - qproperty-HandleRightPixmap: url("imgs/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("imgs/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("imgs/h_slider_right_disabled.png"); -} -#FxSettingsLabel { - color: #a0e680; -} -#FxSettings { - border-width: 0px; - border-bottom: 3px double #404040; -} -#FxSettingsHelpButton { - color: #a0c8ff; -} -#MatchLineButton { - background-color: #626262; -} -#MatchLineButton::pressed { - background-color: #949494; -} -#LargeSizedText { - font-size: 17px; -} -#GearButton { - qproperty-icon: url("imgs/gear.png"); -} -#SubfolderButton { - qproperty-icon: url("imgs/subfolder.png"); -} -#StartupLabel { - padding: 3px; -} -#StartupLabel:hover { - background-color: #626262; -} -#WordButton { - font-size: 12px; - color: black; - background-color: #c0c0c0; - border-style: outset; - border-left-color: white; - border-top-color: white; - border-right-color: black; - border-bottom-color: black; - border-width: 1px; - border-radius: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#WordButton:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -#WordButton:hover { - background-color: #faffa2; -} -#WordButton:hover:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} diff --git a/stuff/config/qss/gray_072/gray_072_mac.qss b/stuff/config/qss/gray_072/gray_072_mac.qss deleted file mode 100644 index 7c05e39..0000000 --- a/stuff/config/qss/gray_072/gray_072_mac.qss +++ /dev/null @@ -1,1460 +0,0 @@ -/* LESS Definitions */ -/*Image URL*/ -/*Text Color*/ -/*Used in Dialog border*/ -/*Color for Selected Item*/ -/*Color for title texts*/ -/* color adjustable by delta */ -/*set padding*/ -/*set margin*/ -/* ------ Qt Widgets Common Difinitions ------ */ -QWidget { - color: #e6e6e6; - background-color: #484848; -} -QWidget:disabled { - color: #808080; -} -QFrame { - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog { - background-color: #484848; -} -QMainWindow::separator { - background: yellow; - width: 10px; - /* when vertical */ - height: 10px; - /* when horizontal */ -} -QToolTip, -#helpTooltip { - border: 1px solid black; - background-color: #ffffe1; - padding: 2px; - border-radius: 2px; - color: black; -} -QTreeWidget { - border-width: 1px; - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - alternate-background-color: #555555; -} -QTreeWidget::item:selected { - background-color: #80a0dc; - color: black; -} -QTreeWidget::item { - color: #e6e6e6; -} -QStatusBar { - background-color: #c0c0c0; -} -QStatusBar::item { - border-width: 0; -} -QStatusBar QLabel { - background-color: #c0c0c0; -} -QStatusBar #StatusBarLabel { - background-color: #ffffff; - padding-left: 3px; - padding-right: 3px; - padding-top: 1px; - padding-bottom: 1px; -} -QMenuBar { - background-color: #3b3b3b; -} -QMenuBar::item:selected { - background-color: #3b3b3b; - border-style: inset; - border-left-color: #131313; - border-top-color: #000000; - border-right-color: #5f5f5f; - border-bottom-color: #737373; - border-width: 1px; -} -QMenu { - background-color: #3b3b3b; -} -QMenu::item:selected { - background: #80a0dc; - color: black; -} -QMenu::item:disabled { - background-color: #555555; - color: #808080; -} -QMenu::item:disabled:selected { - background: #6c7680; -} -QMenu::separator { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - margin-left: 5px; - margin-right: 5px; - margin-top: 2px; - margin-bottom: 2px; - border-width: 1px; - height: 0px; -} -QToolBar { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; -} -QToolBar::separator:horizontal { - image: url("imgs/bottomseparator.png"); -} -QToolBar::separator:vertical { - image: url("imgs/separator.png"); -} -QToolBar QToolButton { - background-color: #484848; - /*margin: 2px 1px 1px 1px;*/ - margin: 3px; - border: 0px; - border-image: none; -} -QToolBar QToolButton:hover { - border-image: url("imgs/over.png") 2; -} -QToolBar QToolButton:checked, -QToolBar QToolButton:pressed { - border-image: url("imgs/click.png") 2; -} -QToolBar QToolButton:disabled { - background-color: #555555; - color: #808080; -} -QToolBar QToolButton::menu-indicator { - image: none; -} -QToolBar QToolButton::menu-button { - border-image: none; - /*background-color: rgb(160,160,160);*/ -} -QToolBar QLabel { - background-color: #484848; - margin-top: 1px; - border-width: 2; -} -QToolBar QToolBar { - border-width: 0px; -} -QLineEdit { - /*darken little bit*/ - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 1px; - border-radius: 2px; -} -QLineEdit:disabled { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; - color: #808080; -} -QComboBox { - /*darken little bit*/ - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 0px; - padding-bottom: 0px; - /*arrow button*/ - /*arrow button triangle*/ -} -QComboBox::drop-down { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-width: 2px; - /*pressed state*/ -} -QComboBox::drop-down:on { - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; -} -QComboBox::down-arrow { - image: url("imgs/combo_down_arrow.png"); -} -QComboBox:disabled { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; - color: #808080; -} -QPushButton { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-width: 1px; - border-radius: 4px; - padding-left: 15px; - padding-right: 15px; - padding-top: 3px; - padding-bottom: 3px; - /*lighten lilttle bit when hover*/ - /*lighten lilttle bit when pressed*/ -} -QPushButton:checked { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; -} -QPushButton:pressed { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; -} -QPushButton:hover { - background-color: #626262; - border-style: outset; - border-left-color: #868686; - border-top-color: #9a9a9a; - border-right-color: #3a3a3a; - border-bottom-color: #1a1a1a; -} -QPushButton:hover:pressed { - background-color: #626262; - border-style: inset; - border-left-color: #3a3a3a; - border-top-color: #1a1a1a; - border-right-color: #868686; - border-bottom-color: #9a9a9a; -} -QPushButton:hover:checked { - background-color: #555555; - border-style: inset; - border-left-color: #2d2d2d; - border-top-color: #0d0d0d; - border-right-color: #797979; - border-bottom-color: #8d8d8d; -} -QPushButton:disabled { - background-color: #555555; - border-style: outset; - border-left-color: #797979; - border-top-color: #8d8d8d; - border-right-color: #2d2d2d; - border-bottom-color: #0d0d0d; - color: #505050; -} -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -QCheckBox:hover { - background-color: #626262; -} -QCheckBox:disabled { - color: #505050; -} -QCheckBox::indicator, -QGroupBox::indicator { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 2px; -} -QCheckBox::indicator:disabled, -QGroupBox::indicator:disabled { - background-color: #555555; - border-style: inset; - border-left-color: #2d2d2d; - border-top-color: #0d0d0d; - border-right-color: #797979; - border-bottom-color: #8d8d8d; -} -QCheckBox::indicator:checked, -QGroupBox::indicator:checked { - image: url("imgs/check_indicator.png"); -} -QCheckBox::indicator:checked:disabled, -QGroupBox::indicator:checked:disabled { - image: url("imgs/check_indicator_disabled.png"); -} -QSlider::groove:horizontal { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 1px; - height: 1px; - margin: 1px; -} -QSlider::handle:horizontal { - background-color: #626262; - border-style: outset; - border-left-color: #868686; - border-top-color: #9a9a9a; - border-right-color: #3a3a3a; - border-bottom-color: #1a1a1a; - border-width: 2px; - width: 5px; - margin: -8px 0px; - /* expand outside the groove */ -} -QGroupBox { - border: 1px solid #e6e6e6; - margin: 6px 0 0 0; - padding: 5px 3px; -} -QGroupBox::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; -} -QGroupBox:disabled { - color: #202020; - border-color: #808080; -} -QSplitter::handle { - background-color: #888888; -} -/* ------ Toonz Classes Difinitions ------ */ -TPanel { - /*Used for dialog border*/ - background-color: #202020; -} -TPanelTitleBar { - qproperty-BorderPixmap: url("imgs/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("imgs/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("imgs/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("imgs/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: #c0c0c0; - qproperty-ActiveTitleColor: #ffffff; -} -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer { - margin: 0px; - padding: 0px; -} -PaletteViewer #ToolBarContainer QToolBar { - border: 1px; - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; -} -PaletteViewer #ToolBarContainer QToolBar QToolButton { - margin: 0px; - padding: 1px; - border: 0px; -} -PaletteViewer #ToolBarContainer #keyFrameNavigator { - border: 0px; -} -#TabBarContainer { - qproperty-BottomAboveLineColor: #787878; - qproperty-BottomBelowLineColor: #ffffff; - background-color: #222222; -} -#TabBarContainer #ScrollLeftButton, -#TabBarContainer #ScrollRightButton { - margin-top: 1px; -} -#PaletteTabBar, -#FxSettingsTabBar { - background-color: #222222; -} -#PaletteTabBar::tab, -#FxSettingsTabBar::tab { - padding-left: 7px; - padding-right: 7px; - padding-top: 2px; - padding-bottom: 2px; - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - background-color: #3b3b3b; - border-style: outset; - border-left-color: #5f5f5f; - border-top-color: #737373; - border-right-color: #131313; - border-bottom-color: #000000; - /* for non selected tab */ - margin-top: 2px; - /* for non selected tab */ - border-bottom-color: #808080; - /* for non selected tab */ -} -#PaletteTabBar::tab:selected, -#FxSettingsTabBar::tab:selected { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - margin-top: 0px; - border-bottom-color: #484848; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; -} -#PaletteTabBar::tab:first:selected, -#FxSettingsTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#PaletteTabBar::tab:last:selected, -#FxSettingsTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#PaletteTabBar::tab:only-one, -#FxSettingsTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#PaletteLockButton:hover { - border-image: url("imgs/over_yellow.png") 2; -} -#PaletteLockButton:checked { - border-image: url("imgs/click_pink.png") 2; -} -#PaletteLockButton:checked:hover { - border-image: url("imgs/over_pressed_yellow.png") 2; -} -#PageViewer { - qproperty-TextColor: #e6e6e6; -} -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - background-color: #222222; -} -#StyleEditorTabBar::tab { - padding-left: 2px; - padding-right: 2px; - padding-top: 1px; - padding-bottom: 1px; - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - background-color: #3b3b3b; - border-style: outset; - border-left-color: #5f5f5f; - border-top-color: #737373; - border-right-color: #131313; - border-bottom-color: #000000; - /* for non selected tab */ - border-bottom-color: #808080; - /* for non selected tab */ -} -#StyleEditorTabBar::tab:selected { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-bottom-color: #484848; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; -} -#StyleEditorTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#StyleEditorTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#StyleEditorTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#HexagonalColorWheel { - qproperty-BGColor: #484848; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; -} -#colorSlider::handle:horizontal { - width: 8px; - margin: -8px -4px; -} -#colorSliderAddButton, -#colorSliderSubButton { - border-image: url("imgs/colorslider_button_bg.png") 2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} -#colorSliderAddButton { - image: url("imgs/colorslider_add.png"); -} -#colorSliderAddButton:pressed { - image: url("imgs/colorslider_add_pressed.png"); -} -#colorSliderSubButton { - image: url("imgs/colorslider_sub.png"); -} -#colorSliderSubButton:pressed { - image: url("imgs/colorslider_sub_pressed.png"); -} -#PlainColorPageParts { - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-top-width: 1px; - border-bottom-width: 1px; -} -#colorSliderLabel, -#colorSliderField { - font-size: 14px; -} -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: #e1e1e1; -} -DvScrollWidget > QPushButton:hover { - background-color: #f5f5f5; -} -DvScrollWidget > QPushButton:pressed { - background-color: #d7d7d7; -} -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} -#ScrollLeftButton { - image: url("imgs/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("imgs/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("imgs/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("imgs/down_arrow_black.png"); - border-top: 1px solid black; -} -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - background-color: #222222; -} -#ViewerPanel #ToolBarContainer { - border-top: 1px solid #808080; - margin-top: 1px; - padding-top: 3px; -} -FlipBook #ToolBarContainer { - border-top: 1px solid #808080; - margin-top: 1px; - padding-top: 3px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} -#ViewerFpsSlider { - background-color: #626262; - margin-left: 19px; - margin-right: 19px; - margin-top: 0px; - margin-bottom: 0px; - border: 1px solid black; - height: 21px; -} -#ViewerFpsSlider::handle { - border-image: url("imgs/handle_border.png") 6; - border-width: 6px; - image: none; - min-width: 5px; -} -#ViewerFpsSlider::add-line { - image: url("imgs/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::add-line:pressed { - image: url("imgs/fpssb_g_rarrow_pressed.png"); -} -#ViewerFpsSlider::sub-line { - image: url("imgs/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::sub-line:pressed { - image: url("imgs/fpssb_g_larrow_pressed.png"); -} -#FlipConsolePlayToolBar { - border: none; -} -#FlipConsolePlayToolBar QToolButton { - height: 14px; -} -FlipSlider { - qproperty-PBHeight: 20; - qproperty-PBOverlay: url("imgs/flipslider.png"); - qproperty-PBMarker: url("imgs/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-notStartedColor: #cc2222; - qproperty-startedColor: #c88080; - qproperty-baseColor: #626262; -} -Ruler { - qproperty-ParentBGColor: #303030; - qproperty-ScaleColor: #e6e6e6; -} -#ComboViewerToolOptions { - border: 1px; - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; -} -#RulerToolOptionValues { - color: black; -} -/*-----------File Browser------------*/ -#DirTreeView, -#FunctionEditorTree, -#ShortcutTree, -#FxTreeView { - alternate-background-color: #555555; - border-width: 1px; - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - margin: 0px; -} -#DirTreeView::branch:adjoins-item { - border-image: url("imgs/tree_branch-end.png") 0; -} -#DirTreeView::branch:has-siblings { - border-image: url("imgs/tree_vline.png") 0; -} -#DirTreeView::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree_branch-more.png") 0; -} -#DirTreeView::branch:has-children:closed { - border-image: none; - image: url("imgs/tree_branch-closed_nosib.png"); -} -#DirTreeView::branch:has-children:open { - border-image: none; - image: url("imgs/tree_branch-open_nosib.png"); -} -#DirTreeView::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree_branch-closed.png"); -} -#DirTreeView::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree_branch-open.png"); -} -DvItemViewerPanel { - qproperty-TextColor: #e6e6e6; - qproperty-AlternateBackground: #555555; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #96e6e6; - qproperty-SelectedItemBackground: #80a0dc; -} -DvDirTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-SelectedTextColor: black; - qproperty-FolderTextColor: #96e6e6; - qproperty-SelectedFolderTextColor: #001e00; - qproperty-SelectedItemBackground: #80a0dc; - alternate-background-color: #555555; -} -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid #e6e6e6; -} -#TitleTxtLabel { - color: #a8bee7; -} -#PsdSettingsGroupBox { - border: 1px solid #80a0dc; -} -#FileDoesNotExistLabel { - color: #ff3232; -} -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#CleanupSettingsShowButton:checked, -#LoadLevelShowButton:checked, -#FxSettingsPreviewShowButton:checked { - image: url("imgs/minus.png"); -} -ParamsPage { - qproperty-TextColor: #e6e6e6; -} -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea { - border: 0px; -} -#FunctionSegmentViewer { - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - border-width: 2px; -} -#xsheetArea, -#ScrollArea { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 2px; -} -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: #e6e678; -} -#xsheetColumnAreaMenu_Lock { - background-color: #f5f5f5; -} -#xsheetColumnAreaMenu_Camstand { - background-color: #ffa480; -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - color: black; -} -#xsheetColumnAreaMenu_Preview:selected, -#xsheetColumnAreaMenu_Lock:selected, -#xsheetColumnAreaMenu_Camstand:selected { - background-color: #000080; -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; -} -#XSheetToolbar { - margin: 0; - padding: 0; - border: 0; -} -#XSheetToolbar::separator:horizontal { - margin-right: 4; - margin-left: 4; -} -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - /* buttons */ -} -QScrollBar:vertical { - width: 16px; - margin-left: 0px; - margin-right: 0px; - margin-top: 16px; - margin-bottom: 16px; -} -QScrollBar:horizontal { - height: 16px; - margin-left: 16px; - margin-right: 16px; - margin-top: 0px; - margin-bottom: 0px; -} -QScrollBar::handle { - border-width: 3; - image-position: center center; -} -QScrollBar::handle:vertical { - border-image: url("imgs/sb_g_vhandle.png") 3; - image: url("imgs/sb_g_vline.png"); - min-height: 40px; -} -QScrollBar::handle:horizontal { - border-image: url("imgs/sb_g_hhandle.png") 3; - image: url("imgs/sb_g_hline.png"); - min-width: 40px; -} -QScrollBar::add-line { - subcontrol-origin: margin; -} -QScrollBar::add-line:vertical { - image: url("imgs/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; -} -QScrollBar::add-line:vertical:pressed { - image: url("imgs/sb_g_downarrow_pressed.png"); -} -QScrollBar::add-line:horizontal { - image: url("imgs/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; -} -QScrollBar::add-line:horizontal:pressed { - image: url("imgs/sb_g_rarrow_pressed.png"); -} -QScrollBar::sub-line { - subcontrol-origin: margin; -} -QScrollBar::sub-line:vertical { - image: url("imgs/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; -} -QScrollBar::sub-line:vertical:pressed { - image: url("imgs/sb_g_uparrow_pressed.png"); -} -QScrollBar::sub-line:horizontal { - image: url("imgs/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; -} -QScrollBar::sub-line:horizontal:pressed { - image: url("imgs/sb_g_larrow_pressed.png"); -} -QScrollBar::add-page, -QScrollBar::sub-page { - background-color: #626262; -} -#noteTextEdit { - color: black; -} -XsheetViewer { - qproperty-TextColor: #e6e6e6; - qproperty-BGColor: #484848; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-VerticalLineColor: #787878; - qproperty-VerticalLineHeadColor: #a0a0a0; - qproperty-PreviewFrameTextColor: #96e6e6; - qproperty-CurrentRowBgColor: #506082; - qproperty-EmptyColumnHeadColor: #606060; - qproperty-SelectedColumnTextColor: #e66464; - qproperty-EmptyCellColor: #404040; - qproperty-NotEmptyColumnColor: #484848; - qproperty-SelectedEmptyCellColor: #6c6c6c; - qproperty-LevelColumnColor: #4c6e4c; - qproperty-LevelColumnBorderColor: #8fb38f; - qproperty-SelectedLevelColumnColor: #6b8c6b; - qproperty-VectorColumnColor: #7b7b4c; - qproperty-VectorColumnBorderColor: #bbbb9a; - qproperty-SelectedVectorColumnColor: #8c8c60; - qproperty-ChildColumnColor: #6a526b; - qproperty-ChildColumnBorderColor: #b1a3b3; - qproperty-SelectedChildColumnColor: #7a617a; - qproperty-FullcolorColumnColor: #657a96; - qproperty-FullcolorColumnBorderColor: #9eb8bb; - qproperty-SelectedFullcolorColumnColor: #8896a7; - qproperty-FxColumnColor: #56553c; - qproperty-FxColumnBorderColor: #95958a; - qproperty-SelectedFxColumnColor: #6a6d5a; - qproperty-ReferenceColumnColor: #616161; - qproperty-ReferenceColumnBorderColor: #a2a2a2; - qproperty-SelectedReferenceColumnColor: #828282; - qproperty-PaletteColumnColor: #3a655f; - qproperty-PaletteColumnBorderColor: #86aca7; - qproperty-SelectedPaletteColumnColor: #5f8581; - qproperty-MeshColumnColor: #684d86; - qproperty-MeshColumnBorderColor: #ba92ef; - qproperty-SelectedMeshColumnColor: #8a75a2; - qproperty-SoundColumnColor: #657456; - qproperty-SoundColumnBorderColor: #a0af7d; - qproperty-SelectedSoundColumnColor: #7f956a; - qproperty-SoundColumnHlColor: #34fe5e; - qproperty-SoundColumnTrackColor: #b6c29d; - qproperty-ColumnHeadPastelizer: #000000; - qproperty-SelectedColumnHead: #506082; - qproperty-LightLightBGColor: #fafafa; - qproperty-LightBGColor: #f0f0f0; - qproperty-DarkBGColor: #e1e1e1; - qproperty-DarkLineColor: #969696; -} -/*------- Schematic ---------*/ -#SchematicBottomFrame { - margin: 0px; - padding: 0px; - background-color: #484848; - border-style: outset; - border-left-color: #6c6c6c; - border-top-color: #808080; - border-right-color: #202020; - border-bottom-color: #000000; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer { - background-color: #373737; -} -/*------ Function Editor ---------*/ -#FunctionParametersPanel { - border: 1px solid #e6e6e6; -} -#FunctionEditorTree::branch:adjoins-item, -#ShortcutTree::branch:adjoins-item { - border-image: url("imgs/tree17_branch-end.png") 0; -} -#FunctionEditorTree::branch:has-siblings, -#ShortcutTree::branch:has-siblings { - border-image: url("imgs/tree17_vline.png") 0; -} -#FunctionEditorTree::branch:has-siblings:adjoins-item, -#ShortcutTree::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree17_branch-more.png") 0; -} -#FunctionEditorTree::branch:has-children:closed, -#ShortcutTree::branch:has-children:closed { - border-image: none; - image: url("imgs/tree17_branch-closed_nosib.png"); -} -#FunctionEditorTree::branch:has-children:open, -#ShortcutTree::branch:has-children:open { - border-image: none; - image: url("imgs/tree17_branch-open_nosib.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:closed, -#ShortcutTree::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree17_branch-closed.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:open, -#ShortcutTree::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree17_branch-open.png"); -} -FunctionPanel { - qproperty-BGColor: #303030; - qproperty-ValueLineColor: #484848; - qproperty-FrameLineColor: #606060; - qproperty-OtherCurvesColor: #808080; - qproperty-RulerBackground: #303030; - qproperty-TextColor: #e6e6e6; - qproperty-SubColor: black; - qproperty-SelectedColor: #a8bee7; -} -FunctionTreeView { - qproperty-TextColor: #e6e6e6; - qproperty-CurrentTextColor: #e66464; -} -SpreadsheetViewer { - qproperty-LightLightBGColor: #404040; - qproperty-CurrentRowBgColor: #506082; - qproperty-LightLineColor: #202020; - qproperty-MarkerLineColor: #1e96c4; - qproperty-BGColor: #484848; - qproperty-VerticalLineColor: #787878; - qproperty-KeyFrameColor: #995d1d; - qproperty-KeyFrameBorderColor: #c9b04b; - qproperty-SelectedKeyFrameColor: #978056; - qproperty-InBetweenColor: #666250; - qproperty-InBetweenBorderColor: #cdcec8; - qproperty-SelectedInBetweenColor: #7e8079; - qproperty-SelectedEmptyColor: #6c6c6c; - qproperty-SelectedSceneRangeEmptyColor: #757575; - qproperty-TextColor: #e6e6e6; - qproperty-ColumnHeaderBorderColor: #8e8e8e; - qproperty-SelectedColumnTextColor: #e66464; -} -#keyFrameNavigator { - background: none; - margin: 0; - padding: 0; - border: 0; -} -#keyFrameNavigator QToolButton { - min-width: 18px; -} -#keyFrameNavigator #PreviousKey { - image: url('imgs/prevkey.png'); -} -#keyFrameNavigator #PreviousKey:disabled { - image: url('imgs/prevkey_disabled.png'); -} -#keyFrameNavigator #NextKey { - image: url('imgs/nextkey.png'); -} -#keyFrameNavigator #NextKey:disabled { - image: url('imgs/nextkey_disabled.png'); -} -#ExpressionField { - background-color: #c8c8c8; - border-style: inset; - border-left-color: #a0a0a0; - border-top-color: #808080; - border-right-color: #ececec; - border-bottom-color: #ffffff; - border-width: 2px; - border-radius: 2px; - margin: 0px; -} -#FunctionSegmentViewerLinkButton { - border: 2px; - margin: 0px; - background-image: url("imgs/segment_unlinked.png"); - background-color: #7b7b7b; - border-style: outset; - border-left-color: #9f9f9f; - border-top-color: #b3b3b3; - border-right-color: #535353; - border-bottom-color: #333333; -} -#FunctionSegmentViewerLinkButton:checked { - background-image: url("imgs/segment_linked.png"); - background-color: #7b7b7b; - border-style: inset; - border-left-color: #535353; - border-top-color: #333333; - border-right-color: #9f9f9f; - border-bottom-color: #b3b3b3; -} -#FunctionSegmentViewerLinkButton:disabled { - background-image: url("imgs/segment_disabled.png"); - background-color: #626262; - border-style: outset; - border-left-color: #868686; - border-top-color: #9a9a9a; - border-right-color: #3a3a3a; - border-bottom-color: #1a1a1a; - border: 1px; -} -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - background-color: #2f2f2f; - border-style: inset; - border-left-color: #060606; - border-top-color: #000000; - border-right-color: #525252; - border-bottom-color: #676767; - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel { - color: #a8bee7; -} -/*------ Cleanup Settings------*/ -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#CameraSettingsButton { - padding: 2px; - border: 0px; -} -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; -} -#CameraSettingsRadioButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover.png"); -} -#CameraSettingsDPI { - color: #a8bee7; -} -#CameraSettingsRadioButton_Small { - padding: 2px; -} -#CameraSettingsRadioButton_Small::indicator { - width: 11px; - height: 21px; -} -#CameraSettingsRadioButton_Small::indicator:checked { - image: url("imgs/cam_lock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked { - image: url("imgs/cam_unlock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover_small.png"); -} -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("imgs/fsp_released.png"); -} -#ForceSquaredPixelButton:hover { - image: url("imgs/fsp_hover.png"); -} -#ForceSquaredPixelButton:checked { - image: url("imgs/fsp_pressed.png"); -} -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; - /*space between button and text*/ -} -#EditToolLockButton::indicator { - border-width: 0px; - width: 21px; - height: 21px; -} -#EditToolLockButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#EditToolLockButton::indicator:unchecked:hover { - image: url("imgs/cam_unlock_hover.png"); -} -#EditToolLockButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#EditToolLockButton::indicator:checked:hover { - image: url("imgs/cam_lock_hover.png"); -} -IconViewField { - qproperty-ScalePegPixmap: url("imgs/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("imgs/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("imgs/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("imgs/selectiontool_thickness.png"); -} -PopupButton::menu-indicator { - image: url("imgs/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid grey; -} -PopupButton::menu-indicator:disabled { - image: url("imgs/down_arrow_disabled.png"); -} -#Cap, -#Join { - padding-left: -8px; - padding-right: 4px; - border-radius: 2px; - min-width: 32px; - max-width: 32px; -} -#Cap QMenu, -#Join QMenu { - min-width: 18px; - max-width: 18px; -} -#Cap QMenu::item, -#Join QMenu::item { - min-width: 16px; - max-width: 16px; - padding: 0px; -} -/*------ Script Console ------*/ -#ScriptConsole { - border: 1px inset; - background-color: #dcdcdc; - color: black; - font-family: "Courier"; -} -/*------ Topbar and Menubar of the MainWindow ------*/ -#TopBar { - height: 22px; - background-color: #3b3b3b; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background-color: #484848; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("imgs/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; -} -#TopBarTab::tab { - margin-left: 5px; - margin-right: 5px; - margin-top: 1px; - margin-bottom: 1px; - padding-left: 8px; - padding-right: 8px; - padding-top: 1px; - padding-bottom: 1px; - background-color: #555555; - border: 1px solid white; -} -#TopBarTab::tab:selected { - background-color: #5a8c78; -} -#TopBarTab::tab:hover { - background-color: #78785a; -} -#StackedMenuBar { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#DockSeparator { - background-color: #626262; - border-style: outset; - border-left-color: #868686; - border-top-color: #9a9a9a; - border-right-color: #3a3a3a; - border-bottom-color: #1a1a1a; - border-width: 1; -} -#TDockPlaceholder { - background-color: #b9f000; -} -/*------ Popups -------*/ -QDialog #dialogButtonFrame { - background-color: #2f2f2f; -} -#SceneSettings QLabel { - color: #a8bee7; -} -#PreferencesPopup QListWidget { - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - border-width: 2px; - alternate-background-color: #555555; - font-size: 14px; -} -#PreferencesPopup QListWidget::item { - padding: 3px; -} -#PreferencesPopup QListWidget::item:selected { - background-color: #80a0dc; - color: black; -} -#PreferencesPopup QListWidget::item:hover { - background-color: #626262; -} -#OutputSettingsBox { - border: 1px solid #80a0dc; -} -#OutputSettingsLabel { - color: #a8bee7; -} -#OutputSettingsCameraBox { - background-color: #484848; - border-style: inset; - border-left-color: #202020; - border-top-color: #000000; - border-right-color: #6c6c6c; - border-bottom-color: #808080; - border-width: 2px; -} -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#OutputSettingsShowButton:checked { - image: url("imgs/minus.png"); -} -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: #9b9b9b; - qproperty-LightLineEdgeColor: #484848; - qproperty-DarkLineColor: #2f2f2f; - qproperty-MiddleLineColor: #000000; - qproperty-HandleLeftPixmap: url("imgs/h_slider_left.png"); - qproperty-HandleRightPixmap: url("imgs/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("imgs/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("imgs/h_slider_right_disabled.png"); -} -#FxSettingsLabel { - color: #a0e680; -} -#FxSettings { - border-width: 0px; - border-bottom: 3px double #404040; -} -#FxSettingsHelpButton { - color: #a0c8ff; -} -#MatchLineButton { - background-color: #626262; -} -#MatchLineButton::pressed { - background-color: #949494; -} -#LargeSizedText { - font-size: 17px; -} -#GearButton { - qproperty-icon: url("imgs/gear.png"); -} -#SubfolderButton { - qproperty-icon: url("imgs/subfolder.png"); -} -#StartupLabel { - padding: 3px; -} -#StartupLabel:hover { - background-color: #626262; -} -#WordButton { - font-size: 12px; - color: black; - background-color: #c0c0c0; - border-style: outset; - border-left-color: white; - border-top-color: white; - border-right-color: black; - border-bottom-color: black; - border-width: 1px; - border-radius: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#WordButton:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -#WordButton:hover { - background-color: #faffa2; -} -#WordButton:hover:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} diff --git a/stuff/config/qss/gray_072/imgs/bottomseparator.png b/stuff/config/qss/gray_072/imgs/bottomseparator.png deleted file mode 100644 index d7268b6..0000000 Binary files a/stuff/config/qss/gray_072/imgs/bottomseparator.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/cam_lock.png b/stuff/config/qss/gray_072/imgs/cam_lock.png deleted file mode 100644 index 26ce32d..0000000 Binary files a/stuff/config/qss/gray_072/imgs/cam_lock.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/cam_lock_hover.png b/stuff/config/qss/gray_072/imgs/cam_lock_hover.png deleted file mode 100644 index 68c9f56..0000000 Binary files a/stuff/config/qss/gray_072/imgs/cam_lock_hover.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/cam_lock_hover_small.png b/stuff/config/qss/gray_072/imgs/cam_lock_hover_small.png deleted file mode 100644 index 7290336..0000000 Binary files a/stuff/config/qss/gray_072/imgs/cam_lock_hover_small.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/cam_lock_small.png b/stuff/config/qss/gray_072/imgs/cam_lock_small.png deleted file mode 100644 index b4b65ae..0000000 Binary files a/stuff/config/qss/gray_072/imgs/cam_lock_small.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/cam_unlock.png b/stuff/config/qss/gray_072/imgs/cam_unlock.png deleted file mode 100644 index 4fbb755..0000000 Binary files a/stuff/config/qss/gray_072/imgs/cam_unlock.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/cam_unlock_hover.png b/stuff/config/qss/gray_072/imgs/cam_unlock_hover.png deleted file mode 100644 index c09e14e..0000000 Binary files a/stuff/config/qss/gray_072/imgs/cam_unlock_hover.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/cam_unlock_hover_small.png b/stuff/config/qss/gray_072/imgs/cam_unlock_hover_small.png deleted file mode 100644 index ef4d94d..0000000 Binary files a/stuff/config/qss/gray_072/imgs/cam_unlock_hover_small.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/cam_unlock_small.png b/stuff/config/qss/gray_072/imgs/cam_unlock_small.png deleted file mode 100644 index 06d5d3a..0000000 Binary files a/stuff/config/qss/gray_072/imgs/cam_unlock_small.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/check_indicator.png b/stuff/config/qss/gray_072/imgs/check_indicator.png deleted file mode 100644 index d9609dd..0000000 Binary files a/stuff/config/qss/gray_072/imgs/check_indicator.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/check_indicator_disabled.png b/stuff/config/qss/gray_072/imgs/check_indicator_disabled.png deleted file mode 100644 index 68a97ee..0000000 Binary files a/stuff/config/qss/gray_072/imgs/check_indicator_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/click.png b/stuff/config/qss/gray_072/imgs/click.png deleted file mode 100644 index 8902c5c..0000000 Binary files a/stuff/config/qss/gray_072/imgs/click.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/click_pink.png b/stuff/config/qss/gray_072/imgs/click_pink.png deleted file mode 100644 index 2927c32..0000000 Binary files a/stuff/config/qss/gray_072/imgs/click_pink.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/colorslider_add.png b/stuff/config/qss/gray_072/imgs/colorslider_add.png deleted file mode 100644 index 34f9b01..0000000 Binary files a/stuff/config/qss/gray_072/imgs/colorslider_add.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/colorslider_add_pressed.png b/stuff/config/qss/gray_072/imgs/colorslider_add_pressed.png deleted file mode 100644 index 44f4265..0000000 Binary files a/stuff/config/qss/gray_072/imgs/colorslider_add_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/colorslider_button_bg.png b/stuff/config/qss/gray_072/imgs/colorslider_button_bg.png deleted file mode 100644 index 3aacfb9..0000000 Binary files a/stuff/config/qss/gray_072/imgs/colorslider_button_bg.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/colorslider_sub.png b/stuff/config/qss/gray_072/imgs/colorslider_sub.png deleted file mode 100644 index 876ceff..0000000 Binary files a/stuff/config/qss/gray_072/imgs/colorslider_sub.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/colorslider_sub_pressed.png b/stuff/config/qss/gray_072/imgs/colorslider_sub_pressed.png deleted file mode 100644 index 41c7788..0000000 Binary files a/stuff/config/qss/gray_072/imgs/colorslider_sub_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/combo_down_arrow.png b/stuff/config/qss/gray_072/imgs/combo_down_arrow.png deleted file mode 100644 index 4cfea8d..0000000 Binary files a/stuff/config/qss/gray_072/imgs/combo_down_arrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/down_arrow_black.png b/stuff/config/qss/gray_072/imgs/down_arrow_black.png deleted file mode 100644 index d9fbc98..0000000 Binary files a/stuff/config/qss/gray_072/imgs/down_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/flipmarker.png b/stuff/config/qss/gray_072/imgs/flipmarker.png deleted file mode 100644 index 806418b..0000000 Binary files a/stuff/config/qss/gray_072/imgs/flipmarker.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/flipslider.png b/stuff/config/qss/gray_072/imgs/flipslider.png deleted file mode 100644 index fd4307b..0000000 Binary files a/stuff/config/qss/gray_072/imgs/flipslider.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/fpssb_g_larrow.png b/stuff/config/qss/gray_072/imgs/fpssb_g_larrow.png deleted file mode 100644 index 601d954..0000000 Binary files a/stuff/config/qss/gray_072/imgs/fpssb_g_larrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/fpssb_g_larrow_pressed.png b/stuff/config/qss/gray_072/imgs/fpssb_g_larrow_pressed.png deleted file mode 100644 index b19817d..0000000 Binary files a/stuff/config/qss/gray_072/imgs/fpssb_g_larrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/fpssb_g_rarrow.png b/stuff/config/qss/gray_072/imgs/fpssb_g_rarrow.png deleted file mode 100644 index 8252db2..0000000 Binary files a/stuff/config/qss/gray_072/imgs/fpssb_g_rarrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/fpssb_g_rarrow_pressed.png b/stuff/config/qss/gray_072/imgs/fpssb_g_rarrow_pressed.png deleted file mode 100644 index 8a432a6..0000000 Binary files a/stuff/config/qss/gray_072/imgs/fpssb_g_rarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/fsp_hover.png b/stuff/config/qss/gray_072/imgs/fsp_hover.png deleted file mode 100644 index 9f651e2..0000000 Binary files a/stuff/config/qss/gray_072/imgs/fsp_hover.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/fsp_pressed.png b/stuff/config/qss/gray_072/imgs/fsp_pressed.png deleted file mode 100644 index 668a7ea..0000000 Binary files a/stuff/config/qss/gray_072/imgs/fsp_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/fsp_released.png b/stuff/config/qss/gray_072/imgs/fsp_released.png deleted file mode 100644 index 14a896e..0000000 Binary files a/stuff/config/qss/gray_072/imgs/fsp_released.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/gear.png b/stuff/config/qss/gray_072/imgs/gear.png deleted file mode 100644 index 7e07631..0000000 Binary files a/stuff/config/qss/gray_072/imgs/gear.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/h_slider_left.png b/stuff/config/qss/gray_072/imgs/h_slider_left.png deleted file mode 100644 index 2f36368..0000000 Binary files a/stuff/config/qss/gray_072/imgs/h_slider_left.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/h_slider_left_disabled.png b/stuff/config/qss/gray_072/imgs/h_slider_left_disabled.png deleted file mode 100644 index 2a53d14..0000000 Binary files a/stuff/config/qss/gray_072/imgs/h_slider_left_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/h_slider_right.png b/stuff/config/qss/gray_072/imgs/h_slider_right.png deleted file mode 100644 index 553ae5a..0000000 Binary files a/stuff/config/qss/gray_072/imgs/h_slider_right.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/h_slider_right_disabled.png b/stuff/config/qss/gray_072/imgs/h_slider_right_disabled.png deleted file mode 100644 index a25b8dd..0000000 Binary files a/stuff/config/qss/gray_072/imgs/h_slider_right_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/handle_border.png b/stuff/config/qss/gray_072/imgs/handle_border.png deleted file mode 100644 index 2ed651a..0000000 Binary files a/stuff/config/qss/gray_072/imgs/handle_border.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/left_arrow_black.png b/stuff/config/qss/gray_072/imgs/left_arrow_black.png deleted file mode 100644 index b89cdcc..0000000 Binary files a/stuff/config/qss/gray_072/imgs/left_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/minus.png b/stuff/config/qss/gray_072/imgs/minus.png deleted file mode 100644 index b03f19a..0000000 Binary files a/stuff/config/qss/gray_072/imgs/minus.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/nextkey.png b/stuff/config/qss/gray_072/imgs/nextkey.png deleted file mode 100644 index ce8ccb4..0000000 Binary files a/stuff/config/qss/gray_072/imgs/nextkey.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/nextkey_disabled.png b/stuff/config/qss/gray_072/imgs/nextkey_disabled.png deleted file mode 100644 index 1f667f2..0000000 Binary files a/stuff/config/qss/gray_072/imgs/nextkey_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/nextkey_over.png b/stuff/config/qss/gray_072/imgs/nextkey_over.png deleted file mode 100644 index 49b0621..0000000 Binary files a/stuff/config/qss/gray_072/imgs/nextkey_over.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/over.png b/stuff/config/qss/gray_072/imgs/over.png deleted file mode 100644 index 231cbbd..0000000 Binary files a/stuff/config/qss/gray_072/imgs/over.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/over_pressed_yellow.png b/stuff/config/qss/gray_072/imgs/over_pressed_yellow.png deleted file mode 100644 index 4705d53..0000000 Binary files a/stuff/config/qss/gray_072/imgs/over_pressed_yellow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/over_yellow.png b/stuff/config/qss/gray_072/imgs/over_yellow.png deleted file mode 100644 index b885b2e..0000000 Binary files a/stuff/config/qss/gray_072/imgs/over_yellow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/plus.png b/stuff/config/qss/gray_072/imgs/plus.png deleted file mode 100644 index e6c4460..0000000 Binary files a/stuff/config/qss/gray_072/imgs/plus.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/prevkey.png b/stuff/config/qss/gray_072/imgs/prevkey.png deleted file mode 100644 index d8f71be..0000000 Binary files a/stuff/config/qss/gray_072/imgs/prevkey.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/prevkey_disabled.png b/stuff/config/qss/gray_072/imgs/prevkey_disabled.png deleted file mode 100644 index fcaaa93..0000000 Binary files a/stuff/config/qss/gray_072/imgs/prevkey_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/prevkey_over.png b/stuff/config/qss/gray_072/imgs/prevkey_over.png deleted file mode 100644 index 47a67ca..0000000 Binary files a/stuff/config/qss/gray_072/imgs/prevkey_over.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/right_arrow_black.png b/stuff/config/qss/gray_072/imgs/right_arrow_black.png deleted file mode 100644 index 8878c62..0000000 Binary files a/stuff/config/qss/gray_072/imgs/right_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_downarrow.png b/stuff/config/qss/gray_072/imgs/sb_g_downarrow.png deleted file mode 100644 index 35fbcc2..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_downarrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_downarrow_pressed.png b/stuff/config/qss/gray_072/imgs/sb_g_downarrow_pressed.png deleted file mode 100644 index 72bba28..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_downarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_hhandle.png b/stuff/config/qss/gray_072/imgs/sb_g_hhandle.png deleted file mode 100644 index 52b54d6..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_hhandle.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_hline.png b/stuff/config/qss/gray_072/imgs/sb_g_hline.png deleted file mode 100644 index 7b17872..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_hline.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_larrow.png b/stuff/config/qss/gray_072/imgs/sb_g_larrow.png deleted file mode 100644 index a12a5f5..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_larrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_larrow_pressed.png b/stuff/config/qss/gray_072/imgs/sb_g_larrow_pressed.png deleted file mode 100644 index c9b777b..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_larrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_ls_vhandle.png b/stuff/config/qss/gray_072/imgs/sb_g_ls_vhandle.png deleted file mode 100644 index 4f1cf91..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_ls_vhandle.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_rarrow.png b/stuff/config/qss/gray_072/imgs/sb_g_rarrow.png deleted file mode 100644 index 61ac6c9..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_rarrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_rarrow_pressed.png b/stuff/config/qss/gray_072/imgs/sb_g_rarrow_pressed.png deleted file mode 100644 index d7cf6bb..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_rarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_uparrow.png b/stuff/config/qss/gray_072/imgs/sb_g_uparrow.png deleted file mode 100644 index d9daacc..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_uparrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_uparrow_pressed.png b/stuff/config/qss/gray_072/imgs/sb_g_uparrow_pressed.png deleted file mode 100644 index 6cec977..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_uparrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_vhandle.png b/stuff/config/qss/gray_072/imgs/sb_g_vhandle.png deleted file mode 100644 index bc3c613..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_vhandle.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/sb_g_vline.png b/stuff/config/qss/gray_072/imgs/sb_g_vline.png deleted file mode 100644 index 4af44f9..0000000 Binary files a/stuff/config/qss/gray_072/imgs/sb_g_vline.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/segment_disabled.png b/stuff/config/qss/gray_072/imgs/segment_disabled.png deleted file mode 100644 index 1829d5f..0000000 Binary files a/stuff/config/qss/gray_072/imgs/segment_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/segment_linked.png b/stuff/config/qss/gray_072/imgs/segment_linked.png deleted file mode 100644 index 004fbb8..0000000 Binary files a/stuff/config/qss/gray_072/imgs/segment_linked.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/segment_unlinked.png b/stuff/config/qss/gray_072/imgs/segment_unlinked.png deleted file mode 100644 index c37b0ea..0000000 Binary files a/stuff/config/qss/gray_072/imgs/segment_unlinked.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/selectiontool_position.png b/stuff/config/qss/gray_072/imgs/selectiontool_position.png deleted file mode 100644 index 9b5b591..0000000 Binary files a/stuff/config/qss/gray_072/imgs/selectiontool_position.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/selectiontool_rotation.png b/stuff/config/qss/gray_072/imgs/selectiontool_rotation.png deleted file mode 100644 index fb8b3a6..0000000 Binary files a/stuff/config/qss/gray_072/imgs/selectiontool_rotation.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/selectiontool_scalepeg.png b/stuff/config/qss/gray_072/imgs/selectiontool_scalepeg.png deleted file mode 100644 index 1880b02..0000000 Binary files a/stuff/config/qss/gray_072/imgs/selectiontool_scalepeg.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/selectiontool_thickness.png b/stuff/config/qss/gray_072/imgs/selectiontool_thickness.png deleted file mode 100644 index 2f906cc..0000000 Binary files a/stuff/config/qss/gray_072/imgs/selectiontool_thickness.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/separator.png b/stuff/config/qss/gray_072/imgs/separator.png deleted file mode 100644 index 7e80177..0000000 Binary files a/stuff/config/qss/gray_072/imgs/separator.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/separator_h.png b/stuff/config/qss/gray_072/imgs/separator_h.png deleted file mode 100644 index 72cc296..0000000 Binary files a/stuff/config/qss/gray_072/imgs/separator_h.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/separator_v.png b/stuff/config/qss/gray_072/imgs/separator_v.png deleted file mode 100644 index b6738fb..0000000 Binary files a/stuff/config/qss/gray_072/imgs/separator_v.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/subfolder.png b/stuff/config/qss/gray_072/imgs/subfolder.png deleted file mode 100644 index 6c95142..0000000 Binary files a/stuff/config/qss/gray_072/imgs/subfolder.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/topbar_bg.png b/stuff/config/qss/gray_072/imgs/topbar_bg.png deleted file mode 100644 index 24b1cab..0000000 Binary files a/stuff/config/qss/gray_072/imgs/topbar_bg.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border.png b/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border.png deleted file mode 100644 index fd7ed7b..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_active.png b/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_active.png deleted file mode 100644 index c3de269..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_active.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_float.png b/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_float.png deleted file mode 100644 index e59f8c7..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_float.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_float_active.png b/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_float_active.png deleted file mode 100644 index 5dae5f7..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tpaneltitlebar_border_float_active.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree17_branch-closed.png b/stuff/config/qss/gray_072/imgs/tree17_branch-closed.png deleted file mode 100644 index 24dccca..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree17_branch-closed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree17_branch-closed_nosib.png b/stuff/config/qss/gray_072/imgs/tree17_branch-closed_nosib.png deleted file mode 100644 index ec893be..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree17_branch-closed_nosib.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree17_branch-end.png b/stuff/config/qss/gray_072/imgs/tree17_branch-end.png deleted file mode 100644 index e183fbe..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree17_branch-end.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree17_branch-more.png b/stuff/config/qss/gray_072/imgs/tree17_branch-more.png deleted file mode 100644 index 58d9817..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree17_branch-more.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree17_branch-open.png b/stuff/config/qss/gray_072/imgs/tree17_branch-open.png deleted file mode 100644 index ac0123b..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree17_branch-open.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree17_branch-open_nosib.png b/stuff/config/qss/gray_072/imgs/tree17_branch-open_nosib.png deleted file mode 100644 index 0fca9ab..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree17_branch-open_nosib.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree17_vline.png b/stuff/config/qss/gray_072/imgs/tree17_vline.png deleted file mode 100644 index f7e537d..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree17_vline.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree_branch-closed.png b/stuff/config/qss/gray_072/imgs/tree_branch-closed.png deleted file mode 100644 index cbd2c3c..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree_branch-closed.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree_branch-closed_nosib.png b/stuff/config/qss/gray_072/imgs/tree_branch-closed_nosib.png deleted file mode 100644 index 57823a5..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree_branch-closed_nosib.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree_branch-end.png b/stuff/config/qss/gray_072/imgs/tree_branch-end.png deleted file mode 100644 index d46f5fa..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree_branch-end.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree_branch-more.png b/stuff/config/qss/gray_072/imgs/tree_branch-more.png deleted file mode 100644 index e41302e..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree_branch-more.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree_branch-open.png b/stuff/config/qss/gray_072/imgs/tree_branch-open.png deleted file mode 100644 index 5f8cfbc..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree_branch-open.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree_branch-open_nosib.png b/stuff/config/qss/gray_072/imgs/tree_branch-open_nosib.png deleted file mode 100644 index 8a633e0..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree_branch-open_nosib.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/tree_vline.png b/stuff/config/qss/gray_072/imgs/tree_vline.png deleted file mode 100644 index 64a5b6f..0000000 Binary files a/stuff/config/qss/gray_072/imgs/tree_vline.png and /dev/null differ diff --git a/stuff/config/qss/gray_072/imgs/up_arrow_black.png b/stuff/config/qss/gray_072/imgs/up_arrow_black.png deleted file mode 100644 index 6c27909..0000000 Binary files a/stuff/config/qss/gray_072/imgs/up_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/gray_128.less b/stuff/config/qss/gray_128/gray_128.less deleted file mode 100644 index 09cf7ec..0000000 --- a/stuff/config/qss/gray_128/gray_128.less +++ /dev/null @@ -1,1278 +0,0 @@ -// out: gray_128.qss -/* LESS Definitions */ - -/*Image URL*/ -@image_url: "imgs"; - -@m_baseBG: rgb(128,128,128); -@m_base_lightH: rgb(230,230,230); -@m_base_lightV: rgb(230,230,230); -@m_base_darkH: rgb(64,64,64); -@m_base_darkV: rgb(64,64,64); - -/* color adjustable by delta */ -.baseBG(@dark: 0%){ - background-color: darken(@m_baseBG, @dark); -} -.baseBG(light, @light: 0%){ - background-color: lighten(@m_baseBG, @light); -} -.set_border_color(@lefttop, @rightbottom){ - border-left-color: @lefttop; - border-top-color: @lefttop; - border-right-color: @rightbottom; - border-bottom-color: @rightbottom; -} -.base_inset(@dark: 0%){ - .baseBG(@dark); - border-style: inset; - border-left-color: darken(@m_base_darkH, @dark); - border-top-color: darken(@m_base_darkV, @dark); - border-right-color: darken(@m_base_lightH, @dark); - border-bottom-color: darken(@m_base_lightV, @dark); -} -.base_inset(light, @light: 0%){ - .baseBG(light, @light); - border-style: inset; - border-left-color: lighten(@m_base_darkH, @light); - border-top-color: lighten(@m_base_darkV, @light); - border-right-color: lighten(@m_base_lightH, @light); - border-bottom-color: lighten(@m_base_lightV, @light); -} - -.base_outset(@dark: 0%){ - .baseBG(@dark); - border-style: outset; - border-left-color: darken(@m_base_lightH, @dark); - border-top-color: darken(@m_base_lightV, @dark); - border-right-color: darken(@m_base_darkH, @dark); - border-bottom-color: darken(@m_base_darkV, @dark); -} -.base_outset(light, @light: 0%){ - .baseBG(light, @light); - border-style: outset; - border-left-color: lighten(@m_base_lightH, @light); - border-top-color: lighten(@m_base_lightV, @light); - border-right-color: lighten(@m_base_darkH, @light); - border-bottom-color: lighten(@m_base_darkV, @light); -} - -/*set padding*/ -.set_padding(@hPad: 0px, @vPad: 0px){ - padding-left: @hPad; - padding-right: @hPad; - padding-top: @vPad; - padding-bottom: @vPad; -} -/*set margin*/ -.set_margin(@hMgn: 0px, @vMgn: 0px) { - margin-left: @hMgn; - margin-right: @hMgn; - margin-top: @vMgn; - margin-bottom: @vMgn; -} - -/* ------ Qt Widgets Common Difinitions ------ */ - -QFrame -{ - .baseBG; - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog -{ - .baseBG; -} - -QMainWindow::separator -{ - background: yellow; - width: 10px; /* when vertical */ - height: 10px; /* when horizontal */ -} - -QToolTip, #helpTooltip -{ - border: 1px solid black; - background-color: rgb(255,255,225); - padding: 2px; - border-radius: 2px; -} -QTreeWidget { - border-width: 1px; - .base_inset; - alternate-background-color: lighten(@m_baseBG, 5%); -} -QStatusBar { - background-color: rgb(192,192,192); - - &::item { - border-width: 0; - } - & QLabel { - background-color: rgb(192,192,192); - } - & #StatusBarLabel { - background-color: rgb(255,255,255); - .set_padding( 3px, 1px ); - } -} -QMenuBar -{ - background: rgb(160,160,160); - color: black; -} - -QMenu -{ - background: rgb(160,160,160); - &::item:selected - { - background: rgb(0,0,128); - color: white; - } -} - -QToolBar -{ - .base_outset; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; - - &::separator:horizontal { - margin_top: 1px; - margin_left: 2px; - margin_right: 2px; - image: url("@{image_url}/bottomseparator.png"); - } - &::separator:vertical { - image: url("@{image_url}/separator.png"); - } - - & QToolButton { - .baseBG; - /*margin: 2px 1px 1px 1px;*/ - margin: 2px; - padding: 0px; - border: 0px; - border-image: none; - &:hover { - border-image: url("@{image_url}/over.png") 2; - } - &:checked, - &:pressed { - border-image: url("@{image_url}/click.png") 2; - } - &:disabled{ - border-image: none; - } - &::menu-indicator - { - image: none; - } - &::menu-button { - border-image: none; - background-color: rgb(160,160,160); - } - } - - & QLabel - { - margin-top: 1px; - border-width: 2; - } - - & QToolBar - { - border-width: 0px; - } -} - -QCheckBox { - &:hover { - .baseBG(light, 10%); - } - &:disabled { - color: rgb(64,64,64); - } -} - -QGroupBox { - border: 1px solid; - margin: 6px 0 0 0; - padding: 5px 3px; - - &::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; - } -} - -/* ------ Toonz Classes Difinitions ------ */ - -/* ------ TPanel ------ */ -TPanelTitleBar{ - qproperty-BorderPixmap: url("@{image_url}/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("@{image_url}/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("@{image_url}/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("@{image_url}/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: rgb(192,192,192); - qproperty-ActiveTitleColor: rgb(255,255,255); -} - -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer -{ - margin: 0px; - padding: 0px; - & QToolBar - { - border: 1px; - .base_outset(); - & QToolButton - { - margin: 0px; - padding: 1px; - border: 0px; - } - } - & #keyFrameNavigator - { - border: 0px; - } -} -#TabBarContainer{ - qproperty-BottomAboveLineColor: rgb(120, 120, 120); - qproperty-BottomBelowLineColor: rgb(255, 255, 255); - .baseBG(15%); - & #ScrollLeftButton, - & #ScrollRightButton{ - margin-top: 1px; - } -} -#PaletteTabBar, -#FxSettingsTabBar{ - .baseBG(15%); - &::tab { - .set_padding( 7px, 2px ); - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - .base_outset(light,20%); /* for non selected tab */ - margin-top: 2px; /* for non selected tab */ - border-bottom-color: @m_base_lightV; /* for non selected tab */ - - &:selected { - .base_outset(light,50%); - margin-top: 0px; - border-bottom-color: @m_baseBG; /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; - } - - &:first:selected { - margin-left: 0; /* the first selected tab has nothing to overlap with on the left */ - } - - &:last:selected { - margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ - } - - &:only-one { - margin: 0; /* if there is only one tab, we don't want overlapping margins */ - } - } -} - -#PaletteLockButton{ - &:hover{ - border-image: url("@{image_url}/over_yellow.png") 2; - } - &:checked{ - border-image: url("@{image_url}/click_pink.png") 2; - &:hover{ - border-image: url("@{image_url}/over_pressed_yellow.png") 2; - } - } -} - -#PageViewer{ - qproperty-TextColor: black; -} - -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - .baseBG(15%); - &::tab{ - .set_padding( 2px, 1px ); - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - .base_outset(light,20%); /* for non selected tab */ - border-bottom-color: @m_base_lightV; /* for non selected tab */ - - &:selected { - .base_outset(light,50%); - border-bottom-color: @m_baseBG; /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; - } - &:first:selected { - margin-left: 0; /* the first selected tab has nothing to overlap with on the left */ - } - &:last:selected { - margin-right: 0; /* the last selected tab has nothing to overlap with on the right */ - } - &:only-one { - margin: 0; /* if there is only one tab, we don't want overlapping margins */ - } - } -} - -#HexagonalColorWheel { - qproperty-BGColor: @m_baseBG; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider { - &::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; - } - &::handle:horizontal { - width: 8px; - margin: -8px -4px; - } -} - -#colorSliderAddButton, -#colorSliderSubButton -{ - border-image: url("@{image_url}/colorslider_button_bg.png")2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} - -#colorSliderAddButton -{ - image: url("@{image_url}/colorslider_add.png"); - &:pressed { - image: url("@{image_url}/colorslider_add_pressed.png"); - } -} - -#colorSliderSubButton -{ - image: url("@{image_url}/colorslider_sub.png"); - &:pressed { - image: url("@{image_url}/colorslider_sub_pressed.png"); - } -} - -#PlainColorPageParts -{ - border-width: 0px; - border-bottom: 1px solid black; - border-top: 1px solid white; -} - -#colorSliderLabel, -#colorSliderField -{ - font-size: 14px; -} - - -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: rgb(225,225,225); - - &:hover { - background-color: rgb(245,245,245); - } - &:pressed { - background-color: rgb(215,215,215); - } -} - -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} - -#ScrollLeftButton { - image: url("@{image_url}/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("@{image_url}/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("@{image_url}/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("@{image_url}/down_arrow_black.png"); - border-top: 1px solid black; -} - -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - .baseBG(15%); - - & #ToolBarContainer - { - border-top: 1px solid @m_base_lightV; - margin-top: 1px; - padding-top: 1px; - } -} - -FlipBook #ToolBarContainer -{ - border-top: 1px solid @m_base_lightV; - margin-top: 1px; - padding-top: 1px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer -{ - & #ScrollLeftButton { - margin-top: 1px; - } - & #ScrollRightButton { - margin-top: 1px; - } -} - -#ViewerFpsSlider -{ - background-color: rgb(192,192,192); - .set_margin(19px, 0px); - border: 1px solid black; - height: 21px; - - &::handle { - border-image: url("@{image_url}/handle_border.png")6; - border-width: 6px; - image: none; - min-width: 5px; - } - &::add-line { - image: url("@{image_url}/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; - &:pressed { - image: url("@{image_url}/fpssb_g_rarrow_pressed.png"); - } - } - &::sub-line { - image: url("@{image_url}/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; - &:pressed { - image: url("@{image_url}/fpssb_g_larrow_pressed.png"); - } - } -} - -#FlipConsolePlayToolBar{ - border: none; - & QToolButton { - height: 14px; - } -} - -FlipSlider { - qproperty-PBHeight: 20; - - qproperty-PBOverlay: url("@{image_url}/flipslider.png"); - qproperty-PBMarker: url("@{image_url}/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-baseColor: rgb(192,192,192); - qproperty-notStartedColor: rgb(204,34,34); - qproperty-startedColor: rgb(200,128,128); - qproperty-finishedColor: rgb(192,192,192); -} - -Ruler { - qproperty-ParentBGColor: rgb(235,235,235); - qproperty-ScaleColor: black; -} - -#ComboViewerToolOptions{ - border: 1px; - .base_outset; -} - -/*-----------File Browser------------*/ -#DirTreeView, #FunctionEditorTree, #ShortcutTree, #FxTreeView -{ - alternate-background-color: lighten(@m_baseBG, 5%); - border-width: 1px; - .base_inset; - margin: 0px; -} -#DirTreeView::branch { - &:adjoins-item { - border-image: url("@{image_url}/tree_branch-end.png") 0; - } - - &:has-siblings { - border-image: url("@{image_url}/tree_vline.png") 0; - &:adjoins-item - { - border-image: url("@{image_url}/tree_branch-more.png") 0; - } - } - &:has-children { - &:closed { - border-image: none; - image: url("@{image_url}/tree_branch-closed_nosib.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree_branch-open_nosib.png"); - } - - &:has-siblings { - &:closed { - border-image: none; - image: url("@{image_url}/tree_branch-closed.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree_branch-open.png"); - } - } - } -} - -DvItemViewerPanel { - qproperty-TextColor: black; - qproperty-AlternateBackground: #8d8d8d; - qproperty-SelectedTextColor: white; - qproperty-FolderTextColor: blue; - qproperty-SelectedItemBackground: rgb(0,0,128); -} - -DvDirTreeView { - qproperty-TextColor: black; - qproperty-SelectedTextColor: white; - qproperty-FolderTextColor: blue; - qproperty-SelectedItemBackground: rgb(0,0,128); - qproperty-SelectedFolderTextColor: yellow; - alternate-background-color: lighten(@m_baseBG, 5%); -} - -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid rgb(20,20,20); -} - -#TitleTxtLabel{ - color: rgb(0,0,64); -} - -#PsdSettingsGroupBox { - border: 1px solid rgb(0,0,64); -} - -#FileDoesNotExistLabel { - color: rgb(128,0,0); -} - -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("@{image_url}/handle_border.png")5; - image: url("@{image_url}/plus.png"); - image-position: center center; - - &:checked { - image: url("@{image_url}/minus.png"); - } -} - -ParamsPage { - qproperty-TextColor: black; -} - -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea -{ - border:0px; -} -#xsheetArea, #ScrollArea, #FunctionSegmentViewer -{ - border-width: 2px; - .base_inset; - margin: 0px; -} - -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: rgb(230,230,120); -} -#xsheetColumnAreaMenu_Lock { - background-color: rgb(245,245,245); -} -#xsheetColumnAreaMenu_Camstand { - background-color: rgb(255,164,128); -} -#xsheetColumnAreaMenu_Preview, -#xsheetColumnAreaMenu_Lock, -#xsheetColumnAreaMenu_Camstand { - &:selected { - background-color: rgb(0,0,128); - } -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; - } - - #XSheetToolbar { - margin: 0; - padding: 0; - border: 0; - &::separator:horizontal { - margin-right: 4; - margin-left: 4; - } - } - -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - - &:vertical { - width: 16px; - .set_margin( 0px, 16px ); - } - &:horizontal { - height: 16px; - .set_margin( 16px, 0px ); - } - - &::handle { - border-width: 3; - image-position: center center; - &:vertical { - border-image: url("@{image_url}/sb_g_vhandle.png")3; - image: url("@{image_url}/sb_g_vline.png"); - min-height: 40px; - } - - &:horizontal { - border-image: url("@{image_url}/sb_g_hhandle.png")3; - image: url("@{image_url}/sb_g_hline.png"); - min-width: 40px; - } - } - /* buttons */ - &::add-line { - subcontrol-origin: margin; - &:vertical { - image: url("@{image_url}/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; - &:pressed { - image: url("@{image_url}/sb_g_downarrow_pressed.png"); - } - } - &:horizontal { - image: url("@{image_url}/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; - &:pressed{ - image: url("@{image_url}/sb_g_rarrow_pressed.png"); - } - } - } - - &::sub-line { - subcontrol-origin: margin; - &:vertical { - image: url("@{image_url}/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; - &:pressed { - image: url("@{image_url}/sb_g_uparrow_pressed.png"); - } - } - &:horizontal { - image: url("@{image_url}/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; - &:pressed{ - image: url("@{image_url}/sb_g_larrow_pressed.png"); - } - } - } - - &::add-page, &::sub-page { - background-color: rgb(160,160,160); - } -} - -XsheetViewer { - qproperty-TextColor: black; - qproperty-BGColor: rgb(164,164,164); - qproperty-LightLineColor: rgb(146,144,146); - qproperty-MarkerLineColor: rgb(0, 255, 246); - qproperty-VerticalLineColor: rgb(0, 0, 0); - qproperty-VerticalLineHeadColor: rgb(0, 0, 0); - qproperty-PreviewFrameTextColor: rgb(0, 0, 255); - qproperty-CurrentRowBgColor: rgb(210,210,210); - - qproperty-EmptyColumnHeadColor: rgb(200,200,200); - qproperty-SelectedColumnTextColor: rgb(230, 100, 100); - - qproperty-EmptyCellColor: rgb(124,124,124); - qproperty-NotEmptyColumnColor: rgb(164,164,164); - qproperty-SelectedEmptyCellColor: rgb(210,210,210); - - qproperty-LevelColumnColor: rgb(127,219,127); - qproperty-LevelColumnBorderColor: rgb(47,82,47); - qproperty-SelectedLevelColumnColor: rgb(191,237,191); - - qproperty-VectorColumnColor: rgb(212,212,133); - qproperty-VectorColumnBorderColor: rgb(79,79,49); - qproperty-SelectedVectorColumnColor: rgb(234,234,194); - - qproperty-ChildColumnColor: rgb(214,154,219); - qproperty-ChildColumnBorderColor: rgb(80,57,82); - qproperty-SelectedChildColumnColor: rgb(235,205,237); - - qproperty-FullcolorColumnColor: rgb(154,214,219); - qproperty-FullcolorColumnBorderColor: rgb(57,80,82); - qproperty-SelectedFullcolorColumnColor: rgb(205,235,237); - - qproperty-FxColumnColor: rgb(130,129,93); - qproperty-FxColumnBorderColor: rgb(48,48,35); - qproperty-SelectedFxColumnColor: rgb(193,192,174); - - qproperty-ReferenceColumnColor: rgb(171,171,171); - qproperty-ReferenceColumnBorderColor: rgb(62,62,62); - qproperty-SelectedReferenceColumnColor: rgb(213,213,213); - - qproperty-PaletteColumnColor: rgb(42,171,154); - qproperty-PaletteColumnBorderColor: rgb(15,62,56); - qproperty-SelectedPaletteColumnColor: rgb(146,221,202); - - qproperty-MeshColumnColor: rgb(200,130,255); - qproperty-MeshColumnBorderColor: rgb(105,70,135); - qproperty-SelectedMeshColumnColor: rgb(216,180,245); - - qproperty-SoundColumnColor: rgb(179,193,135); - qproperty-SoundColumnBorderColor: rgb(99,120,86); - qproperty-SelectedSoundColumnColor: rgb(215,215,180); - qproperty-SoundColumnHlColor: rgb(245,255,230); - qproperty-SoundColumnTrackColor: rgb(90,100,45); - - qproperty-ColumnHeadPastelizer: rgb(255,255,255); - qproperty-SelectedColumnHead: rgb(190,210,240); - - qproperty-LightLightBGColor: rgb(250,250,250); - qproperty-LightBGColor: rgb(240,240,240); - qproperty-DarkBGColor: rgb(225,225,225); - qproperty-DarkLineColor: rgb(150,150,150); -} - -/*------- Schematic ---------*/ -#SchematicBottomFrame -{ - margin: 0px; - padding: 0px; - .base_outset; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer -{ - background-color: rgb(55,55,55); -} - -/*------ Function Editor ---------*/ - -#FunctionParametersPanel -{ - border: 1px solid rgb(20,20,20); -} -#FunctionEditorTree,#ShortcutTree -{ - &::branch { - &:adjoins-item { - border-image: url("@{image_url}/tree17_branch-end.png") 0; - } - - &:has-siblings { - border-image: url("@{image_url}/tree17_vline.png") 0; - &:adjoins-item { - border-image: url("@{image_url}/tree17_branch-more.png") 0; - } - } - - &:has-children { - &:closed { - border-image: none; - image: url("@{image_url}/tree17_branch-closed_nosib.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree17_branch-open_nosib.png"); - } - - &:has-siblings { - &:closed { - border-image: none; - image: url("@{image_url}/tree17_branch-closed.png"); - } - &:open { - border-image: none; - image: url("@{image_url}/tree17_branch-open.png"); - } - } - } - } -} - -FunctionPanel { - qproperty-BGColor: rgb(225,225,225); - qproperty-ValueLineColor: rgb(186,186,186); - qproperty-FrameLineColor: rgb(210,210,210); - qproperty-OtherCurvesColor: rgb(150,150,150); - qproperty-RulerBackground: rgb(255,255,255); - qproperty-TextColor: black; - qproperty-SubColor: white; - qproperty-SelectedColor: blue; -} - -FunctionTreeView { - qproperty-TextColor: black; - qproperty-CurrentTextColor: red; -} - -SpreadsheetViewer { - qproperty-LightLightBGColor: rgb(124,124,124); - qproperty-CurrentRowBgColor: rgb(210,210,210); - qproperty-LightLineColor: rgb(146,144,146); - qproperty-MarkerLineColor: rgb(0, 255, 246); - qproperty-BGColor: rgb(164,164,164); - qproperty-VerticalLineColor: rgb(0, 0, 0); - qproperty-KeyFrameColor: rgb(219,139,54); - qproperty-KeyFrameBorderColor: rgb(82,51,20); - qproperty-SelectedKeyFrameColor: rgb(237,197,155); - qproperty-InBetweenColor: rgb(194,194,176); - qproperty-InBetweenBorderColor: rgb(72,72,65); - qproperty-SelectedInBetweenColor: rgb(225,225,216); - qproperty-SelectedEmptyColor: rgb(190,190,190); - qproperty-SelectedSceneRangeEmptyColor: rgb(210,210,210); - qproperty-TextColor: black; - qproperty-ColumnHeaderBorderColor: rgb(46,47,46); - qproperty-SelectedColumnTextColor: rgb(255, 0, 0); -} -#keyFrameNavigator { - background: none; // Fixes BG overflow - margin: 0; - padding: 0; - border: 0; - & QToolButton { - min-width: 18px; - } - #PreviousKey{ - image: url('@{image_url}/prevkey.png'); - &:disabled{ - image: url('@{image_url}/prevkey_disabled.png'); - } - } - #NextKey{ - image: url('@{image_url}/nextkey.png'); - &:disabled{ - image: url('@{image_url}/nextkey_disabled.png'); - } - } -} - -#ExpressionField -{ - .base_inset; - background-color: white; - border-width: 2px; - margin: 0px; -} -#FunctionSegmentViewerLinkButton -{ - border: 2px; - margin: 0px; - image: url("@{image_url}/segment_unlinked.png"); - .base_outset(light,20%); - &:checked { - image: url("@{image_url}/segment_linked.png"); - .base_inset(light,20%); - } - &:disabled{ - image: url("@{image_url}/segment_disabled.png"); - .base_outset(light,10%); - border: 1px; - } -} - - -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - .base_inset(light, 10%); - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel -{ - color: rgb(0,0,64); -} - -/*------ Cleanup Settings------*/ - -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} - -#CameraSettingsButton -{ - padding: 2px; - border: 0px; -} - -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; - &:checked { - image: url("@{image_url}/cam_lock.png"); - } - &:unchecked { - image: url("@{image_url}/cam_unlock.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover.png"); - } - } -} - -#CameraSettingsDPI{ - color: rgb(0,64,0); -} - -#CameraSettingsRadioButton_Small { - padding: 2px; - &::indicator { - width: 11px; - height: 21px; - &:checked { - image: url("@{image_url}/cam_lock_small.png"); - } - &:unchecked { - image: url("@{image_url}/cam_unlock_small.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover_small.png"); - } - } - } -} - -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("@{image_url}/fsp_released.png"); - - &:hover { - image: url("@{image_url}/fsp_hover.png"); - } - &:checked { - image: url("@{image_url}/fsp_pressed.png"); - } -} - -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; /*space between button and text*/ - &::indicator { - border-width: 0px; - width: 21px; - height: 21px; - &:unchecked { - image: url("@{image_url}/cam_unlock.png"); - &:hover { - image: url("@{image_url}/cam_unlock_hover.png"); - } - } - &:checked { - image: url("@{image_url}/cam_lock.png"); - &:hover { - image: url("@{image_url}/cam_lock_hover.png"); - } - } - } -} - -IconViewField { - qproperty-ScalePegPixmap: url("@{image_url}/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("@{image_url}/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("@{image_url}/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("@{image_url}/selectiontool_thickness.png"); -} - -PopupButton { - &::menu-indicator { - image: url("@{image_url}/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid gray; - } - &::menu-indicator:disabled { - image: url("@{image_url}/down_arrow_disabled.png"); - } -} - -#Cap,#Join { - padding-left: -8px; - padding-right: 4px; - min-width: 32px; max-width: 32px; - & QMenu { - min-width: 18px; max-width: 18px; - &::item { - min-width: 16px; max-width: 16px; - padding: 0px; - } - } -} - -/*------ Script Console ------*/ - -#ScriptConsole { - border: 1px inset; - background-color: rgb(220,220,220); - color: black; - font-family: "Courier"; -} - -/*------ Topbar and Menubar of the MainWindow ------*/ - -#TopBar { - height: 22px; - background-color: rgb(192,192,192); - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background: rgb(160,160,160); - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("@{image_url}/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; - &::tab { - .set_margin(5px, 1px); - .set_padding(8px, 1px); - border: 1px solid black; - background-color: rgb(160,160,160); - &:selected { - background-color: rgb(205,220,192); - } - &:hover { - background-color: rgb(192,192,192); - } - } -} -#StackedMenuBar -{ - background: rgb(160,160,160); - margin: 0px; - border: 0px; - padding: 0px; -} - -#DockSeparator{ - .base_outset(light, 10%); - //border-image: url("@{image_url}/dock_handle_border.png") 2; - border-width: 1; -} - -/*------ Popups -------*/ - -QDialog #dialogButtonFrame { - .baseBG(10%); -} - -#SceneSettings QLabel -{ - color: rgb(0,0,64); -} -#PreferencesPopup QListWidget -{ - .base_inset(light, 20%); - border-width: 2px; - alternate-background-color: #aaaaaa; - font-size: 14px; - &::item{ - padding: 3px; - &:selected{ - background-color: rgb(0,0,128); - color : white; - } - &:hover{ - background-color: rgb(210,210,210); - } - } -} -#OutputSettingsBox { - border:1px solid rgb(0,0,64); -} - -#OutputSettingsLabel { - color: rgb(0,0,64); -} - -#OutputSettingsCameraBox { - .base_inset; - border-width: 2px; -} - -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("@{image_url}/handle_border.png")5; - image: url("@{image_url}/plus.png"); - image-position: center center; - - &:checked - { - image: url("@{image_url}/minus.png"); - } -} - -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: white; - qproperty-LightLineEdgeColor: white; - qproperty-DarkLineColor: rgb(198,198,198); - qproperty-MiddleLineColor: @m_baseBG; - qproperty-HandleLeftPixmap: url("@{image_url}/h_slider_left.png"); - qproperty-HandleRightPixmap: url("@{image_url}/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("@{image_url}/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("@{image_url}/h_slider_right_disabled.png"); -} - -#FxSettingsLabel{ - color: rgb(0,64,0); -} - -#FxSettings{ - border-width: 0px; - border-bottom: 3px double rgb(64,64,64); -} - -#FxSettingsHelpButton{ - background-color: rgb(192,192,192); - color: rgb(0,0,64); - &:hover { - background-color: rgb(220,220,220); - } -} - -#LargeSizedText { - font-size: 17px; -} - -#GearButton { - qproperty-icon: url("@{image_url}/gear.png"); -} - -#SubfolderButton { - qproperty-icon: url("@{image_url}/subfolder.png"); -} - -#StartupLabel { - padding: 3px; - &:hover { - .baseBG(light, 10%); - } -} - -#WordButton { - font-size: 12px; - color: black; - background-color: rgb(192, 192, 192); - border-style: outset; - .set_border_color(white,black); - border-width: 1px; - border-radius: 1px; - .set_padding(3px, 3px); - &:pressed { - background-color: rgb(250, 255, 162); - border-style: inset; - .set_border_color(black,white); - } - &:hover { - background-color: rgb(250, 255, 162); - &:pressed { - background-color: rgb(250, 255, 162); - border-style: inset; - .set_border_color(black,white); - } - } -} \ No newline at end of file diff --git a/stuff/config/qss/gray_128/gray_128.qss b/stuff/config/qss/gray_128/gray_128.qss deleted file mode 100644 index 0343bb8..0000000 --- a/stuff/config/qss/gray_128/gray_128.qss +++ /dev/null @@ -1,1190 +0,0 @@ -/* LESS Definitions */ -/*Image URL*/ -/* color adjustable by delta */ -/*set padding*/ -/*set margin*/ -/* ------ Qt Widgets Common Difinitions ------ */ -QFrame { - background-color: #808080; - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog { - background-color: #808080; -} -QMainWindow::separator { - background: yellow; - width: 10px; - /* when vertical */ - height: 10px; - /* when horizontal */ -} -QToolTip, -#helpTooltip { - border: 1px solid black; - background-color: #ffffe1; - padding: 2px; - border-radius: 2px; -} -QTreeWidget { - border-width: 1px; - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - alternate-background-color: #8d8d8d; -} -QStatusBar { - background-color: #c0c0c0; -} -QStatusBar::item { - border-width: 0; -} -QStatusBar QLabel { - background-color: #c0c0c0; -} -QStatusBar #StatusBarLabel { - background-color: #ffffff; - padding-left: 3px; - padding-right: 3px; - padding-top: 1px; - padding-bottom: 1px; -} -QMenuBar { - background: #a0a0a0; - color: black; -} -QMenu { - background: #a0a0a0; -} -QMenu::item:selected { - background: #000080; - color: white; -} -QToolBar { - background-color: #808080; - border-style: outset; - border-left-color: #e6e6e6; - border-top-color: #e6e6e6; - border-right-color: #404040; - border-bottom-color: #404040; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; -} -QToolBar::separator:horizontal { - margin_top: 1px; - margin_left: 2px; - margin_right: 2px; - image: url("imgs/bottomseparator.png"); -} -QToolBar::separator:vertical { - image: url("imgs/separator.png"); -} -QToolBar QToolButton { - background-color: #808080; - /*margin: 2px 1px 1px 1px;*/ - margin: 2px; - padding: 0px; - border: 0px; - border-image: none; -} -QToolBar QToolButton:hover { - border-image: url("imgs/over.png") 2; -} -QToolBar QToolButton:checked, -QToolBar QToolButton:pressed { - border-image: url("imgs/click.png") 2; -} -QToolBar QToolButton:disabled { - border-image: none; -} -QToolBar QToolButton::menu-indicator { - image: none; -} -QToolBar QToolButton::menu-button { - border-image: none; - background-color: #a0a0a0; -} -QToolBar QLabel { - margin-top: 1px; - border-width: 2; -} -QToolBar QToolBar { - border-width: 0px; -} -QCheckBox:hover { - background-color: #9a9a9a; -} -QCheckBox:disabled { - color: #404040; -} -QGroupBox { - border: 1px solid; - margin: 6px 0 0 0; - padding: 5px 3px; -} -QGroupBox::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; -} -/* ------ Toonz Classes Difinitions ------ */ -/* ------ TPanel ------ */ -TPanelTitleBar { - qproperty-BorderPixmap: url("imgs/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("imgs/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("imgs/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("imgs/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: #c0c0c0; - qproperty-ActiveTitleColor: #ffffff; -} -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer { - margin: 0px; - padding: 0px; -} -PaletteViewer #ToolBarContainer QToolBar { - border: 1px; - background-color: #808080; - border-style: outset; - border-left-color: #e6e6e6; - border-top-color: #e6e6e6; - border-right-color: #404040; - border-bottom-color: #404040; -} -PaletteViewer #ToolBarContainer QToolBar QToolButton { - margin: 0px; - padding: 1px; - border: 0px; -} -PaletteViewer #ToolBarContainer #keyFrameNavigator { - border: 0px; -} -#TabBarContainer { - qproperty-BottomAboveLineColor: #787878; - qproperty-BottomBelowLineColor: #ffffff; - background-color: #5a5a5a; -} -#TabBarContainer #ScrollLeftButton, -#TabBarContainer #ScrollRightButton { - margin-top: 1px; -} -#PaletteTabBar, -#FxSettingsTabBar { - background-color: #5a5a5a; -} -#PaletteTabBar::tab, -#FxSettingsTabBar::tab { - padding-left: 7px; - padding-right: 7px; - padding-top: 2px; - padding-bottom: 2px; - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - background-color: #b3b3b3; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #737373; - border-bottom-color: #737373; - /* for non selected tab */ - margin-top: 2px; - /* for non selected tab */ - border-bottom-color: #e6e6e6; - /* for non selected tab */ -} -#PaletteTabBar::tab:selected, -#FxSettingsTabBar::tab:selected { - background-color: #ffffff; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #c0c0c0; - border-bottom-color: #c0c0c0; - margin-top: 0px; - border-bottom-color: #808080; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; -} -#PaletteTabBar::tab:first:selected, -#FxSettingsTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#PaletteTabBar::tab:last:selected, -#FxSettingsTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#PaletteTabBar::tab:only-one, -#FxSettingsTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#PaletteLockButton:hover { - border-image: url("imgs/over_yellow.png") 2; -} -#PaletteLockButton:checked { - border-image: url("imgs/click_pink.png") 2; -} -#PaletteLockButton:checked:hover { - border-image: url("imgs/over_pressed_yellow.png") 2; -} -#PageViewer { - qproperty-TextColor: black; -} -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - background-color: #5a5a5a; -} -#StyleEditorTabBar::tab { - padding-left: 2px; - padding-right: 2px; - padding-top: 1px; - padding-bottom: 1px; - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - background-color: #b3b3b3; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #737373; - border-bottom-color: #737373; - /* for non selected tab */ - border-bottom-color: #e6e6e6; - /* for non selected tab */ -} -#StyleEditorTabBar::tab:selected { - background-color: #ffffff; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #c0c0c0; - border-bottom-color: #c0c0c0; - border-bottom-color: #808080; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; -} -#StyleEditorTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#StyleEditorTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#StyleEditorTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#HexagonalColorWheel { - qproperty-BGColor: #808080; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; -} -#colorSlider::handle:horizontal { - width: 8px; - margin: -8px -4px; -} -#colorSliderAddButton, -#colorSliderSubButton { - border-image: url("imgs/colorslider_button_bg.png") 2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} -#colorSliderAddButton { - image: url("imgs/colorslider_add.png"); -} -#colorSliderAddButton:pressed { - image: url("imgs/colorslider_add_pressed.png"); -} -#colorSliderSubButton { - image: url("imgs/colorslider_sub.png"); -} -#colorSliderSubButton:pressed { - image: url("imgs/colorslider_sub_pressed.png"); -} -#PlainColorPageParts { - border-width: 0px; - border-bottom: 1px solid black; - border-top: 1px solid white; -} -#colorSliderLabel, -#colorSliderField { - font-size: 14px; -} -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: #e1e1e1; -} -DvScrollWidget > QPushButton:hover { - background-color: #f5f5f5; -} -DvScrollWidget > QPushButton:pressed { - background-color: #d7d7d7; -} -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} -#ScrollLeftButton { - image: url("imgs/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("imgs/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("imgs/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("imgs/down_arrow_black.png"); - border-top: 1px solid black; -} -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - background-color: #5a5a5a; -} -#ViewerPanel #ToolBarContainer { - border-top: 1px solid #e6e6e6; - margin-top: 1px; - padding-top: 1px; -} -FlipBook #ToolBarContainer { - border-top: 1px solid #e6e6e6; - margin-top: 1px; - padding-top: 1px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} -#ViewerFpsSlider { - background-color: #c0c0c0; - margin-left: 19px; - margin-right: 19px; - margin-top: 0px; - margin-bottom: 0px; - border: 1px solid black; - height: 21px; -} -#ViewerFpsSlider::handle { - border-image: url("imgs/handle_border.png") 6; - border-width: 6px; - image: none; - min-width: 5px; -} -#ViewerFpsSlider::add-line { - image: url("imgs/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::add-line:pressed { - image: url("imgs/fpssb_g_rarrow_pressed.png"); -} -#ViewerFpsSlider::sub-line { - image: url("imgs/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::sub-line:pressed { - image: url("imgs/fpssb_g_larrow_pressed.png"); -} -#FlipConsolePlayToolBar { - border: none; -} -#FlipConsolePlayToolBar QToolButton { - height: 14px; -} -FlipSlider { - qproperty-PBHeight: 20; - qproperty-PBOverlay: url("imgs/flipslider.png"); - qproperty-PBMarker: url("imgs/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-baseColor: #c0c0c0; - qproperty-notStartedColor: #cc2222; - qproperty-startedColor: #c88080; - qproperty-finishedColor: #c0c0c0; -} -Ruler { - qproperty-ParentBGColor: #ebebeb; - qproperty-ScaleColor: black; -} -#ComboViewerToolOptions { - border: 1px; - background-color: #808080; - border-style: outset; - border-left-color: #e6e6e6; - border-top-color: #e6e6e6; - border-right-color: #404040; - border-bottom-color: #404040; -} -/*-----------File Browser------------*/ -#DirTreeView, -#FunctionEditorTree, -#ShortcutTree, -#FxTreeView { - alternate-background-color: #8d8d8d; - border-width: 1px; - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - margin: 0px; -} -#DirTreeView::branch:adjoins-item { - border-image: url("imgs/tree_branch-end.png") 0; -} -#DirTreeView::branch:has-siblings { - border-image: url("imgs/tree_vline.png") 0; -} -#DirTreeView::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree_branch-more.png") 0; -} -#DirTreeView::branch:has-children:closed { - border-image: none; - image: url("imgs/tree_branch-closed_nosib.png"); -} -#DirTreeView::branch:has-children:open { - border-image: none; - image: url("imgs/tree_branch-open_nosib.png"); -} -#DirTreeView::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree_branch-closed.png"); -} -#DirTreeView::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree_branch-open.png"); -} -DvItemViewerPanel { - qproperty-TextColor: black; - qproperty-AlternateBackground: #8d8d8d; - qproperty-SelectedTextColor: white; - qproperty-FolderTextColor: blue; - qproperty-SelectedItemBackground: #000080; -} -DvDirTreeView { - qproperty-TextColor: black; - qproperty-SelectedTextColor: white; - qproperty-FolderTextColor: blue; - qproperty-SelectedItemBackground: #000080; - qproperty-SelectedFolderTextColor: yellow; - alternate-background-color: #8d8d8d; -} -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid #141414; -} -#TitleTxtLabel { - color: #000040; -} -#PsdSettingsGroupBox { - border: 1px solid #000040; -} -#FileDoesNotExistLabel { - color: #800000; -} -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#CleanupSettingsShowButton:checked, -#LoadLevelShowButton:checked, -#FxSettingsPreviewShowButton:checked { - image: url("imgs/minus.png"); -} -ParamsPage { - qproperty-TextColor: black; -} -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea { - border: 0px; -} -#xsheetArea, -#ScrollArea, -#FunctionSegmentViewer { - border-width: 2px; - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - margin: 0px; -} -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: #e6e678; -} -#xsheetColumnAreaMenu_Lock { - background-color: #f5f5f5; -} -#xsheetColumnAreaMenu_Camstand { - background-color: #ffa480; -} -#xsheetColumnAreaMenu_Preview:selected, -#xsheetColumnAreaMenu_Lock:selected, -#xsheetColumnAreaMenu_Camstand:selected { - background-color: #000080; -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; -} -#XSheetToolbar { - margin: 0; - padding: 0; - border: 0; -} -#XSheetToolbar::separator:horizontal { - margin-right: 4; - margin-left: 4; -} -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - /* buttons */ -} -QScrollBar:vertical { - width: 16px; - margin-left: 0px; - margin-right: 0px; - margin-top: 16px; - margin-bottom: 16px; -} -QScrollBar:horizontal { - height: 16px; - margin-left: 16px; - margin-right: 16px; - margin-top: 0px; - margin-bottom: 0px; -} -QScrollBar::handle { - border-width: 3; - image-position: center center; -} -QScrollBar::handle:vertical { - border-image: url("imgs/sb_g_vhandle.png") 3; - image: url("imgs/sb_g_vline.png"); - min-height: 40px; -} -QScrollBar::handle:horizontal { - border-image: url("imgs/sb_g_hhandle.png") 3; - image: url("imgs/sb_g_hline.png"); - min-width: 40px; -} -QScrollBar::add-line { - subcontrol-origin: margin; -} -QScrollBar::add-line:vertical { - image: url("imgs/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; -} -QScrollBar::add-line:vertical:pressed { - image: url("imgs/sb_g_downarrow_pressed.png"); -} -QScrollBar::add-line:horizontal { - image: url("imgs/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; -} -QScrollBar::add-line:horizontal:pressed { - image: url("imgs/sb_g_rarrow_pressed.png"); -} -QScrollBar::sub-line { - subcontrol-origin: margin; -} -QScrollBar::sub-line:vertical { - image: url("imgs/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; -} -QScrollBar::sub-line:vertical:pressed { - image: url("imgs/sb_g_uparrow_pressed.png"); -} -QScrollBar::sub-line:horizontal { - image: url("imgs/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; -} -QScrollBar::sub-line:horizontal:pressed { - image: url("imgs/sb_g_larrow_pressed.png"); -} -QScrollBar::add-page, -QScrollBar::sub-page { - background-color: #a0a0a0; -} -XsheetViewer { - qproperty-TextColor: black; - qproperty-BGColor: #a4a4a4; - qproperty-LightLineColor: #929092; - qproperty-MarkerLineColor: #00fff6; - qproperty-VerticalLineColor: #000000; - qproperty-VerticalLineHeadColor: #000000; - qproperty-PreviewFrameTextColor: #0000ff; - qproperty-CurrentRowBgColor: #d2d2d2; - qproperty-EmptyColumnHeadColor: #c8c8c8; - qproperty-SelectedColumnTextColor: #e66464; - qproperty-EmptyCellColor: #7c7c7c; - qproperty-NotEmptyColumnColor: #a4a4a4; - qproperty-SelectedEmptyCellColor: #d2d2d2; - qproperty-LevelColumnColor: #7fdb7f; - qproperty-LevelColumnBorderColor: #2f522f; - qproperty-SelectedLevelColumnColor: #bfedbf; - qproperty-VectorColumnColor: #d4d485; - qproperty-VectorColumnBorderColor: #4f4f31; - qproperty-SelectedVectorColumnColor: #eaeac2; - qproperty-ChildColumnColor: #d69adb; - qproperty-ChildColumnBorderColor: #503952; - qproperty-SelectedChildColumnColor: #ebcded; - qproperty-FullcolorColumnColor: #9ad6db; - qproperty-FullcolorColumnBorderColor: #395052; - qproperty-SelectedFullcolorColumnColor: #cdebed; - qproperty-FxColumnColor: #82815d; - qproperty-FxColumnBorderColor: #303023; - qproperty-SelectedFxColumnColor: #c1c0ae; - qproperty-ReferenceColumnColor: #ababab; - qproperty-ReferenceColumnBorderColor: #3e3e3e; - qproperty-SelectedReferenceColumnColor: #d5d5d5; - qproperty-PaletteColumnColor: #2aab9a; - qproperty-PaletteColumnBorderColor: #0f3e38; - qproperty-SelectedPaletteColumnColor: #92ddca; - qproperty-MeshColumnColor: #c882ff; - qproperty-MeshColumnBorderColor: #694687; - qproperty-SelectedMeshColumnColor: #d8b4f5; - qproperty-SoundColumnColor: #b3c187; - qproperty-SoundColumnBorderColor: #637856; - qproperty-SelectedSoundColumnColor: #d7d7b4; - qproperty-SoundColumnHlColor: #f5ffe6; - qproperty-SoundColumnTrackColor: #5a642d; - qproperty-ColumnHeadPastelizer: #ffffff; - qproperty-SelectedColumnHead: #bed2f0; - qproperty-LightLightBGColor: #fafafa; - qproperty-LightBGColor: #f0f0f0; - qproperty-DarkBGColor: #e1e1e1; - qproperty-DarkLineColor: #969696; -} -/*------- Schematic ---------*/ -#SchematicBottomFrame { - margin: 0px; - padding: 0px; - background-color: #808080; - border-style: outset; - border-left-color: #e6e6e6; - border-top-color: #e6e6e6; - border-right-color: #404040; - border-bottom-color: #404040; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer { - background-color: #373737; -} -/*------ Function Editor ---------*/ -#FunctionParametersPanel { - border: 1px solid #141414; -} -#FunctionEditorTree::branch:adjoins-item, -#ShortcutTree::branch:adjoins-item { - border-image: url("imgs/tree17_branch-end.png") 0; -} -#FunctionEditorTree::branch:has-siblings, -#ShortcutTree::branch:has-siblings { - border-image: url("imgs/tree17_vline.png") 0; -} -#FunctionEditorTree::branch:has-siblings:adjoins-item, -#ShortcutTree::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree17_branch-more.png") 0; -} -#FunctionEditorTree::branch:has-children:closed, -#ShortcutTree::branch:has-children:closed { - border-image: none; - image: url("imgs/tree17_branch-closed_nosib.png"); -} -#FunctionEditorTree::branch:has-children:open, -#ShortcutTree::branch:has-children:open { - border-image: none; - image: url("imgs/tree17_branch-open_nosib.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:closed, -#ShortcutTree::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree17_branch-closed.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:open, -#ShortcutTree::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree17_branch-open.png"); -} -FunctionPanel { - qproperty-BGColor: #e1e1e1; - qproperty-ValueLineColor: #bababa; - qproperty-FrameLineColor: #d2d2d2; - qproperty-OtherCurvesColor: #969696; - qproperty-RulerBackground: #ffffff; - qproperty-TextColor: black; - qproperty-SubColor: white; - qproperty-SelectedColor: blue; -} -FunctionTreeView { - qproperty-TextColor: black; - qproperty-CurrentTextColor: red; -} -SpreadsheetViewer { - qproperty-LightLightBGColor: #7c7c7c; - qproperty-CurrentRowBgColor: #d2d2d2; - qproperty-LightLineColor: #929092; - qproperty-MarkerLineColor: #00fff6; - qproperty-BGColor: #a4a4a4; - qproperty-VerticalLineColor: #000000; - qproperty-KeyFrameColor: #db8b36; - qproperty-KeyFrameBorderColor: #523314; - qproperty-SelectedKeyFrameColor: #edc59b; - qproperty-InBetweenColor: #c2c2b0; - qproperty-InBetweenBorderColor: #484841; - qproperty-SelectedInBetweenColor: #e1e1d8; - qproperty-SelectedEmptyColor: #bebebe; - qproperty-SelectedSceneRangeEmptyColor: #d2d2d2; - qproperty-TextColor: black; - qproperty-ColumnHeaderBorderColor: #2e2f2e; - qproperty-SelectedColumnTextColor: #ff0000; -} -#keyFrameNavigator { - background: none; - margin: 0; - padding: 0; - border: 0; -} -#keyFrameNavigator QToolButton { - min-width: 18px; -} -#keyFrameNavigator #PreviousKey { - image: url('imgs/prevkey.png'); -} -#keyFrameNavigator #PreviousKey:disabled { - image: url('imgs/prevkey_disabled.png'); -} -#keyFrameNavigator #NextKey { - image: url('imgs/nextkey.png'); -} -#keyFrameNavigator #NextKey:disabled { - image: url('imgs/nextkey_disabled.png'); -} -#ExpressionField { - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - background-color: white; - border-width: 2px; - margin: 0px; -} -#FunctionSegmentViewerLinkButton { - border: 2px; - margin: 0px; - image: url("imgs/segment_unlinked.png"); - background-color: #b3b3b3; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #737373; - border-bottom-color: #737373; -} -#FunctionSegmentViewerLinkButton:checked { - image: url("imgs/segment_linked.png"); - background-color: #b3b3b3; - border-style: inset; - border-left-color: #737373; - border-top-color: #737373; - border-right-color: #ffffff; - border-bottom-color: #ffffff; -} -#FunctionSegmentViewerLinkButton:disabled { - image: url("imgs/segment_disabled.png"); - background-color: #9a9a9a; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #5a5a5a; - border-bottom-color: #5a5a5a; - border: 1px; -} -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - background-color: #9a9a9a; - border-style: inset; - border-left-color: #5a5a5a; - border-top-color: #5a5a5a; - border-right-color: #ffffff; - border-bottom-color: #ffffff; - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel { - color: #000040; -} -/*------ Cleanup Settings------*/ -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#CameraSettingsButton { - padding: 2px; - border: 0px; -} -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; -} -#CameraSettingsRadioButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover.png"); -} -#CameraSettingsDPI { - color: #004000; -} -#CameraSettingsRadioButton_Small { - padding: 2px; -} -#CameraSettingsRadioButton_Small::indicator { - width: 11px; - height: 21px; -} -#CameraSettingsRadioButton_Small::indicator:checked { - image: url("imgs/cam_lock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked { - image: url("imgs/cam_unlock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover_small.png"); -} -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("imgs/fsp_released.png"); -} -#ForceSquaredPixelButton:hover { - image: url("imgs/fsp_hover.png"); -} -#ForceSquaredPixelButton:checked { - image: url("imgs/fsp_pressed.png"); -} -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; - /*space between button and text*/ -} -#EditToolLockButton::indicator { - border-width: 0px; - width: 21px; - height: 21px; -} -#EditToolLockButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#EditToolLockButton::indicator:unchecked:hover { - image: url("imgs/cam_unlock_hover.png"); -} -#EditToolLockButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#EditToolLockButton::indicator:checked:hover { - image: url("imgs/cam_lock_hover.png"); -} -IconViewField { - qproperty-ScalePegPixmap: url("imgs/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("imgs/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("imgs/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("imgs/selectiontool_thickness.png"); -} -PopupButton::menu-indicator { - image: url("imgs/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid gray; -} -PopupButton::menu-indicator:disabled { - image: url("imgs/down_arrow_disabled.png"); -} -#Cap, -#Join { - padding-left: -8px; - padding-right: 4px; - min-width: 32px; - max-width: 32px; -} -#Cap QMenu, -#Join QMenu { - min-width: 18px; - max-width: 18px; -} -#Cap QMenu::item, -#Join QMenu::item { - min-width: 16px; - max-width: 16px; - padding: 0px; -} -/*------ Script Console ------*/ -#ScriptConsole { - border: 1px inset; - background-color: #dcdcdc; - color: black; - font-family: "Courier"; -} -/*------ Topbar and Menubar of the MainWindow ------*/ -#TopBar { - height: 22px; - background-color: #c0c0c0; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("imgs/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; -} -#TopBarTab::tab { - margin-left: 5px; - margin-right: 5px; - margin-top: 1px; - margin-bottom: 1px; - padding-left: 8px; - padding-right: 8px; - padding-top: 1px; - padding-bottom: 1px; - border: 1px solid black; - background-color: #a0a0a0; -} -#TopBarTab::tab:selected { - background-color: #cddcc0; -} -#TopBarTab::tab:hover { - background-color: #c0c0c0; -} -#StackedMenuBar { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#DockSeparator { - background-color: #9a9a9a; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #5a5a5a; - border-bottom-color: #5a5a5a; - border-width: 1; -} -/*------ Popups -------*/ -QDialog #dialogButtonFrame { - background-color: #676767; -} -#SceneSettings QLabel { - color: #000040; -} -#PreferencesPopup QListWidget { - background-color: #b3b3b3; - border-style: inset; - border-left-color: #737373; - border-top-color: #737373; - border-right-color: #ffffff; - border-bottom-color: #ffffff; - border-width: 2px; - alternate-background-color: #aaaaaa; - font-size: 14px; -} -#PreferencesPopup QListWidget::item { - padding: 3px; -} -#PreferencesPopup QListWidget::item:selected { - background-color: #000080; - color: white; -} -#PreferencesPopup QListWidget::item:hover { - background-color: #d2d2d2; -} -#OutputSettingsBox { - border: 1px solid #000040; -} -#OutputSettingsLabel { - color: #000040; -} -#OutputSettingsCameraBox { - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - border-width: 2px; -} -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#OutputSettingsShowButton:checked { - image: url("imgs/minus.png"); -} -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: white; - qproperty-LightLineEdgeColor: white; - qproperty-DarkLineColor: #c6c6c6; - qproperty-MiddleLineColor: #808080; - qproperty-HandleLeftPixmap: url("imgs/h_slider_left.png"); - qproperty-HandleRightPixmap: url("imgs/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("imgs/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("imgs/h_slider_right_disabled.png"); -} -#FxSettingsLabel { - color: #004000; -} -#FxSettings { - border-width: 0px; - border-bottom: 3px double #404040; -} -#FxSettingsHelpButton { - background-color: #c0c0c0; - color: #000040; -} -#FxSettingsHelpButton:hover { - background-color: #dcdcdc; -} -#LargeSizedText { - font-size: 17px; -} -#GearButton { - qproperty-icon: url("imgs/gear.png"); -} -#SubfolderButton { - qproperty-icon: url("imgs/subfolder.png"); -} -#StartupLabel { - padding: 3px; -} -#StartupLabel:hover { - background-color: #9a9a9a; -} -#WordButton { - font-size: 12px; - color: black; - background-color: #c0c0c0; - border-style: outset; - border-left-color: white; - border-top-color: white; - border-right-color: black; - border-bottom-color: black; - border-width: 1px; - border-radius: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#WordButton:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -#WordButton:hover { - background-color: #faffa2; -} -#WordButton:hover:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} diff --git a/stuff/config/qss/gray_128/gray_128_mac.qss b/stuff/config/qss/gray_128/gray_128_mac.qss deleted file mode 100644 index 0343bb8..0000000 --- a/stuff/config/qss/gray_128/gray_128_mac.qss +++ /dev/null @@ -1,1190 +0,0 @@ -/* LESS Definitions */ -/*Image URL*/ -/* color adjustable by delta */ -/*set padding*/ -/*set margin*/ -/* ------ Qt Widgets Common Difinitions ------ */ -QFrame { - background-color: #808080; - margin: 0px; - border: 0px; - padding: 0px; -} -QDialog { - background-color: #808080; -} -QMainWindow::separator { - background: yellow; - width: 10px; - /* when vertical */ - height: 10px; - /* when horizontal */ -} -QToolTip, -#helpTooltip { - border: 1px solid black; - background-color: #ffffe1; - padding: 2px; - border-radius: 2px; -} -QTreeWidget { - border-width: 1px; - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - alternate-background-color: #8d8d8d; -} -QStatusBar { - background-color: #c0c0c0; -} -QStatusBar::item { - border-width: 0; -} -QStatusBar QLabel { - background-color: #c0c0c0; -} -QStatusBar #StatusBarLabel { - background-color: #ffffff; - padding-left: 3px; - padding-right: 3px; - padding-top: 1px; - padding-bottom: 1px; -} -QMenuBar { - background: #a0a0a0; - color: black; -} -QMenu { - background: #a0a0a0; -} -QMenu::item:selected { - background: #000080; - color: white; -} -QToolBar { - background-color: #808080; - border-style: outset; - border-left-color: #e6e6e6; - border-top-color: #e6e6e6; - border-right-color: #404040; - border-bottom-color: #404040; - border-width: 1px; - margin: 0px; - padding: 0px; - border-image: none; -} -QToolBar::separator:horizontal { - margin_top: 1px; - margin_left: 2px; - margin_right: 2px; - image: url("imgs/bottomseparator.png"); -} -QToolBar::separator:vertical { - image: url("imgs/separator.png"); -} -QToolBar QToolButton { - background-color: #808080; - /*margin: 2px 1px 1px 1px;*/ - margin: 2px; - padding: 0px; - border: 0px; - border-image: none; -} -QToolBar QToolButton:hover { - border-image: url("imgs/over.png") 2; -} -QToolBar QToolButton:checked, -QToolBar QToolButton:pressed { - border-image: url("imgs/click.png") 2; -} -QToolBar QToolButton:disabled { - border-image: none; -} -QToolBar QToolButton::menu-indicator { - image: none; -} -QToolBar QToolButton::menu-button { - border-image: none; - background-color: #a0a0a0; -} -QToolBar QLabel { - margin-top: 1px; - border-width: 2; -} -QToolBar QToolBar { - border-width: 0px; -} -QCheckBox:hover { - background-color: #9a9a9a; -} -QCheckBox:disabled { - color: #404040; -} -QGroupBox { - border: 1px solid; - margin: 6px 0 0 0; - padding: 5px 3px; -} -QGroupBox::title { - subcontrol-origin: margin; - left: 15px; - margin: -2px 0 0 0; - padding: 0 3px; -} -/* ------ Toonz Classes Difinitions ------ */ -/* ------ TPanel ------ */ -TPanelTitleBar { - qproperty-BorderPixmap: url("imgs/tpaneltitlebar_border.png"); - qproperty-ActiveBorderPixmap: url("imgs/tpaneltitlebar_border_active.png"); - qproperty-FloatBorderPixmap: url("imgs/tpaneltitlebar_border_float.png"); - qproperty-FloatActiveBorderPixmap: url("imgs/tpaneltitlebar_border_float_active.png"); - qproperty-TitleColor: #c0c0c0; - qproperty-ActiveTitleColor: #ffffff; -} -/* ------ Palette ------ */ -PaletteViewer #ToolBarContainer { - margin: 0px; - padding: 0px; -} -PaletteViewer #ToolBarContainer QToolBar { - border: 1px; - background-color: #808080; - border-style: outset; - border-left-color: #e6e6e6; - border-top-color: #e6e6e6; - border-right-color: #404040; - border-bottom-color: #404040; -} -PaletteViewer #ToolBarContainer QToolBar QToolButton { - margin: 0px; - padding: 1px; - border: 0px; -} -PaletteViewer #ToolBarContainer #keyFrameNavigator { - border: 0px; -} -#TabBarContainer { - qproperty-BottomAboveLineColor: #787878; - qproperty-BottomBelowLineColor: #ffffff; - background-color: #5a5a5a; -} -#TabBarContainer #ScrollLeftButton, -#TabBarContainer #ScrollRightButton { - margin-top: 1px; -} -#PaletteTabBar, -#FxSettingsTabBar { - background-color: #5a5a5a; -} -#PaletteTabBar::tab, -#FxSettingsTabBar::tab { - padding-left: 7px; - padding-right: 7px; - padding-top: 2px; - padding-bottom: 2px; - min-width: 60px; - border-width: 1px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - background-color: #b3b3b3; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #737373; - border-bottom-color: #737373; - /* for non selected tab */ - margin-top: 2px; - /* for non selected tab */ - border-bottom-color: #e6e6e6; - /* for non selected tab */ -} -#PaletteTabBar::tab:selected, -#FxSettingsTabBar::tab:selected { - background-color: #ffffff; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #c0c0c0; - border-bottom-color: #c0c0c0; - margin-top: 0px; - border-bottom-color: #808080; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -4px; - margin-right: -4px; -} -#PaletteTabBar::tab:first:selected, -#FxSettingsTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#PaletteTabBar::tab:last:selected, -#FxSettingsTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#PaletteTabBar::tab:only-one, -#FxSettingsTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#PaletteLockButton:hover { - border-image: url("imgs/over_yellow.png") 2; -} -#PaletteLockButton:checked { - border-image: url("imgs/click_pink.png") 2; -} -#PaletteLockButton:checked:hover { - border-image: url("imgs/over_pressed_yellow.png") 2; -} -#PageViewer { - qproperty-TextColor: black; -} -/* ------ Style Editor ------ */ -#StyleEditorTabBar { - background-color: #5a5a5a; -} -#StyleEditorTabBar::tab { - padding-left: 2px; - padding-right: 2px; - padding-top: 1px; - padding-bottom: 1px; - font-size: 12px; - min-width: 40px; - border-width: 1px; - border-top-left-radius: 3px; - border-top-right-radius: 3px; - background-color: #b3b3b3; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #737373; - border-bottom-color: #737373; - /* for non selected tab */ - border-bottom-color: #e6e6e6; - /* for non selected tab */ -} -#StyleEditorTabBar::tab:selected { - background-color: #ffffff; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #c0c0c0; - border-bottom-color: #c0c0c0; - border-bottom-color: #808080; - /* same as the pane color */ - /* expand/overlap to the left and right by 4px */ - margin-left: -2px; - margin-right: -2px; -} -#StyleEditorTabBar::tab:first:selected { - margin-left: 0; - /* the first selected tab has nothing to overlap with on the left */ -} -#StyleEditorTabBar::tab:last:selected { - margin-right: 0; - /* the last selected tab has nothing to overlap with on the right */ -} -#StyleEditorTabBar::tab:only-one { - margin: 0; - /* if there is only one tab, we don't want overlapping margins */ -} -#HexagonalColorWheel { - qproperty-BGColor: #808080; -} -/* Customize Horizontal QSlider that have name "colorSlider" */ -#colorSlider::groove:horizontal { - height: 20; - border-image: none; - border-width: 1; - height: 1px; -} -#colorSlider::handle:horizontal { - width: 8px; - margin: -8px -4px; -} -#colorSliderAddButton, -#colorSliderSubButton { - border-image: url("imgs/colorslider_button_bg.png") 2; - padding: 0px; - margin: 0px; - border: 2px; - image-position: center center; -} -#colorSliderAddButton { - image: url("imgs/colorslider_add.png"); -} -#colorSliderAddButton:pressed { - image: url("imgs/colorslider_add_pressed.png"); -} -#colorSliderSubButton { - image: url("imgs/colorslider_sub.png"); -} -#colorSliderSubButton:pressed { - image: url("imgs/colorslider_sub_pressed.png"); -} -#PlainColorPageParts { - border-width: 0px; - border-bottom: 1px solid black; - border-top: 1px solid white; -} -#colorSliderLabel, -#colorSliderField { - font-size: 14px; -} -/*---------------------------------------------------------------------------*/ -/* The animated, scrollable toolbar containers */ -DvScrollWidget > QPushButton { - border-image: none; - border: 0px solid black; - padding: 0px; - border-radius: 1px; - background-color: #e1e1e1; -} -DvScrollWidget > QPushButton:hover { - background-color: #f5f5f5; -} -DvScrollWidget > QPushButton:pressed { - background-color: #d7d7d7; -} -#ScrollLeftButton, -#ScrollRightButton, -#ScrollUpButton, -#ScrollDownButton { - min-width: 15px; - max-width: 15px; -} -#ScrollLeftButton { - image: url("imgs/left_arrow_black.png"); - border-right: 1px solid black; -} -#ScrollRightButton { - image: url("imgs/right_arrow_black.png"); - border-left: 1px solid black; -} -#ScrollUpButton { - image: url("imgs/up_arrow_black.png"); - border-bottom: 1px solid black; -} -#ScrollDownButton { - image: url("imgs/down_arrow_black.png"); - border-top: 1px solid black; -} -/* ------ Viewer, Flipbook ------ */ -#ViewerPanel { - background-color: #5a5a5a; -} -#ViewerPanel #ToolBarContainer { - border-top: 1px solid #e6e6e6; - margin-top: 1px; - padding-top: 1px; -} -FlipBook #ToolBarContainer { - border-top: 1px solid #e6e6e6; - margin-top: 1px; - padding-top: 1px; -} -/* Flipbook toolbar-specific */ -#ToolBarContainer #ScrollLeftButton { - margin-top: 1px; -} -#ToolBarContainer #ScrollRightButton { - margin-top: 1px; -} -#ViewerFpsSlider { - background-color: #c0c0c0; - margin-left: 19px; - margin-right: 19px; - margin-top: 0px; - margin-bottom: 0px; - border: 1px solid black; - height: 21px; -} -#ViewerFpsSlider::handle { - border-image: url("imgs/handle_border.png") 6; - border-width: 6px; - image: none; - min-width: 5px; -} -#ViewerFpsSlider::add-line { - image: url("imgs/fpssb_g_rarrow.png"); - width: 20px; - subcontrol-position: right; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::add-line:pressed { - image: url("imgs/fpssb_g_rarrow_pressed.png"); -} -#ViewerFpsSlider::sub-line { - image: url("imgs/fpssb_g_larrow.png"); - width: 20px; - subcontrol-position: left; - subcontrol-origin: margin; - margin: 0px; -} -#ViewerFpsSlider::sub-line:pressed { - image: url("imgs/fpssb_g_larrow_pressed.png"); -} -#FlipConsolePlayToolBar { - border: none; -} -#FlipConsolePlayToolBar QToolButton { - height: 14px; -} -FlipSlider { - qproperty-PBHeight: 20; - qproperty-PBOverlay: url("imgs/flipslider.png"); - qproperty-PBMarker: url("imgs/flipmarker.png"); - qproperty-PBColorMarginLeft: 1; - qproperty-PBColorMarginTop: 1; - qproperty-PBColorMarginRight: 1; - qproperty-PBColorMarginBottom: 1; - qproperty-PBMarkerMarginLeft: 6; - qproperty-PBMarkerMarginRight: 6; - qproperty-baseColor: #c0c0c0; - qproperty-notStartedColor: #cc2222; - qproperty-startedColor: #c88080; - qproperty-finishedColor: #c0c0c0; -} -Ruler { - qproperty-ParentBGColor: #ebebeb; - qproperty-ScaleColor: black; -} -#ComboViewerToolOptions { - border: 1px; - background-color: #808080; - border-style: outset; - border-left-color: #e6e6e6; - border-top-color: #e6e6e6; - border-right-color: #404040; - border-bottom-color: #404040; -} -/*-----------File Browser------------*/ -#DirTreeView, -#FunctionEditorTree, -#ShortcutTree, -#FxTreeView { - alternate-background-color: #8d8d8d; - border-width: 1px; - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - margin: 0px; -} -#DirTreeView::branch:adjoins-item { - border-image: url("imgs/tree_branch-end.png") 0; -} -#DirTreeView::branch:has-siblings { - border-image: url("imgs/tree_vline.png") 0; -} -#DirTreeView::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree_branch-more.png") 0; -} -#DirTreeView::branch:has-children:closed { - border-image: none; - image: url("imgs/tree_branch-closed_nosib.png"); -} -#DirTreeView::branch:has-children:open { - border-image: none; - image: url("imgs/tree_branch-open_nosib.png"); -} -#DirTreeView::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree_branch-closed.png"); -} -#DirTreeView::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree_branch-open.png"); -} -DvItemViewerPanel { - qproperty-TextColor: black; - qproperty-AlternateBackground: #8d8d8d; - qproperty-SelectedTextColor: white; - qproperty-FolderTextColor: blue; - qproperty-SelectedItemBackground: #000080; -} -DvDirTreeView { - qproperty-TextColor: black; - qproperty-SelectedTextColor: white; - qproperty-FolderTextColor: blue; - qproperty-SelectedItemBackground: #000080; - qproperty-SelectedFolderTextColor: yellow; - alternate-background-color: #8d8d8d; -} -/*---------------------------------------------------------------------------*/ -/* Cleanup Settings, LoadLevel, PsdSettingsPopup, FxSettingsPopup, RenameAsToonzPopup */ -/*---------------------------------------------------------------------------*/ -#CleanupSettingsFrame, -#LoadLevelFrame, -#SolidLineFrame { - border: 1px solid #141414; -} -#TitleTxtLabel { - color: #000040; -} -#PsdSettingsGroupBox { - border: 1px solid #000040; -} -#FileDoesNotExistLabel { - color: #800000; -} -#CleanupSettingsShowButton, -#LoadLevelShowButton, -#FxSettingsPreviewShowButton { - border-width: 2px; - padding: 0px; - margin: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#CleanupSettingsShowButton:checked, -#LoadLevelShowButton:checked, -#FxSettingsPreviewShowButton:checked { - image: url("imgs/minus.png"); -} -ParamsPage { - qproperty-TextColor: black; -} -/*----------- Xsheet ------------*/ -/* XSheet scrollAreas (row, column and cell) */ -#xsheetScrollArea { - border: 0px; -} -#xsheetArea, -#ScrollArea, -#FunctionSegmentViewer { - border-width: 2px; - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - margin: 0px; -} -/*XsheetColumnHeader Right-click menu*/ -#xsheetColumnAreaMenu_Preview { - background-color: #e6e678; -} -#xsheetColumnAreaMenu_Lock { - background-color: #f5f5f5; -} -#xsheetColumnAreaMenu_Camstand { - background-color: #ffa480; -} -#xsheetColumnAreaMenu_Preview:selected, -#xsheetColumnAreaMenu_Lock:selected, -#xsheetColumnAreaMenu_Camstand:selected { - background-color: #000080; -} -#XSheetToolbarLevelButton { - padding-left: 2; - padding-right: 2; - margin-left: 2; - margin-right: 2; - border: 0px; -} -#XSheetToolbar { - margin: 0; - padding: 0; - border: 0; -} -#XSheetToolbar::separator:horizontal { - margin-right: 4; - margin-left: 4; -} -/* Customize QScrollBar vertical*/ -QScrollBar { - border: 1px solid black; - /* buttons */ -} -QScrollBar:vertical { - width: 16px; - margin-left: 0px; - margin-right: 0px; - margin-top: 16px; - margin-bottom: 16px; -} -QScrollBar:horizontal { - height: 16px; - margin-left: 16px; - margin-right: 16px; - margin-top: 0px; - margin-bottom: 0px; -} -QScrollBar::handle { - border-width: 3; - image-position: center center; -} -QScrollBar::handle:vertical { - border-image: url("imgs/sb_g_vhandle.png") 3; - image: url("imgs/sb_g_vline.png"); - min-height: 40px; -} -QScrollBar::handle:horizontal { - border-image: url("imgs/sb_g_hhandle.png") 3; - image: url("imgs/sb_g_hline.png"); - min-width: 40px; -} -QScrollBar::add-line { - subcontrol-origin: margin; -} -QScrollBar::add-line:vertical { - image: url("imgs/sb_g_downarrow.png"); - height: 16px; - subcontrol-position: bottom; -} -QScrollBar::add-line:vertical:pressed { - image: url("imgs/sb_g_downarrow_pressed.png"); -} -QScrollBar::add-line:horizontal { - image: url("imgs/sb_g_rarrow.png"); - width: 16px; - subcontrol-position: right; -} -QScrollBar::add-line:horizontal:pressed { - image: url("imgs/sb_g_rarrow_pressed.png"); -} -QScrollBar::sub-line { - subcontrol-origin: margin; -} -QScrollBar::sub-line:vertical { - image: url("imgs/sb_g_uparrow.png"); - height: 16px; - subcontrol-position: top; -} -QScrollBar::sub-line:vertical:pressed { - image: url("imgs/sb_g_uparrow_pressed.png"); -} -QScrollBar::sub-line:horizontal { - image: url("imgs/sb_g_larrow.png"); - width: 16px; - subcontrol-position: left; -} -QScrollBar::sub-line:horizontal:pressed { - image: url("imgs/sb_g_larrow_pressed.png"); -} -QScrollBar::add-page, -QScrollBar::sub-page { - background-color: #a0a0a0; -} -XsheetViewer { - qproperty-TextColor: black; - qproperty-BGColor: #a4a4a4; - qproperty-LightLineColor: #929092; - qproperty-MarkerLineColor: #00fff6; - qproperty-VerticalLineColor: #000000; - qproperty-VerticalLineHeadColor: #000000; - qproperty-PreviewFrameTextColor: #0000ff; - qproperty-CurrentRowBgColor: #d2d2d2; - qproperty-EmptyColumnHeadColor: #c8c8c8; - qproperty-SelectedColumnTextColor: #e66464; - qproperty-EmptyCellColor: #7c7c7c; - qproperty-NotEmptyColumnColor: #a4a4a4; - qproperty-SelectedEmptyCellColor: #d2d2d2; - qproperty-LevelColumnColor: #7fdb7f; - qproperty-LevelColumnBorderColor: #2f522f; - qproperty-SelectedLevelColumnColor: #bfedbf; - qproperty-VectorColumnColor: #d4d485; - qproperty-VectorColumnBorderColor: #4f4f31; - qproperty-SelectedVectorColumnColor: #eaeac2; - qproperty-ChildColumnColor: #d69adb; - qproperty-ChildColumnBorderColor: #503952; - qproperty-SelectedChildColumnColor: #ebcded; - qproperty-FullcolorColumnColor: #9ad6db; - qproperty-FullcolorColumnBorderColor: #395052; - qproperty-SelectedFullcolorColumnColor: #cdebed; - qproperty-FxColumnColor: #82815d; - qproperty-FxColumnBorderColor: #303023; - qproperty-SelectedFxColumnColor: #c1c0ae; - qproperty-ReferenceColumnColor: #ababab; - qproperty-ReferenceColumnBorderColor: #3e3e3e; - qproperty-SelectedReferenceColumnColor: #d5d5d5; - qproperty-PaletteColumnColor: #2aab9a; - qproperty-PaletteColumnBorderColor: #0f3e38; - qproperty-SelectedPaletteColumnColor: #92ddca; - qproperty-MeshColumnColor: #c882ff; - qproperty-MeshColumnBorderColor: #694687; - qproperty-SelectedMeshColumnColor: #d8b4f5; - qproperty-SoundColumnColor: #b3c187; - qproperty-SoundColumnBorderColor: #637856; - qproperty-SelectedSoundColumnColor: #d7d7b4; - qproperty-SoundColumnHlColor: #f5ffe6; - qproperty-SoundColumnTrackColor: #5a642d; - qproperty-ColumnHeadPastelizer: #ffffff; - qproperty-SelectedColumnHead: #bed2f0; - qproperty-LightLightBGColor: #fafafa; - qproperty-LightBGColor: #f0f0f0; - qproperty-DarkBGColor: #e1e1e1; - qproperty-DarkLineColor: #969696; -} -/*------- Schematic ---------*/ -#SchematicBottomFrame { - margin: 0px; - padding: 0px; - background-color: #808080; - border-style: outset; - border-left-color: #e6e6e6; - border-top-color: #e6e6e6; - border-right-color: #404040; - border-bottom-color: #404040; - border-width: 1px; - border-image: none; -} -#SchematicSceneViewer { - background-color: #373737; -} -/*------ Function Editor ---------*/ -#FunctionParametersPanel { - border: 1px solid #141414; -} -#FunctionEditorTree::branch:adjoins-item, -#ShortcutTree::branch:adjoins-item { - border-image: url("imgs/tree17_branch-end.png") 0; -} -#FunctionEditorTree::branch:has-siblings, -#ShortcutTree::branch:has-siblings { - border-image: url("imgs/tree17_vline.png") 0; -} -#FunctionEditorTree::branch:has-siblings:adjoins-item, -#ShortcutTree::branch:has-siblings:adjoins-item { - border-image: url("imgs/tree17_branch-more.png") 0; -} -#FunctionEditorTree::branch:has-children:closed, -#ShortcutTree::branch:has-children:closed { - border-image: none; - image: url("imgs/tree17_branch-closed_nosib.png"); -} -#FunctionEditorTree::branch:has-children:open, -#ShortcutTree::branch:has-children:open { - border-image: none; - image: url("imgs/tree17_branch-open_nosib.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:closed, -#ShortcutTree::branch:has-children:has-siblings:closed { - border-image: none; - image: url("imgs/tree17_branch-closed.png"); -} -#FunctionEditorTree::branch:has-children:has-siblings:open, -#ShortcutTree::branch:has-children:has-siblings:open { - border-image: none; - image: url("imgs/tree17_branch-open.png"); -} -FunctionPanel { - qproperty-BGColor: #e1e1e1; - qproperty-ValueLineColor: #bababa; - qproperty-FrameLineColor: #d2d2d2; - qproperty-OtherCurvesColor: #969696; - qproperty-RulerBackground: #ffffff; - qproperty-TextColor: black; - qproperty-SubColor: white; - qproperty-SelectedColor: blue; -} -FunctionTreeView { - qproperty-TextColor: black; - qproperty-CurrentTextColor: red; -} -SpreadsheetViewer { - qproperty-LightLightBGColor: #7c7c7c; - qproperty-CurrentRowBgColor: #d2d2d2; - qproperty-LightLineColor: #929092; - qproperty-MarkerLineColor: #00fff6; - qproperty-BGColor: #a4a4a4; - qproperty-VerticalLineColor: #000000; - qproperty-KeyFrameColor: #db8b36; - qproperty-KeyFrameBorderColor: #523314; - qproperty-SelectedKeyFrameColor: #edc59b; - qproperty-InBetweenColor: #c2c2b0; - qproperty-InBetweenBorderColor: #484841; - qproperty-SelectedInBetweenColor: #e1e1d8; - qproperty-SelectedEmptyColor: #bebebe; - qproperty-SelectedSceneRangeEmptyColor: #d2d2d2; - qproperty-TextColor: black; - qproperty-ColumnHeaderBorderColor: #2e2f2e; - qproperty-SelectedColumnTextColor: #ff0000; -} -#keyFrameNavigator { - background: none; - margin: 0; - padding: 0; - border: 0; -} -#keyFrameNavigator QToolButton { - min-width: 18px; -} -#keyFrameNavigator #PreviousKey { - image: url('imgs/prevkey.png'); -} -#keyFrameNavigator #PreviousKey:disabled { - image: url('imgs/prevkey_disabled.png'); -} -#keyFrameNavigator #NextKey { - image: url('imgs/nextkey.png'); -} -#keyFrameNavigator #NextKey:disabled { - image: url('imgs/nextkey_disabled.png'); -} -#ExpressionField { - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - background-color: white; - border-width: 2px; - margin: 0px; -} -#FunctionSegmentViewerLinkButton { - border: 2px; - margin: 0px; - image: url("imgs/segment_unlinked.png"); - background-color: #b3b3b3; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #737373; - border-bottom-color: #737373; -} -#FunctionSegmentViewerLinkButton:checked { - image: url("imgs/segment_linked.png"); - background-color: #b3b3b3; - border-style: inset; - border-left-color: #737373; - border-top-color: #737373; - border-right-color: #ffffff; - border-bottom-color: #ffffff; -} -#FunctionSegmentViewerLinkButton:disabled { - image: url("imgs/segment_disabled.png"); - background-color: #9a9a9a; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #5a5a5a; - border-bottom-color: #5a5a5a; - border: 1px; -} -/*------ Tasks Viewer ------*/ -#TaskSheetItem, -#tasksRemoveBox, -#tasksAddBox { - background-color: #9a9a9a; - border-style: inset; - border-left-color: #5a5a5a; - border-top-color: #5a5a5a; - border-right-color: #ffffff; - border-bottom-color: #ffffff; - border-width: 1px; - padding: 3px; -} -#TaskSheetItemLabel { - color: #000040; -} -/*------ Cleanup Settings------*/ -/* FileField etc. */ -#PushButton_NoPadding { - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#CameraSettingsButton { - padding: 2px; - border: 0px; -} -#CameraSettingsRadioButton::indicator { - width: 21px; - height: 21px; -} -#CameraSettingsRadioButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#CameraSettingsRadioButton::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover.png"); -} -#CameraSettingsDPI { - color: #004000; -} -#CameraSettingsRadioButton_Small { - padding: 2px; -} -#CameraSettingsRadioButton_Small::indicator { - width: 11px; - height: 21px; -} -#CameraSettingsRadioButton_Small::indicator:checked { - image: url("imgs/cam_lock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked { - image: url("imgs/cam_unlock_small.png"); -} -#CameraSettingsRadioButton_Small::indicator:unchecked:hover { - image: url("imgs/cam_lock_hover_small.png"); -} -#ForceSquaredPixelButton { - border: none; - border-radius: 0px; - padding: 0px; - image: url("imgs/fsp_released.png"); -} -#ForceSquaredPixelButton:hover { - image: url("imgs/fsp_hover.png"); -} -#ForceSquaredPixelButton:checked { - image: url("imgs/fsp_pressed.png"); -} -/*------ Tool Options Bar------*/ -#EditToolLockButton { - spacing: 0px; - /*space between button and text*/ -} -#EditToolLockButton::indicator { - border-width: 0px; - width: 21px; - height: 21px; -} -#EditToolLockButton::indicator:unchecked { - image: url("imgs/cam_unlock.png"); -} -#EditToolLockButton::indicator:unchecked:hover { - image: url("imgs/cam_unlock_hover.png"); -} -#EditToolLockButton::indicator:checked { - image: url("imgs/cam_lock.png"); -} -#EditToolLockButton::indicator:checked:hover { - image: url("imgs/cam_lock_hover.png"); -} -IconViewField { - qproperty-ScalePegPixmap: url("imgs/selectiontool_scalepeg.png"); - qproperty-RotationPixmap: url("imgs/selectiontool_rotation.png"); - qproperty-PositionPixmap: url("imgs/selectiontool_position.png"); - qproperty-ThicknessPixmap: url("imgs/selectiontool_thickness.png"); -} -PopupButton::menu-indicator { - image: url("imgs/down_arrow.png"); - width: 10px; - height: 17px; - border-left: 1px solid gray; -} -PopupButton::menu-indicator:disabled { - image: url("imgs/down_arrow_disabled.png"); -} -#Cap, -#Join { - padding-left: -8px; - padding-right: 4px; - min-width: 32px; - max-width: 32px; -} -#Cap QMenu, -#Join QMenu { - min-width: 18px; - max-width: 18px; -} -#Cap QMenu::item, -#Join QMenu::item { - min-width: 16px; - max-width: 16px; - padding: 0px; -} -/*------ Script Console ------*/ -#ScriptConsole { - border: 1px inset; - background-color: #dcdcdc; - color: black; - font-family: "Courier"; -} -/*------ Topbar and Menubar of the MainWindow ------*/ -#TopBar { - height: 22px; - background-color: #c0c0c0; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTabContainer { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#TopBarTab { - border-image: url("imgs/topbar_bg.png") 0 0 0 0 stretch stretch; - /*background: qlineargradient(x1: 0,y1: 0, x2: 1, y2: 0, stop: 0 #a0a0a0, stop: 0.5 #404040);*/ - border: 0px; - padding: 0px; -} -#TopBarTab::tab { - margin-left: 5px; - margin-right: 5px; - margin-top: 1px; - margin-bottom: 1px; - padding-left: 8px; - padding-right: 8px; - padding-top: 1px; - padding-bottom: 1px; - border: 1px solid black; - background-color: #a0a0a0; -} -#TopBarTab::tab:selected { - background-color: #cddcc0; -} -#TopBarTab::tab:hover { - background-color: #c0c0c0; -} -#StackedMenuBar { - background: #a0a0a0; - margin: 0px; - border: 0px; - padding: 0px; -} -#DockSeparator { - background-color: #9a9a9a; - border-style: outset; - border-left-color: #ffffff; - border-top-color: #ffffff; - border-right-color: #5a5a5a; - border-bottom-color: #5a5a5a; - border-width: 1; -} -/*------ Popups -------*/ -QDialog #dialogButtonFrame { - background-color: #676767; -} -#SceneSettings QLabel { - color: #000040; -} -#PreferencesPopup QListWidget { - background-color: #b3b3b3; - border-style: inset; - border-left-color: #737373; - border-top-color: #737373; - border-right-color: #ffffff; - border-bottom-color: #ffffff; - border-width: 2px; - alternate-background-color: #aaaaaa; - font-size: 14px; -} -#PreferencesPopup QListWidget::item { - padding: 3px; -} -#PreferencesPopup QListWidget::item:selected { - background-color: #000080; - color: white; -} -#PreferencesPopup QListWidget::item:hover { - background-color: #d2d2d2; -} -#OutputSettingsBox { - border: 1px solid #000040; -} -#OutputSettingsLabel { - color: #000040; -} -#OutputSettingsCameraBox { - background-color: #808080; - border-style: inset; - border-left-color: #404040; - border-top-color: #404040; - border-right-color: #e6e6e6; - border-bottom-color: #e6e6e6; - border-width: 2px; -} -#OutputSettingsShowButton { - border: 2px; - padding: 0px; - border-image: url("imgs/handle_border.png") 5; - image: url("imgs/plus.png"); - image-position: center center; -} -#OutputSettingsShowButton:checked { - image: url("imgs/minus.png"); -} -#IntPairField, -#DoublePairField { - qproperty-LightLineColor: white; - qproperty-LightLineEdgeColor: white; - qproperty-DarkLineColor: #c6c6c6; - qproperty-MiddleLineColor: #808080; - qproperty-HandleLeftPixmap: url("imgs/h_slider_left.png"); - qproperty-HandleRightPixmap: url("imgs/h_slider_right.png"); - qproperty-HandleLeftGrayPixmap: url("imgs/h_slider_left_disabled.png"); - qproperty-HandleRightGrayPixmap: url("imgs/h_slider_right_disabled.png"); -} -#FxSettingsLabel { - color: #004000; -} -#FxSettings { - border-width: 0px; - border-bottom: 3px double #404040; -} -#FxSettingsHelpButton { - background-color: #c0c0c0; - color: #000040; -} -#FxSettingsHelpButton:hover { - background-color: #dcdcdc; -} -#LargeSizedText { - font-size: 17px; -} -#GearButton { - qproperty-icon: url("imgs/gear.png"); -} -#SubfolderButton { - qproperty-icon: url("imgs/subfolder.png"); -} -#StartupLabel { - padding: 3px; -} -#StartupLabel:hover { - background-color: #9a9a9a; -} -#WordButton { - font-size: 12px; - color: black; - background-color: #c0c0c0; - border-style: outset; - border-left-color: white; - border-top-color: white; - border-right-color: black; - border-bottom-color: black; - border-width: 1px; - border-radius: 1px; - padding-left: 3px; - padding-right: 3px; - padding-top: 3px; - padding-bottom: 3px; -} -#WordButton:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} -#WordButton:hover { - background-color: #faffa2; -} -#WordButton:hover:pressed { - background-color: #faffa2; - border-style: inset; - border-left-color: black; - border-top-color: black; - border-right-color: white; - border-bottom-color: white; -} diff --git a/stuff/config/qss/gray_128/imgs/bottomseparator.png b/stuff/config/qss/gray_128/imgs/bottomseparator.png deleted file mode 100644 index e59114f..0000000 Binary files a/stuff/config/qss/gray_128/imgs/bottomseparator.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/cam_lock.png b/stuff/config/qss/gray_128/imgs/cam_lock.png deleted file mode 100644 index 26ce32d..0000000 Binary files a/stuff/config/qss/gray_128/imgs/cam_lock.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/cam_lock_hover.png b/stuff/config/qss/gray_128/imgs/cam_lock_hover.png deleted file mode 100644 index 68c9f56..0000000 Binary files a/stuff/config/qss/gray_128/imgs/cam_lock_hover.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/cam_lock_hover_small.png b/stuff/config/qss/gray_128/imgs/cam_lock_hover_small.png deleted file mode 100644 index 7290336..0000000 Binary files a/stuff/config/qss/gray_128/imgs/cam_lock_hover_small.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/cam_lock_small.png b/stuff/config/qss/gray_128/imgs/cam_lock_small.png deleted file mode 100644 index b4b65ae..0000000 Binary files a/stuff/config/qss/gray_128/imgs/cam_lock_small.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/cam_unlock.png b/stuff/config/qss/gray_128/imgs/cam_unlock.png deleted file mode 100644 index 4fbb755..0000000 Binary files a/stuff/config/qss/gray_128/imgs/cam_unlock.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/cam_unlock_hover.png b/stuff/config/qss/gray_128/imgs/cam_unlock_hover.png deleted file mode 100644 index c09e14e..0000000 Binary files a/stuff/config/qss/gray_128/imgs/cam_unlock_hover.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/cam_unlock_hover_small.png b/stuff/config/qss/gray_128/imgs/cam_unlock_hover_small.png deleted file mode 100644 index ef4d94d..0000000 Binary files a/stuff/config/qss/gray_128/imgs/cam_unlock_hover_small.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/cam_unlock_small.png b/stuff/config/qss/gray_128/imgs/cam_unlock_small.png deleted file mode 100644 index 06d5d3a..0000000 Binary files a/stuff/config/qss/gray_128/imgs/cam_unlock_small.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/click.png b/stuff/config/qss/gray_128/imgs/click.png deleted file mode 100644 index 2b4d7cb..0000000 Binary files a/stuff/config/qss/gray_128/imgs/click.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/click_pink.png b/stuff/config/qss/gray_128/imgs/click_pink.png deleted file mode 100644 index 2927c32..0000000 Binary files a/stuff/config/qss/gray_128/imgs/click_pink.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/colorslider_add.png b/stuff/config/qss/gray_128/imgs/colorslider_add.png deleted file mode 100644 index 34f9b01..0000000 Binary files a/stuff/config/qss/gray_128/imgs/colorslider_add.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/colorslider_add_pressed.png b/stuff/config/qss/gray_128/imgs/colorslider_add_pressed.png deleted file mode 100644 index 44f4265..0000000 Binary files a/stuff/config/qss/gray_128/imgs/colorslider_add_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/colorslider_button_bg.png b/stuff/config/qss/gray_128/imgs/colorslider_button_bg.png deleted file mode 100644 index 3aacfb9..0000000 Binary files a/stuff/config/qss/gray_128/imgs/colorslider_button_bg.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/colorslider_sub.png b/stuff/config/qss/gray_128/imgs/colorslider_sub.png deleted file mode 100644 index 876ceff..0000000 Binary files a/stuff/config/qss/gray_128/imgs/colorslider_sub.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/colorslider_sub_pressed.png b/stuff/config/qss/gray_128/imgs/colorslider_sub_pressed.png deleted file mode 100644 index 41c7788..0000000 Binary files a/stuff/config/qss/gray_128/imgs/colorslider_sub_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/combo_down_arrow.png b/stuff/config/qss/gray_128/imgs/combo_down_arrow.png deleted file mode 100644 index 4cfea8d..0000000 Binary files a/stuff/config/qss/gray_128/imgs/combo_down_arrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/down_arrow_black.png b/stuff/config/qss/gray_128/imgs/down_arrow_black.png deleted file mode 100644 index d9fbc98..0000000 Binary files a/stuff/config/qss/gray_128/imgs/down_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/flipmarker.png b/stuff/config/qss/gray_128/imgs/flipmarker.png deleted file mode 100644 index 4d762fc..0000000 Binary files a/stuff/config/qss/gray_128/imgs/flipmarker.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/flipslider.png b/stuff/config/qss/gray_128/imgs/flipslider.png deleted file mode 100644 index fd4307b..0000000 Binary files a/stuff/config/qss/gray_128/imgs/flipslider.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/fpssb_g_larrow.png b/stuff/config/qss/gray_128/imgs/fpssb_g_larrow.png deleted file mode 100644 index c29d1f7..0000000 Binary files a/stuff/config/qss/gray_128/imgs/fpssb_g_larrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/fpssb_g_larrow_pressed.png b/stuff/config/qss/gray_128/imgs/fpssb_g_larrow_pressed.png deleted file mode 100644 index 31293fa..0000000 Binary files a/stuff/config/qss/gray_128/imgs/fpssb_g_larrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/fpssb_g_rarrow.png b/stuff/config/qss/gray_128/imgs/fpssb_g_rarrow.png deleted file mode 100644 index ba86d16..0000000 Binary files a/stuff/config/qss/gray_128/imgs/fpssb_g_rarrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/fpssb_g_rarrow_pressed.png b/stuff/config/qss/gray_128/imgs/fpssb_g_rarrow_pressed.png deleted file mode 100644 index 602330b..0000000 Binary files a/stuff/config/qss/gray_128/imgs/fpssb_g_rarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/fsp_hover.png b/stuff/config/qss/gray_128/imgs/fsp_hover.png deleted file mode 100644 index 9f651e2..0000000 Binary files a/stuff/config/qss/gray_128/imgs/fsp_hover.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/fsp_pressed.png b/stuff/config/qss/gray_128/imgs/fsp_pressed.png deleted file mode 100644 index 668a7ea..0000000 Binary files a/stuff/config/qss/gray_128/imgs/fsp_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/fsp_released.png b/stuff/config/qss/gray_128/imgs/fsp_released.png deleted file mode 100644 index 14a896e..0000000 Binary files a/stuff/config/qss/gray_128/imgs/fsp_released.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/gear.png b/stuff/config/qss/gray_128/imgs/gear.png deleted file mode 100644 index 36477dd..0000000 Binary files a/stuff/config/qss/gray_128/imgs/gear.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/h_slider_left.png b/stuff/config/qss/gray_128/imgs/h_slider_left.png deleted file mode 100644 index 2a53d14..0000000 Binary files a/stuff/config/qss/gray_128/imgs/h_slider_left.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/h_slider_left_disabled.png b/stuff/config/qss/gray_128/imgs/h_slider_left_disabled.png deleted file mode 100644 index 2a53d14..0000000 Binary files a/stuff/config/qss/gray_128/imgs/h_slider_left_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/h_slider_right.png b/stuff/config/qss/gray_128/imgs/h_slider_right.png deleted file mode 100644 index a25b8dd..0000000 Binary files a/stuff/config/qss/gray_128/imgs/h_slider_right.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/h_slider_right_disabled.png b/stuff/config/qss/gray_128/imgs/h_slider_right_disabled.png deleted file mode 100644 index a25b8dd..0000000 Binary files a/stuff/config/qss/gray_128/imgs/h_slider_right_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/handle_border.png b/stuff/config/qss/gray_128/imgs/handle_border.png deleted file mode 100644 index a4ec2ab..0000000 Binary files a/stuff/config/qss/gray_128/imgs/handle_border.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/left_arrow_black.png b/stuff/config/qss/gray_128/imgs/left_arrow_black.png deleted file mode 100644 index b89cdcc..0000000 Binary files a/stuff/config/qss/gray_128/imgs/left_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/minus.png b/stuff/config/qss/gray_128/imgs/minus.png deleted file mode 100644 index b03f19a..0000000 Binary files a/stuff/config/qss/gray_128/imgs/minus.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/nextkey.png b/stuff/config/qss/gray_128/imgs/nextkey.png deleted file mode 100644 index 1f667f2..0000000 Binary files a/stuff/config/qss/gray_128/imgs/nextkey.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/nextkey_disabled.png b/stuff/config/qss/gray_128/imgs/nextkey_disabled.png deleted file mode 100644 index ce8ccb4..0000000 Binary files a/stuff/config/qss/gray_128/imgs/nextkey_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/nextkey_over.png b/stuff/config/qss/gray_128/imgs/nextkey_over.png deleted file mode 100644 index 49b0621..0000000 Binary files a/stuff/config/qss/gray_128/imgs/nextkey_over.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/over.png b/stuff/config/qss/gray_128/imgs/over.png deleted file mode 100644 index d40b36f..0000000 Binary files a/stuff/config/qss/gray_128/imgs/over.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/over_pressed_yellow.png b/stuff/config/qss/gray_128/imgs/over_pressed_yellow.png deleted file mode 100644 index 4705d53..0000000 Binary files a/stuff/config/qss/gray_128/imgs/over_pressed_yellow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/over_yellow.png b/stuff/config/qss/gray_128/imgs/over_yellow.png deleted file mode 100644 index b885b2e..0000000 Binary files a/stuff/config/qss/gray_128/imgs/over_yellow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/plus.png b/stuff/config/qss/gray_128/imgs/plus.png deleted file mode 100644 index e6c4460..0000000 Binary files a/stuff/config/qss/gray_128/imgs/plus.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/prevkey.png b/stuff/config/qss/gray_128/imgs/prevkey.png deleted file mode 100644 index fcaaa93..0000000 Binary files a/stuff/config/qss/gray_128/imgs/prevkey.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/prevkey_disabled.png b/stuff/config/qss/gray_128/imgs/prevkey_disabled.png deleted file mode 100644 index d8f71be..0000000 Binary files a/stuff/config/qss/gray_128/imgs/prevkey_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/prevkey_over.png b/stuff/config/qss/gray_128/imgs/prevkey_over.png deleted file mode 100644 index 47a67ca..0000000 Binary files a/stuff/config/qss/gray_128/imgs/prevkey_over.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/right_arrow_black.png b/stuff/config/qss/gray_128/imgs/right_arrow_black.png deleted file mode 100644 index 8878c62..0000000 Binary files a/stuff/config/qss/gray_128/imgs/right_arrow_black.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_downarrow.png b/stuff/config/qss/gray_128/imgs/sb_g_downarrow.png deleted file mode 100644 index 3857656..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_downarrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_downarrow_pressed.png b/stuff/config/qss/gray_128/imgs/sb_g_downarrow_pressed.png deleted file mode 100644 index 902507d..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_downarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_hhandle.png b/stuff/config/qss/gray_128/imgs/sb_g_hhandle.png deleted file mode 100644 index 3223c8f..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_hhandle.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_hline.png b/stuff/config/qss/gray_128/imgs/sb_g_hline.png deleted file mode 100644 index 3c90dc9..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_hline.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_larrow.png b/stuff/config/qss/gray_128/imgs/sb_g_larrow.png deleted file mode 100644 index f43ecc2..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_larrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_larrow_pressed.png b/stuff/config/qss/gray_128/imgs/sb_g_larrow_pressed.png deleted file mode 100644 index bce40ff..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_larrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_rarrow.png b/stuff/config/qss/gray_128/imgs/sb_g_rarrow.png deleted file mode 100644 index dbf5290..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_rarrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_rarrow_pressed.png b/stuff/config/qss/gray_128/imgs/sb_g_rarrow_pressed.png deleted file mode 100644 index efad977..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_rarrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_uparrow.png b/stuff/config/qss/gray_128/imgs/sb_g_uparrow.png deleted file mode 100644 index d1fe4a5..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_uparrow.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_uparrow_pressed.png b/stuff/config/qss/gray_128/imgs/sb_g_uparrow_pressed.png deleted file mode 100644 index f69baf8..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_uparrow_pressed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_vhandle.png b/stuff/config/qss/gray_128/imgs/sb_g_vhandle.png deleted file mode 100644 index 08f83f7..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_vhandle.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/sb_g_vline.png b/stuff/config/qss/gray_128/imgs/sb_g_vline.png deleted file mode 100644 index db48f8b..0000000 Binary files a/stuff/config/qss/gray_128/imgs/sb_g_vline.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/segment_disabled.png b/stuff/config/qss/gray_128/imgs/segment_disabled.png deleted file mode 100644 index 275b464..0000000 Binary files a/stuff/config/qss/gray_128/imgs/segment_disabled.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/segment_linked.png b/stuff/config/qss/gray_128/imgs/segment_linked.png deleted file mode 100644 index a853ccf..0000000 Binary files a/stuff/config/qss/gray_128/imgs/segment_linked.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/segment_unlinked.png b/stuff/config/qss/gray_128/imgs/segment_unlinked.png deleted file mode 100644 index 229fcc4..0000000 Binary files a/stuff/config/qss/gray_128/imgs/segment_unlinked.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/selectiontool_position.png b/stuff/config/qss/gray_128/imgs/selectiontool_position.png deleted file mode 100644 index 5d5644f..0000000 Binary files a/stuff/config/qss/gray_128/imgs/selectiontool_position.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/selectiontool_rotation.png b/stuff/config/qss/gray_128/imgs/selectiontool_rotation.png deleted file mode 100644 index faa48d0..0000000 Binary files a/stuff/config/qss/gray_128/imgs/selectiontool_rotation.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/selectiontool_scalepeg.png b/stuff/config/qss/gray_128/imgs/selectiontool_scalepeg.png deleted file mode 100644 index cccc31b..0000000 Binary files a/stuff/config/qss/gray_128/imgs/selectiontool_scalepeg.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/selectiontool_thickness.png b/stuff/config/qss/gray_128/imgs/selectiontool_thickness.png deleted file mode 100644 index 1d4fca6..0000000 Binary files a/stuff/config/qss/gray_128/imgs/selectiontool_thickness.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/separator.png b/stuff/config/qss/gray_128/imgs/separator.png deleted file mode 100644 index 6be22af..0000000 Binary files a/stuff/config/qss/gray_128/imgs/separator.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/separator_h.png b/stuff/config/qss/gray_128/imgs/separator_h.png deleted file mode 100644 index 72cc296..0000000 Binary files a/stuff/config/qss/gray_128/imgs/separator_h.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/separator_v.png b/stuff/config/qss/gray_128/imgs/separator_v.png deleted file mode 100644 index 7e9b0ba..0000000 Binary files a/stuff/config/qss/gray_128/imgs/separator_v.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/subfolder.png b/stuff/config/qss/gray_128/imgs/subfolder.png deleted file mode 100644 index 1cb9607..0000000 Binary files a/stuff/config/qss/gray_128/imgs/subfolder.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/topbar_bg.png b/stuff/config/qss/gray_128/imgs/topbar_bg.png deleted file mode 100644 index 6c149a2..0000000 Binary files a/stuff/config/qss/gray_128/imgs/topbar_bg.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border.png b/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border.png deleted file mode 100644 index fd7ed7b..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_active.png b/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_active.png deleted file mode 100644 index c3de269..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_active.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_float.png b/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_float.png deleted file mode 100644 index e59f8c7..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_float.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_float_active.png b/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_float_active.png deleted file mode 100644 index 5dae5f7..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tpaneltitlebar_border_float_active.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree17_branch-closed.png b/stuff/config/qss/gray_128/imgs/tree17_branch-closed.png deleted file mode 100644 index d06b79b..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree17_branch-closed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree17_branch-closed_nosib.png b/stuff/config/qss/gray_128/imgs/tree17_branch-closed_nosib.png deleted file mode 100644 index 629567a..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree17_branch-closed_nosib.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree17_branch-end.png b/stuff/config/qss/gray_128/imgs/tree17_branch-end.png deleted file mode 100644 index 5e58d34..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree17_branch-end.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree17_branch-more.png b/stuff/config/qss/gray_128/imgs/tree17_branch-more.png deleted file mode 100644 index c3d0a3f..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree17_branch-more.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree17_branch-open.png b/stuff/config/qss/gray_128/imgs/tree17_branch-open.png deleted file mode 100644 index d2429c7..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree17_branch-open.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree17_branch-open_nosib.png b/stuff/config/qss/gray_128/imgs/tree17_branch-open_nosib.png deleted file mode 100644 index 3c9046e..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree17_branch-open_nosib.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree17_vline.png b/stuff/config/qss/gray_128/imgs/tree17_vline.png deleted file mode 100644 index 56cc596..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree17_vline.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree_branch-closed.png b/stuff/config/qss/gray_128/imgs/tree_branch-closed.png deleted file mode 100644 index 3d486c0..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree_branch-closed.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree_branch-closed_nosib.png b/stuff/config/qss/gray_128/imgs/tree_branch-closed_nosib.png deleted file mode 100644 index df4f4c2..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree_branch-closed_nosib.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree_branch-end.png b/stuff/config/qss/gray_128/imgs/tree_branch-end.png deleted file mode 100644 index 81a39fa..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree_branch-end.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree_branch-more.png b/stuff/config/qss/gray_128/imgs/tree_branch-more.png deleted file mode 100644 index 88648eb..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree_branch-more.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree_branch-open.png b/stuff/config/qss/gray_128/imgs/tree_branch-open.png deleted file mode 100644 index 883cde5..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree_branch-open.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree_branch-open_nosib.png b/stuff/config/qss/gray_128/imgs/tree_branch-open_nosib.png deleted file mode 100644 index bd8f5af..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree_branch-open_nosib.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/tree_vline.png b/stuff/config/qss/gray_128/imgs/tree_vline.png deleted file mode 100644 index f379a2b..0000000 Binary files a/stuff/config/qss/gray_128/imgs/tree_vline.png and /dev/null differ diff --git a/stuff/config/qss/gray_128/imgs/up_arrow_black.png b/stuff/config/qss/gray_128/imgs/up_arrow_black.png deleted file mode 100644 index 6c27909..0000000 Binary files a/stuff/config/qss/gray_128/imgs/up_arrow_black.png and /dev/null differ