InsertEntity.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. .dijitAdditionalEditorIconInsertEntity {
  2. /* icon in toolbar for this plugin */
  3. background-image: url(../icons/insertEntity.gif);
  4. background-repeat: no-repeat;
  5. background-position: center center;
  6. width: 18px;
  7. height: 18px;
  8. }
  9. .dijitDisabled .dijitAdditionalEditorIconInsertEntity {
  10. /* icon in toolbar for this plugin, when the plugin is disabled */
  11. background-image: url(../icons/insertEntityDisabled.gif);
  12. }
  13. .dojoxEntityPalette {
  14. /* outer node of the dropdown */
  15. border: 1px solid #999;
  16. background: #fff;
  17. -moz-border-radius: 3pt;
  18. }
  19. .dojoxEntityPaletteCell {
  20. /* individual cell of the drop down */
  21. border: 1px dotted gray;
  22. width: 20px; /* todo: don't hardcode width/height; it's neither nececessary nor a11y safe */
  23. line-height: 18px;
  24. overflow: hidden;
  25. z-index: 10;
  26. text-align: center;
  27. }
  28. .dojoxEntityPaletteCellHover, .dojoxEntityPaletteCellActive, .dojoxEntityPaletteCellFocused {
  29. width: 18px;
  30. line-height: 16px;
  31. overflow: hidden;
  32. cursor: default;
  33. border:1px dashed #000;
  34. outline:1px dashed #dedede;
  35. }
  36. .dojoxEntityPalettePreviewTable {
  37. table-layout: auto;
  38. font-size: 1em;
  39. width: 100%;
  40. }
  41. .dojoxEntityPalettePreviewHeader {
  42. font-size: .8em;
  43. padding: 3px 3px 3px 3px;
  44. }
  45. .dojoxEntityPalettePreviewDetailEntity {
  46. font-size: 3em;
  47. font-weight: bold;
  48. width: 1em;
  49. text-align: center;
  50. }
  51. .dojoxEntityPalettePreviewDetail {
  52. font-size: 1em;
  53. vertical-align: middle;
  54. font-weight: bold;
  55. padding: 3px 3px 3px 3px;
  56. }
  57. .dijit_a11y .dojoxEntityPaletteCell {
  58. background-color:transparent !important;
  59. }