ListInput.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .dojoxListInput {
  2. border:1px solid #ccc;
  3. background-color:#efefef;
  4. height:auto !important;
  5. max-height:60px;
  6. min-height:20px;
  7. overflow:auto;
  8. position:relative
  9. }
  10. .dojoxListInput ul {
  11. margin:0;
  12. padding:0
  13. }
  14. .dijitDialogCloseIcon {
  15. display:none;
  16. }
  17. .dojoxListInputClosable .dijitDialogCloseIcon{
  18. display:inline
  19. }
  20. .dojoxListInputClosable {
  21. padding-right:18px !important
  22. }
  23. .dojoxListInputItem {
  24. float:left;
  25. list-style-type:none;
  26. margin:1px 5px 1px 1px;
  27. padding:0
  28. }
  29. .dojoxListInputItem .closeText {
  30. display:none;
  31. position:absolute;
  32. }
  33. .dojoxListInputItem .dijitDialogCloseIcon{
  34. right:auto !important;
  35. border:0 !important;
  36. padding:0!important;
  37. }
  38. .dojoxListInputMatch {
  39. border :1px solid #5EB55E;
  40. background-color:#efffef
  41. }
  42. .dojoxListInputMismatch {
  43. border :1px solid #B55E5E;
  44. background-color:#ffefef
  45. }
  46. .dojoxListInput.dojoxListInputFocused {
  47. border:1px solid #000;
  48. border-right:1px solid #ccc;
  49. border-bottom:1px solid #ccc;
  50. background-color:#fff
  51. }
  52. .dojoxListInputNode {
  53. cursor:text;
  54. }
  55. .dojoxListInput .dijitTextBox {
  56. background:#efefef !important;
  57. border:0 !important;
  58. }
  59. .dojoxListInputFocused .dijitTextBox {
  60. background: #fff !important;
  61. border:0 !important;
  62. }
  63. .dojoxListInputItem .dijitTextBox {
  64. width:auto !important;
  65. border:0 !important;
  66. }
  67. .dojoxListInputNode {
  68. float:none;
  69. }
  70. .dojoxListInputItemEdited{
  71. display:none !important
  72. }
  73. .dojoxListInputItem .dijitInline{
  74. display:inline !important
  75. }