You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
3.7 KiB

  1. /**********************************************************************************
  2. *
  3. * Copyright (C) 2017 MuK IT GmbH
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. **********************************************************************************/
  19. .o_kanban_with_searchpanel {
  20. display: flex;
  21. flex-flow: row wrap;
  22. align-items: flex-start;
  23. .o_onboarding_container {
  24. flex: 1 1 100%;
  25. }
  26. .o_kanban_view {
  27. flex: 1 1 calc(100% - #{$o-searchpanel-w});
  28. overflow: auto;
  29. max-height: 100%;
  30. }
  31. .o_search_panel {
  32. flex: 0 0 $o-searchpanel-w;
  33. overflow: auto;
  34. height: 100%;
  35. padding: $o-searchpanel-p-small $o-searchpanel-p-small $o-searchpanel-p*2 $o-searchpanel-p;
  36. border-right: 1px solid $gray-300;
  37. background-color: white;
  38. .o_search_panel_category .o_search_panel_section_icon {
  39. color: $o-brand-odoo;
  40. }
  41. .o_search_panel_filter .o_search_panel_section_icon {
  42. color: $o-searchpanel-filter-default-color;
  43. }
  44. .o_search_panel_label {
  45. cursor: pointer;
  46. user-select: none;
  47. .o_toggle_fold {
  48. padding: 3px;
  49. }
  50. }
  51. .o_search_panel_section_header {
  52. padding: $o-searchpanel-p-small 0;
  53. }
  54. .list-group-item {
  55. padding: 0 0 $o-searchpanel-p-small 0;
  56. .list-group-item {
  57. padding: 0 0 0 $custom-control-gutter;
  58. margin-bottom: $o-searchpanel-p-tiny*0.5;
  59. &:first-child {
  60. margin-top: $o-searchpanel-p-tiny*0.5;
  61. }
  62. }
  63. span.o_search_panel_label_title {
  64. color: $headings-color;
  65. @include o-text-overflow(inline-block, calc(100% - 22px));
  66. }
  67. header.active {
  68. background-color: $list-group-action-active-bg;
  69. }
  70. }
  71. .o_search_panel_category_value {
  72. header {
  73. margin-left: -$o-searchpanel-p-tiny;
  74. padding-left: $o-searchpanel-p-tiny;
  75. }
  76. .o_search_panel_category_value {
  77. position: relative;
  78. padding-left: $o-searchpanel-p;
  79. padding-bottom: $o-searchpanel-p-tiny;
  80. margin-bottom: 0;
  81. &:before, &:after {
  82. @include o-position-absolute(0, $left: $o-searchpanel-p-tiny)
  83. @include size(1px, 100%);
  84. background: $gray-500;
  85. content: '';
  86. }
  87. &:after {
  88. top: 10px;
  89. @include size(8px, 1px);
  90. }
  91. &:last-child {
  92. &:before {
  93. height: 11px;
  94. }
  95. &:after {
  96. top: 11px;
  97. }
  98. }
  99. }
  100. }
  101. }
  102. }