Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_desktop-picker.scss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .desktop-picker-pane {
  2. height: 320px;
  3. overflow-x: hidden;
  4. overflow-y: auto;
  5. width: 100%;
  6. &.source-type-screen {
  7. .desktop-picker-source {
  8. margin-left: auto;
  9. margin-right: auto;
  10. width: 50%;
  11. }
  12. .desktop-source-preview-thumbnail {
  13. width: 100%;
  14. }
  15. .desktop-source-preview-label {
  16. display: none;
  17. }
  18. }
  19. &.source-type-window {
  20. .desktop-picker-source {
  21. display: inline-block;
  22. width: 30%;
  23. }
  24. }
  25. }
  26. .desktop-picker-source {
  27. color: $defaultDarkFontColor;
  28. margin-top: 10px;
  29. text-align: center;
  30. &.is-selected {
  31. .desktop-source-preview-image-container {
  32. background: rgba(0, 0, 0, 0.1);
  33. border-radius: $borderRadius;
  34. }
  35. }
  36. }
  37. .desktop-source-preview-label {
  38. margin-top: 3px;
  39. overflow: hidden;
  40. text-overflow: ellipsis;
  41. white-space: nowrap;
  42. }
  43. .desktop-source-preview-thumbnail {
  44. box-shadow: 5px 5px 5px grey;
  45. height: auto;
  46. max-width: 100%;
  47. }
  48. .desktop-source-preview-image-container {
  49. padding: 10px;
  50. }