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.
 
 
 
 
 

65 lines
2.2 KiB

  1. /*!
  2. * Fancytree "ThemeRoller" skin.
  3. * This file should be included after a jQuery Themeroller style sheet.
  4. * It is meant to be used together with the ext-themeroller extension.
  5. *
  6. * DON'T EDIT THE CSS FILE DIRECTLY, since it is automatically generated from
  7. * the LESS templates.
  8. */
  9. // Import common styles
  10. @import "../skin-common.less";
  11. /*******************************************************************************
  12. * Styles specific to this skin.
  13. *
  14. * This section is automatically generated from the `ui-fancytree.less` template.
  15. ******************************************************************************/
  16. // Override the variable after the import.
  17. // NOTE: Variables are always resolved as the last definition, even if it is
  18. // after where it is used.
  19. @fancy-use-sprites: true; // false: suppress all background images (i.e. icons)
  20. @fancy-line-height: 20px; // height of a nodes selection bar including borders
  21. @fancy-node-v-spacing: 0px; // gap between two node borders
  22. @fancy-icon-width: 16px;
  23. @fancy-icon-height: 16px;
  24. @fancy-icon-spacing: 3px; // margin between icon/icon or icon/title
  25. @fancy-icon-ofs-top: 2px; // extra vertical offset for expander, checkbox and icon
  26. @fancy-title-ofs-top: 0px; // extra vertical offset for title
  27. @fancy-node-border-width: 1px;
  28. @fancy-node-border-radius: 0px;
  29. @fancy-node-outline-width: 1px;
  30. // We need to define this variable here (not in skin-common.less) to make it
  31. // work with grunt and webpack:
  32. @fancy-image-prefix: "./skin-themeroller/";
  33. // Use 'data-uri(...)' to embed the image into CSS instead of linking to 'loading.gif':
  34. // @fancy-loading-url: data-uri("@{fancy-image-prefix}loading.gif");
  35. // Set to `true` to use `data-uri(...)` which will embed icons.gif into CSS
  36. // instead of linking to that file:
  37. // @fancy-inline-sprites: true;
  38. /*******************************************************************************
  39. * Node titles
  40. */
  41. .fancytree-plain {
  42. span.fancytree-node {
  43. border: @fancy-node-border-width solid transparent; // avoid jumping, when a border is added on hover
  44. }
  45. }
  46. /*******************************************************************************
  47. * 'table' extension
  48. */
  49. table.fancytree-ext-table tbody {
  50. tr td {
  51. border: 1px solid transparent;
  52. }
  53. }