Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2 KiB

  1. /*
  2. * Ext JS Library 2.2
  3. * Copyright(c) 2006-2008, Ext JS, LLC.
  4. * licensing@extjs.com
  5. *
  6. * http://extjs.com/license
  7. */
  8. .x-combo-list {
  9. border:1px solid #98c0f4;
  10. background:#ddecfe;
  11. zoom:1;
  12. overflow:hidden;
  13. }
  14. .x-combo-list-inner {
  15. overflow:auto;
  16. background:white;
  17. position:relative; /* for calculating scroll offsets */
  18. zoom:1;
  19. overflow-x:hidden;
  20. }
  21. .x-combo-list-hd {
  22. font:bold 11px tahoma, arial, helvetica, sans-serif;
  23. color:#15428b;
  24. background-image: url(../images/default/layout/panel-title-light-bg.gif);
  25. border-bottom:1px solid #98c0f4;
  26. padding:3px;
  27. }
  28. .x-resizable-pinned .x-combo-list-inner {
  29. border-bottom:1px solid #98c0f4;
  30. }
  31. .x-combo-list-item {
  32. font:normal 12px tahoma, arial, helvetica, sans-serif;
  33. padding:2px;
  34. border:1px solid #fff;
  35. white-space: nowrap;
  36. overflow:hidden;
  37. text-overflow: ellipsis;
  38. }
  39. .x-combo-list .x-combo-selected{
  40. border:1px dotted #a3bae9 !important;
  41. background:#DFE8F6;
  42. cursor:pointer;
  43. }
  44. .x-combo-noedit{
  45. cursor:pointer;
  46. }
  47. .x-combo-list .x-toolbar {
  48. border-top:1px solid #98c0f4;
  49. border-bottom:0 none;
  50. }
  51. .x-combo-list-small .x-combo-list-item {
  52. font:normal 11px tahoma, arial, helvetica, sans-serif;
  53. }