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.

123456789101112131415161718192021222324252627
  1. /*!
  2. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: AGPL-3.0-or-later
  4. */
  5. .picker-window {
  6. display: inline-block;
  7. padding: 16px;
  8. margin: 20px;
  9. background-color: var(--color-main-background);
  10. color: var(--color-main-text);
  11. border-radius: var(--border-radius-large);
  12. box-shadow: 0 0 10px var(--color-box-shadow);
  13. cursor: default;
  14. }
  15. .picker-window.small {
  16. max-width: 400px;
  17. }
  18. .picker-window h2 {
  19. margin: 20px auto;
  20. }
  21. .apptoken-link {
  22. margin: 20px;
  23. display: block;
  24. }