GreekPalette.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. This is directly from @import "../plugins/resources/css/InsertEntity.css";
  3. It's here because certain details may change over time. The classes
  4. remain the same so applying the original will be easy in case of change.
  5. */
  6. .dojoxEntityPalette {
  7. /* outer node of the dropdown */
  8. border: 1px solid #999;
  9. background: #fff;
  10. -moz-border-radius: 3pt;
  11. }
  12. .dojoxEntityPaletteCell {
  13. /* individual cell of the drop down */
  14. border: 1px dotted gray;
  15. width: 20px; /* todo: don't hardcode width/height; it's neither necessary nor a11y safe */
  16. line-height: 18px;
  17. overflow: hidden;
  18. z-index: 10;
  19. text-align: center;
  20. }
  21. .dojoxEntityPaletteCell:hover, .dojoxEntityPaletteCell:active, .dojoxEntityPaletteCell:focus {
  22. width: 18px;
  23. line-height: 16px;
  24. overflow: hidden;
  25. cursor: default;
  26. border:1px dashed #000;
  27. outline:1px dashed #dedede;
  28. }
  29. .dojoxEntityPalettePreviewTable {
  30. table-layout: auto;
  31. font-size: 1em;
  32. width: 100%;
  33. }
  34. .dojoxEntityPalettePreviewHeader {
  35. font-size: .8em;
  36. padding: 3px 3px 3px 3px;
  37. }
  38. .dojoxEntityPalettePreviewDetailEntity {
  39. font-size: .8em;
  40. font-weight: bold;
  41. }
  42. .dojoxEntityPalettePreviewDetail {
  43. font-size: .8em;
  44. padding: 3px 3px 3px 3px;
  45. }
  46. .dijit_a11y .dojoxEntityPaletteCell {
  47. background-color:transparent !important;
  48. }