This issue is related to : https://github.com/harvesthq/chosen/issues/222

And the fix is to add the class "chzn-rtl" to the select field and it should work

Comments

shadcn’s picture

Assigned: Unassigned » shadcn

Thanks for the report. I'll fix this.

Sel_Space’s picture

Status: Active » Closed (fixed)

This is related to the chosen library and here is a link to fix it : https://github.com/harvesthq/chosen/issues/447

jshosseini’s picture

Issue summary: View changes

hi, is there any easy solution to this?

arefen’s picture

Hi, i fixed this problem with change this line:
in sites/all/libraries/chosen/chosen.css and section .chosen-container .chosen-drop

change

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

to

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: 9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}