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