AssetsTab.qss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. QSplitter#jobDialogSplitter {
  9. qproperty-childrenCollapsible: False;
  10. }
  11. /* FilteredSearchWidget */
  12. AzQtComponents--FilteredSearchWidget#jobFilteredSearchWidget,
  13. AzQtComponents--FilteredSearchWidget#detailsFilterWidget,
  14. AzQtComponents--FilteredSearchWidget#assetDataFilteredSearchWidget {
  15. padding: 8px;
  16. background-color: rgb(40,40,40);
  17. qproperty-textFilterFillsWidth: False;
  18. }
  19. AzQtComponents--FilteredSearchWidget#assetDataFilteredSearchWidget {
  20. padding: 8px;
  21. background-color: rgb(40,40,40);
  22. qproperty-textFilterFillsWidth: True;
  23. }
  24. AzQtComponents--FilteredSearchWidget #textSearchContainer,
  25. AzQtComponents--FilteredSearchWidget #filteredParent,
  26. AzQtComponents--FilteredSearchWidget #filteredLayout {
  27. background-color: rgb(40,40,40);
  28. }
  29. AzQtComponents--FilteredSearchWidget QLineEdit {
  30. background-color: #e9e9e9;
  31. }
  32. /* filteredParent is in FilteredSearchWidget */
  33. AzQtComponents--FilteredSearchWidget #filteredParent {
  34. margin-top: 6px;
  35. }
  36. /* Tighten things up a bit in the Asset Processor */
  37. #jobFilteredSearchWidget AzQtComponents--FilterCriteriaButton,
  38. #detailsFilterWidget AzQtComponents--FilterCriteriaButton
  39. {
  40. max-height: 22px;
  41. }
  42. /* Tighten things up a bit in the Asset Processor */
  43. #jobFilteredSearchWidget AzQtComponents--FilterCriteriaButton QLabel,
  44. #detailsFilterWidget AzQtComponents--FilterCriteriaButton QLabel
  45. {
  46. padding-left: 0px;
  47. padding-right: 0px;
  48. }
  49. /* filteredLayout is in FilteredSearchWidget */
  50. AzQtComponents--FilteredSearchWidget #filteredLayout {
  51. /* Negative margin to negate the default FlowLayout margin */
  52. margin: -4px;
  53. }
  54. #jobFilteredSearchWidget QTreeView,
  55. #detailsFilterWidget QTreeView {
  56. /* Apply a custom border to the inner tree view, to make it stand out a little */
  57. background-color: rgb(34,34,34);
  58. border: 1px solid rgb(70,70,70);
  59. border-radius: 2px;
  60. /* These filters show only one category for "Status" so remove the indentation and therefore the indicators */
  61. qproperty-indentation: 0;
  62. qproperty-expandsOnDoubleClick: 0;
  63. }
  64. #jobFilteredSearchWidget AzQtComponents--SearchTypeSelector,
  65. #detailsFilterWidget AzQtComponents--SearchTypeSelector {
  66. qproperty-lineEditSearchVisible: 0;
  67. }
  68. /* TableView */
  69. AzQtComponents--TableView, #builderList {
  70. background-color: rgb(45,45,45); /* Odd row */
  71. alternate-background-color: rgb(34,34,34); /* Even row */
  72. selection-background-color: rgb(73,73,73);
  73. }
  74. AzQtComponents--TableView::branch:selected,
  75. AzQtComponents--TableView::item:selected {
  76. background: rgb(73,73,73);
  77. }
  78. AzQtComponents--TableView::branch:hover,
  79. AzQtComponents--TableView::item:hover {
  80. background: rgb(60,60,60);
  81. }
  82. AzQtComponents--TableView QHeaderView::section {
  83. background-color: rgb(34,34,34);
  84. }
  85. AzQtComponents--TableView#jobTreeView {
  86. margin-bottom: 0px;
  87. }
  88. QStackedWidget#jobLogStackedWidget {
  89. margin-bottom: 0px;
  90. }
  91. .solo {
  92. margin-top: 12px;
  93. }
  94. QFrame#jobLogLabel,
  95. QFrame#jobContextLogLabel {
  96. margin-top: 12px;
  97. }
  98. QLabel#jobLogPlaceholderLabel {
  99. background-color: rgb(34,34,34);
  100. padding: 8px;
  101. padding-top: 16px;
  102. }