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.
 
 
 
 
 

101 lines
2.9 KiB

  1. /*!
  2. * Fancytree "Lion" skin.
  3. *
  4. * DON'T EDIT THE CSS FILE DIRECTLY, since it is automatically generated from
  5. * the LESS templates.
  6. */
  7. /*
  8. Lion colors:
  9. gray highlight bar: #D4D4D4
  10. blue highlight-bar and -border #3875D7
  11. */
  12. // Import common styles
  13. @import "skin-common.less";
  14. /*******************************************************************************
  15. * Styles specific to this skin.
  16. *
  17. * This section is automatically generated from the `ui-fancytree.less` template.
  18. ******************************************************************************/
  19. // Override the variable after the import.
  20. // NOTE: Variables are always resolved as the last definition, even if it is
  21. // after where it is used.
  22. @fancy-use-sprites: true; // false: suppress all background images (i.e. icons)
  23. @fancy-icon-width: 16px;
  24. @fancy-icon-height: 16px;
  25. @fancy-line-height: 16px;
  26. @fancy-icon-spacing: 3px;
  27. // We need to define this variable here (not in skin-common.less) to make it
  28. // work with grunt and webpack:
  29. @fancy-image-prefix: "./skin-lion/";
  30. // Use 'data-uri(...)' to embed the image into CSS instead of linking to 'loading.gif':
  31. // @fancy-loading-url: data-uri("@{fancy-image-prefix}loading.gif");
  32. // Set to `true` to use `data-uri(...)` which will embed icons.gif into CSS
  33. // instead of linking to that file:
  34. // @fancy-inline-sprites: true;
  35. //default 10pt, which is used in a relative manner resulting in 13.3 in dokuwiki-template.
  36. @fancy-font-size: 93%;
  37. /*******************************************************************************
  38. * Node titles
  39. */
  40. span.fancytree-title {
  41. border: 1px solid transparent; // reserve some space for status borders
  42. border-radius: 0;
  43. }
  44. span.fancytree-focused span.fancytree-title {
  45. outline: 1px dotted black;
  46. }
  47. span.fancytree-selected span.fancytree-title,
  48. span.fancytree-active span.fancytree-title {
  49. background-color: #D4D4D4; // gray
  50. }
  51. span.fancytree-selected span.fancytree-title {
  52. font-style: italic;
  53. }
  54. .fancytree-treefocus span.fancytree-selected span.fancytree-title,
  55. .fancytree-treefocus span.fancytree-active span.fancytree-title {
  56. color: white;
  57. background-color: #3875D7; // blue
  58. }
  59. ///*******************************************************************************
  60. // * 'table' extension
  61. // */
  62. //table.fancytree-ext-table {
  63. // border-collapse: collapse;
  64. // tbody {
  65. // tr.fancytree-focused {
  66. // background-color: #99DEFD;
  67. // }
  68. // tr.fancytree-active {
  69. // background-color: royalblue;
  70. // }
  71. // tr.fancytree-selected {
  72. // background-color: #99DEFD;
  73. // }
  74. // }
  75. //}
  76. //
  77. ///*******************************************************************************
  78. // * 'columnview' extension
  79. // */
  80. //
  81. //table.fancytree-ext-columnview tbody tr td {
  82. // border: 1px solid gray;
  83. //}
  84. //table.fancytree-ext-columnview span.fancytree-node.fancytree-expanded {
  85. // background-color: #ccc;
  86. //}
  87. //table.fancytree-ext-columnview span.fancytree-node.fancytree-active {
  88. // background-color: royalblue;
  89. //}