HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/design.system/src/molecules/Inputs/Select/сustom.scss
.customSelectStyle {
  min-width: 240px;
  height: 40px;

  // Общие настройки
  .ant-select-selector {
    border-radius: var(--radius200);
    padding: var(--space300) var(--space400) !important;
  }

  // Настройки селекта, кроме состояний: hover, focus, disabled, error
  &:not(:hover):not(.ant-select-focused):not(.ant-select-disabled):not(.ant-select-status-error) {
    .ant-select-selector {
      border-color: var(--borderDefaultPrimary) !important;
    }
  }

  // Настройки при focus
  &.ant-select-focused {
    .ant-select-selector {
      border-width: 2px !important;
      box-shadow: none !important;
    }

    &.ant-select-status-error {
      .ant-select-selector {
        border-color: var(--borderDangerPrimary) !important;
      }
    }
  }

  // Настройки при disabled
  &.ant-select-disabled {
    .ant-select-selector {
      background-color: var(--backgroundDisabledPrimary) !important;
      border-color: var(--borderDisabledPrimary) !important;
    }
  }

  // Настройки при error
  &.ant-select-status-error {
    .ant-select-selector {
      border-color: var(--borderDangerTertiary) !important;
    }

    &:hover {
      .ant-select-selector {
        border-color: var(--borderDangerPrimary) !important;
      }
    }
  }

  // Настройки для placeholder
  .ant-select-selection-placeholder {
    color: var(--textDefaultTertiary) !important;  // Используйте CSS-переменную или конкретный цвет
  }
}