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/node_modules/rc-cascader/assets/list.less
@select-prefix: ~'rc-cascader';

.@{select-prefix} {
  &-dropdown {
    min-height: auto;
  }

  &-menus {
    display: flex;
    flex-wrap: nowrap;
  }

  &-menu {
    flex: none;
    margin: 0;
    padding: 0;
    list-style: none;
    border-left: 1px solid blue;
    height: 180px;
    min-width: 100px;
    overflow: auto;

    &:first-child {
      border-left: 0;
    }

    &-item {
      display: flex;
      flex-wrap: nowrap;
      padding-right: 20px;
      position: relative;

      &:hover {
        background: rgba(0, 0, 255, 0.1);
      }

      &-selected {
        background: rgba(0, 0, 255, 0.05);
      }

      &-active {
        background: rgba(0, 255, 0, 0.1);
      }

      &-disabled {
        opacity: 0.5;
      }

      

      &-content {
        flex: auto;
      }

      &-expand-icon {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
      }
    }
  }

  &-checkbox {
    position: relative;
    display: block;
    flex: none;
    width: 20px;
    height: 20px;
    border: 1px solid blue;

    &::after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      content: '';
    }

    &-checked::after {
      content: '✔️';
    }

    &-indeterminate::after {
      content: '➖';
    }
  }

  // ====================== RTL ======================
  &-rtl {
    direction: rtl;

    .@{select-prefix}-menu {
      flex: none;
      margin: 0;
      padding: 0;
      list-style: none;
      border-left: none;
      border-right: 1px solid blue;

      &:first-child {
        border-right: 0;
      }
    }
  }
}