ngx-intl-tel-input下拉悬停效果如何禁用

问题描述 投票:0回答:1

问题: 当我将鼠标悬停在国家/地区列表中的下拉项目上时,我看到灰色背景颜色。我想禁用此悬停颜色,同时保持下拉菜单功能。我尝试使用背景颜色:透明!重要;,但灰色仍然出现。

我尝试过的: 设置背景颜色:透明!重要;在 .iti__country-list .iti__country:hover 使用不同的背景颜色甚至初始颜色,但这些都不起作用。

<div class="form-field">
  <label for="phone">Phone Number<span class="required">*</span></label>
  <ngx-intl-tel-input
    class="ngx-tel-input"
    [preferredCountries]="['us', 'gb']"
    [enableAutoCountrySelect]="true"
    [enablePlaceholder]="true"
    [searchCountryFlag]="true"
    [searchCountryField]="[SearchCountryField.Name, SearchCountryField.DialCode]"
    [selectedCountryISO]="CountryISO.UnitedStates"
    [separateDialCode]="true"
    formControlName="mobileNumber"
  ></ngx-intl-tel-input>
</div>




.ngx-tel-input .iti {
    width: 99% !important;
  }
   
  .ngx-tel-input input {
    width: 100% !important;
    padding-left: 60px !important; /* Adjust padding-left for alignment with other fields */
    height: 74px; /* Matching the height of other form fields */
    border-radius: 61px; /* Same border-radius as other inputs */
    background-color: rgba(217, 217, 217, 0.23);
    border: 1px solid #CDC9C9; /* Consistent border */
  }
   
  .ngx-tel-input .iti__flag-container {
    width: 60px !important; /* Flag container width */
    height: 74px !important; /* Match the height of the input */
  }
   
  .ngx-tel-input input::placeholder {
    color: rgba(0, 0, 0, 0.507) !important; /* Placeholder color matching */
  }
   
  .ngx-tel-input input:focus {
    border-color: var(--dark) !important; /* Focus border color for consistency */
    box-shadow: none !important; /* Remove shadow on focus */
  }
  /* Adjust placeholder alignment for the phone number input */
  .ngx-tel-input input::placeholder {
    padding-left: 30px; /* Add some padding to the left to move the placeholder */
    color: rgba(0, 0, 0, 0.507); /* Maintain the existing placeholder color */
  }
  /* Remove rounded corners of the search input */
  .iti__country-list .iti__search input {
    border-radius: 0 !important;
    border: none !important; /* To remove any borders */
    border-bottom: 1px solid #ccc; /* Optional: add a bottom border if needed */
  }
   
   
 
  .ngx-tel-input input {
    padding-left: 83px  !important; /* Adjust left padding to make space for the flag and dial code */
    width: 100% !important;
    height: 74px;
    border-radius: 61px;
    background-color: rgba(217, 217, 217, 0.23);
    border: 1px solid #CDC9C9;
  }
  .ngx-tel-input .iti__country .iti__name {
    margin-left: 15px; /* Adjust the margin as needed for spacing */
    font-size: 16px;   /* You can also adjust the font size if necessary */
  }

  .ngx-tel-input .iti__flag-container {
    width: 90px!important;
    height: 54px!important;
    padding-left: 14px;
}

.step_1_form {
    padding: 50px;
}

.ngx-tel-input .iti__country-list .iti__selected-dial-code:hover {
    background-color: hsla(0, 100%, 50%, 0.5); 
}

问题: 当我将鼠标悬停在国家/地区列表中的下拉项目上时,我看到灰色背景颜色。我想禁用此悬停颜色,同时保持下拉菜单功能。我尝试使用背景颜色:透明!重要;,但灰色仍然出现。

我尝试过的: 设置背景颜色:透明!重要;在 .iti__country-list .iti__country:hover 使用不同的背景颜色,甚至初始颜色,但这些都不起作用。enter image description here

html css angular bootstrap-4
1个回答
0
投票

您可以使用下面的 CSS,将

background-color
设置为
transparent
,这可能会解决您的问题。

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

只需检查有问题的元素,然后在右侧边栏单击

:hov
模拟悬停,然后检查元素,其中一个CSS将具有背景颜色。复制此 CSS 并粘贴到您的 CSS 中进行修改。

Stackblitz 演示

© www.soinside.com 2019 - 2024. All rights reserved.