ComboBox.less 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* dojox.mobile.ComboBox */
  2. .dijitPopup {
  3. // Popup items have a wrapper div (dijitPopup)
  4. // with the real popup inside, and maybe an iframe too
  5. margin: 0;
  6. padding: 0;
  7. position: absolute;
  8. border: 0;
  9. background-color: transparent;
  10. .dijitPopup-styles;
  11. }
  12. .mblReset {
  13. margin: 0;
  14. padding: 0;
  15. border: 0;
  16. line-height: normal;
  17. font: inherit;
  18. color: inherit;
  19. }
  20. .mblComboBoxMenu {
  21. overflow-y: hidden !important;
  22. position: relative;
  23. overflow: hidden;
  24. .mblComboBoxMenu-styles;
  25. }
  26. .mblComboBoxMenuItem {
  27. white-space: nowrap;
  28. .mblComboBoxMenuItem-styles;
  29. }
  30. .mblComboBoxMenuItemSelected {
  31. // dijitMenuItemHover refers to actual mouse over
  32. // dijitMenuItemSelected is used after a menu has been "activated" by
  33. // clicking it, tabbing into it, or being opened from a parent menu,
  34. // and denotes that the menu item has focus or that focus is on a child menu
  35. .mblComboBoxMenuItemSelected-styles;
  36. }
  37. .mblComboBoxMenuPreviousButton,
  38. .mblComboBoxMenuNextButton {
  39. .mblComboBoxMenuPreviousButton-styles;
  40. }