Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

SceneInventory: Choose loader in asset switcher #2262

Merged
merged 9 commits into from
Nov 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 23 additions & 5 deletions openpype/style/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -722,14 +722,13 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
}

#CompleterView::item {
padding: 2px 4px 2px 4px;
border-left: 3px solid {color:bg-view};
background: {color:bg-view-hover};
color: {color:font};
padding-left: 0px;
}

#CompleterView::item:hover {
border-left-color: {palette:blue-base};
background: {color:bg-view-selection};
color: {color:font};
background: {color:bg-view-hover};
}

/* Launcher specific stylesheets */
Expand Down Expand Up @@ -771,6 +770,25 @@ QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
border: 1px solid #ff0000;
}

/* Scene Inventory*/
#ButtonWithMenu {
padding-right: 16px;
border: 1px solid #4A4949;
border-radius: 2px;
}
#ButtonWithMenu::menu-button {
border: 1px solid #4A4949;
width: 12px;
border-top-left-radius: 0px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 0px;
}

#ButtonWithMenu[state="1"], #ButtonWithMenu[state="1"]::menu-button, #ButtonWithMenu[state="1"]::menu-button:hover {
border-color: green;
}

/* Python console interpreter */
#PythonInterpreterOutput, #PythonCodeEditor {
font-family: "Roboto Mono";
Expand Down
Loading