Стиль селектора изображений google recaptcha в сообществах Lightning - PullRequest
0 голосов
/ 06 мая 2020

Я реализовал Google reCaptcha V2 в сообществе salesforce lightning. Все работает нормально, кроме стиля селектора изображений. Я не могу расположить селектор изображений, а также загружаемые изображения поверх кнопки отправки. Пробовал различные css изменения, но не смог это исправить. Кто-нибудь сталкивался с подобной проблемой с капчей в сообществах Lightning, дайте мне знать, есть ли исправление. Заранее спасибо.

enter image description here

1 Ответ

0 голосов
/ 06 мая 2020

Попробуйте эти;

.cUBC_CommunityCreateAccount html body > div:nth-of-type(2) {
  left: 400px !important;
}

.ui-widget html body > div:nth-of-type(2) {
  left: 400px !important;
}

.cUBC_CommunityCreateAccount html body div:nth-of-type(2) {
  left: 400px !important;
}

.ui-widget html body div:nth-of-type(2) {
  left: 400px !important;
}

.cUBC_CommunityCreateAccount html body > div:nth-child(2) {
  left: 400px !important;
}

.ui-widget html body > div:nth-child(2) {
  left: 400px !important;
}

.cUBC_CommunityCreateAccount html body div:nth-child(2) {
  left: 400px !important;
}

.ui-widget html body div:nth-child(2) {
  left: 400px !important;
}
...