PublishLibrary.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. @import "../css/variables.module";
  2. .excalidraw {
  3. .publish-library {
  4. &__fields {
  5. display: flex;
  6. flex-direction: column;
  7. label {
  8. padding: 1em;
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. span {
  13. font-weight: 500;
  14. font-size: 1rem;
  15. color: $oc-gray-6;
  16. }
  17. input,
  18. textarea {
  19. width: 70%;
  20. padding: 0.6em;
  21. font-family: var(--ui-font);
  22. }
  23. .required {
  24. color: $oc-red-8;
  25. margin: 0.2rem;
  26. }
  27. }
  28. }
  29. &__buttons {
  30. display: flex;
  31. padding: 0.2rem 0;
  32. justify-content: flex-end;
  33. .ToolIcon__icon {
  34. min-width: 2.5rem;
  35. width: auto;
  36. font-size: 1rem;
  37. }
  38. .ToolIcon_type_button {
  39. margin-left: 1rem;
  40. padding: 0 0.5rem;
  41. }
  42. &--confirm.ToolIcon_type_button {
  43. background-color: $oc-blue-6;
  44. &:hover {
  45. background-color: $oc-blue-8;
  46. }
  47. }
  48. &--cancel.ToolIcon_type_button {
  49. background-color: $oc-gray-5;
  50. &:hover {
  51. background-color: $oc-gray-6;
  52. }
  53. }
  54. .ToolIcon__icon {
  55. color: $oc-white;
  56. .Spinner {
  57. --spinner-color: #fff;
  58. svg {
  59. padding: 0.5rem;
  60. }
  61. }
  62. }
  63. }
  64. .selected-library-items {
  65. display: flex;
  66. padding: 0 0.8rem;
  67. flex-wrap: wrap;
  68. .single-library-item-wrapper {
  69. width: 9rem;
  70. }
  71. }
  72. &-note {
  73. padding: 1em;
  74. font-style: italic;
  75. font-size: 14px;
  76. display: block;
  77. }
  78. }
  79. }