您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**
  2. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. .systemtags-select2-dropdown {
  7. .select2-result-label {
  8. .checkmark {
  9. visibility: hidden;
  10. margin-left: -5px;
  11. margin-right: 5px;
  12. padding: 4px;
  13. }
  14. .new-item .systemtags-actions {
  15. display: none;
  16. }
  17. }
  18. .select2-selected .select2-result-label .checkmark {
  19. visibility: visible;
  20. }
  21. .select2-result-label .icon {
  22. display: inline-block;
  23. opacity: .5;
  24. &.rename {
  25. padding: 4px;
  26. }
  27. }
  28. .systemtags-actions {
  29. position: absolute;
  30. right: 5px;
  31. }
  32. .systemtags-rename-form {
  33. display: inline-block;
  34. width: calc(100% - 20px);
  35. top: -6px;
  36. position: relative;
  37. input {
  38. display: inline-block;
  39. height: 30px;
  40. width: calc(100% - 40px);
  41. }
  42. }
  43. .label {
  44. width: 85%;
  45. display: inline-block;
  46. overflow: hidden;
  47. text-overflow: ellipsis;
  48. &.hidden {
  49. display: none;
  50. }
  51. }
  52. span {
  53. line-height: 25px;
  54. }
  55. .systemtags-item {
  56. display: inline-block;
  57. height: 25px;
  58. width: 100%;
  59. }
  60. .select2-result-label {
  61. height: 25px;
  62. }
  63. }
  64. .systemtags-select2-container {
  65. width: 100%;
  66. .select2-choices {
  67. flex-wrap: nowrap !important;
  68. max-height: 44px;
  69. }
  70. .select2-choices .select2-search-choice.select2-locked .label {
  71. opacity: 0.5;
  72. }
  73. }
  74. #select2-drop.systemtags-select2-dropdown .select2-results li.select2-result {
  75. padding: 5px;
  76. }