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.
 
 
 
 
 

135 lines
3.9 KiB

  1. /*!
  2. * Fancytree "awesome" skin.
  3. *
  4. * DON'T EDIT THE CSS FILE DIRECTLY, since it is automatically generated from
  5. * the LESS templates.
  6. */
  7. // Import common styles
  8. @import "skin-common.less";
  9. // We need to define this variable here (not in skin-common.less) to make it
  10. // work with grunt and webpack:
  11. @fancy-image-prefix: "./skin-awesome/";
  12. /*******************************************************************************
  13. * Styles specific to this skin.
  14. *
  15. * This section is automatically generated from the `ui-fancytree.less` template.
  16. ******************************************************************************/
  17. @fancy-use-sprites: false; // false: suppress all background images (i.e. icons)
  18. @fancy-loading-url: none;
  19. @fancy-cst-size: 16px;
  20. @fancy-level-indent: @fancy-cst-size; //@fancy-cst-size;
  21. @fancy-line-height: @fancy-cst-size; // height of a nodes selection bar including borders
  22. @fancy-node-v-spacing: 1px; // gap between two node borders
  23. @fancy-icon-width: @fancy-cst-size;
  24. @fancy-icon-height: @fancy-cst-size;
  25. @fancy-icon-spacing: 3px; // margin between icon/icon or icon/title
  26. @fancy-icon-ofs-top: 0px; // extra vertical offset for expander, checkbox and icon
  27. @fancy-title-ofs-top: 0px; // extra vertical offset for title
  28. @fancy-node-border-width: 1px;
  29. @fancy-node-border-radius: 0px;
  30. @fancy-node-outline-width: 1px;
  31. // @fancy-loading-url: data-uri("@{fancy-image-prefix}loading.gif");
  32. // Set to `true` to use `data-uri(...)` instead of a `url(...)` link:
  33. @fancy-inline-sprites: false;
  34. //default 10pt, which is used in a relative manner resulting in 13.3 in dokuwiki-template.
  35. @fancy-font-size: 93%; //@fancy-cst-size;
  36. @fancy-font-family: tahoma, arial, helvetica;
  37. @fancy-font-color: #000;
  38. @fancy-font-color-dimm: silver;
  39. @fancy-font-error-color: red;
  40. // set icon color to font color as well
  41. span.fancytree-node {
  42. color: @fancy-font-color;
  43. }
  44. ul.fancytree-container ul
  45. {
  46. padding: 0 0 0 1em; // 0.3em 0 0 1em;
  47. margin: 0;
  48. }
  49. // The standard CSS assumes span.icon, but Fontawesome may use SVG or SPAN
  50. .fancytree-expander,
  51. .fancytree-checkbox,
  52. .fancytree-icon {
  53. min-width: @fancy-icon-width;
  54. text-align: center;
  55. font-size: @fancy-cst-size;
  56. }
  57. svg.fancytree-checkbox, // span... is already defined in skin-common-less
  58. svg.fancytree-icon {
  59. padding-left: @fancy-icon-spacing;
  60. }
  61. /*******************************************************************************
  62. * Node titles
  63. */
  64. span.fancytree-title {
  65. border: 1px solid transparent; // reserve some space for status borders
  66. border-radius: 0;
  67. }
  68. span.fancytree-focused span.fancytree-title {
  69. outline: 1px dotted black;
  70. }
  71. // span.fancytree-selected span.fancytree-title,
  72. span.fancytree-active span.fancytree-title {
  73. background-color: #D4D4D4; // gray
  74. }
  75. // span.fancytree-selected span.fancytree-title {
  76. // font-style: italic;
  77. // }
  78. // .fancytree-treefocus span.fancytree-selected span.fancytree-title,
  79. .fancytree-treefocus span.fancytree-active span.fancytree-title {
  80. color: white;
  81. background-color: #3875D7; // blue
  82. }
  83. // .fancytree-treefocus span.fancytree-selected span.fancytree-title{
  84. // color: white;
  85. // background-color: #99DEFD; // blue
  86. // }
  87. ///*******************************************************************************
  88. // * 'table' extension
  89. // */
  90. //table.fancytree-ext-table {
  91. // border-collapse: collapse;
  92. // tbody {
  93. // tr.fancytree-focused {
  94. // background-color: #99DEFD;
  95. // }
  96. // tr.fancytree-active {
  97. // background-color: royalblue;
  98. // }
  99. // // tr.fancytree-selected {
  100. // // background-color: #99DEFD;
  101. // // }
  102. // }
  103. //}
  104. //
  105. ///*******************************************************************************
  106. // * 'columnview' extension
  107. // */
  108. //
  109. //table.fancytree-ext-columnview tbody tr td {
  110. // border: 1px solid gray;
  111. //}
  112. //table.fancytree-ext-columnview span.fancytree-node.fancytree-expanded {
  113. // background-color: #ccc;
  114. //}
  115. //table.fancytree-ext-columnview span.fancytree-node.fancytree-active {
  116. // background-color: royalblue;
  117. //}