@syncfusion/ej2-navigations 17.2.55-1205479 → 17.3.14-96615

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (316) hide show
  1. package/.eslintrc.json +244 -0
  2. package/CHANGELOG.md +898 -786
  3. package/README.md +163 -163
  4. package/dist/ej2-navigations.umd.min.js +1 -10
  5. package/dist/ej2-navigations.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-navigations.es2015.js +512 -255
  7. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  8. package/dist/es6/ej2-navigations.es5.js +642 -385
  9. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  10. package/dist/global/ej2-navigations.min.js +1 -10
  11. package/dist/global/ej2-navigations.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/accordion/accordion.ts +1312 -0
  14. package/dist/ts/common/h-scroll.ts +459 -0
  15. package/dist/ts/common/menu-base.ts +2131 -0
  16. package/dist/ts/common/v-scroll.ts +430 -0
  17. package/dist/ts/context-menu/context-menu.ts +119 -0
  18. package/dist/ts/menu/menu.ts +270 -0
  19. package/dist/ts/sidebar/sidebar.ts +817 -0
  20. package/dist/ts/tab/tab.ts +1761 -0
  21. package/dist/ts/toolbar/toolbar.ts +2076 -0
  22. package/dist/ts/treeview/treeview.ts +5050 -0
  23. package/helpers/e2e/index.js +3 -3
  24. package/license +10 -10
  25. package/package.json +135 -145
  26. package/src/accordion/accordion-model.d.ts +162 -143
  27. package/src/accordion/accordion.d.ts +35 -6
  28. package/src/accordion/accordion.js +193 -71
  29. package/src/common/h-scroll-model.d.ts +5 -5
  30. package/src/common/h-scroll.js +19 -20
  31. package/src/common/index.d.ts +1 -0
  32. package/src/common/index.js +1 -0
  33. package/src/common/menu-base-model.d.ts +157 -157
  34. package/src/common/menu-base.d.ts +19 -0
  35. package/src/common/menu-base.js +97 -24
  36. package/src/common/v-scroll-model.d.ts +5 -5
  37. package/src/common/v-scroll.js +19 -19
  38. package/src/context-menu/context-menu-model.d.ts +15 -15
  39. package/src/context-menu/context-menu.js +19 -19
  40. package/src/menu/menu-model.d.ts +30 -30
  41. package/src/menu/menu.js +19 -19
  42. package/src/sidebar/sidebar-model.d.ts +136 -136
  43. package/src/sidebar/sidebar.js +19 -19
  44. package/src/tab/tab-model.d.ts +215 -215
  45. package/src/tab/tab.d.ts +3 -0
  46. package/src/tab/tab.js +120 -83
  47. package/src/toolbar/toolbar-model.d.ts +175 -175
  48. package/src/toolbar/toolbar.d.ts +2 -1
  49. package/src/toolbar/toolbar.js +30 -24
  50. package/src/treeview/treeview-model.d.ts +323 -323
  51. package/src/treeview/treeview.d.ts +3 -1
  52. package/src/treeview/treeview.js +107 -87
  53. package/styles/accordion/_all.scss +2 -2
  54. package/styles/accordion/_bootstrap-dark-definition.scss +69 -69
  55. package/styles/accordion/_bootstrap-definition.scss +76 -76
  56. package/styles/accordion/_bootstrap4-definition.scss +82 -82
  57. package/styles/accordion/_fabric-dark-definition.scss +74 -74
  58. package/styles/accordion/_fabric-definition.scss +78 -78
  59. package/styles/accordion/_highcontrast-definition.scss +106 -106
  60. package/styles/accordion/_highcontrast-light-definition.scss +104 -104
  61. package/styles/accordion/_layout.scss +447 -447
  62. package/styles/accordion/_material-dark-definition.scss +75 -75
  63. package/styles/accordion/_material-definition.scss +72 -72
  64. package/styles/accordion/_theme.scss +479 -479
  65. package/styles/accordion/icons/_bootstrap-dark.scss +17 -17
  66. package/styles/accordion/icons/_bootstrap.scss +17 -17
  67. package/styles/accordion/icons/_bootstrap4.scss +17 -17
  68. package/styles/accordion/icons/_fabric-dark.scss +17 -17
  69. package/styles/accordion/icons/_fabric.scss +17 -17
  70. package/styles/accordion/icons/_highcontrast-light.scss +17 -17
  71. package/styles/accordion/icons/_highcontrast.scss +17 -17
  72. package/styles/accordion/icons/_material-dark.scss +17 -17
  73. package/styles/accordion/icons/_material.scss +17 -17
  74. package/styles/accordion/material-dark.css +2 -2
  75. package/styles/bootstrap-dark.css +10 -9
  76. package/styles/bootstrap.css +10 -9
  77. package/styles/bootstrap4.css +10 -9
  78. package/styles/bootstrap5-dark.css +0 -0
  79. package/styles/bootstrap5-dark.scss +0 -0
  80. package/styles/bootstrap5.css +0 -0
  81. package/styles/bootstrap5.scss +0 -0
  82. package/styles/context-menu/_all.scss +2 -2
  83. package/styles/context-menu/_bootstrap-dark-definition.scss +54 -54
  84. package/styles/context-menu/_bootstrap-definition.scss +52 -52
  85. package/styles/context-menu/_bootstrap4-definition.scss +52 -52
  86. package/styles/context-menu/_fabric-dark-definition.scss +54 -54
  87. package/styles/context-menu/_fabric-definition.scss +52 -52
  88. package/styles/context-menu/_highcontrast-definition.scss +52 -52
  89. package/styles/context-menu/_highcontrast-light-definition.scss +54 -54
  90. package/styles/context-menu/_layout-mixin.scss +175 -174
  91. package/styles/context-menu/_layout.scss +70 -70
  92. package/styles/context-menu/_material-dark-definition.scss +54 -54
  93. package/styles/context-menu/_material-definition.scss +52 -52
  94. package/styles/context-menu/_theme-mixin.scss +59 -59
  95. package/styles/context-menu/_theme.scss +36 -36
  96. package/styles/context-menu/bootstrap-dark.css +1 -1
  97. package/styles/context-menu/bootstrap.css +1 -1
  98. package/styles/context-menu/bootstrap4.css +1 -1
  99. package/styles/context-menu/fabric-dark.css +1 -1
  100. package/styles/context-menu/fabric.css +1 -1
  101. package/styles/context-menu/highcontrast-light.css +1 -1
  102. package/styles/context-menu/highcontrast.css +1 -1
  103. package/styles/context-menu/icons/_bootstrap-dark.scss +30 -30
  104. package/styles/context-menu/icons/_bootstrap.scss +30 -30
  105. package/styles/context-menu/icons/_bootstrap4.scss +30 -30
  106. package/styles/context-menu/icons/_fabric-dark.scss +30 -30
  107. package/styles/context-menu/icons/_fabric.scss +30 -30
  108. package/styles/context-menu/icons/_highcontrast-light.scss +30 -30
  109. package/styles/context-menu/icons/_highcontrast.scss +30 -30
  110. package/styles/context-menu/icons/_material-dark.scss +30 -30
  111. package/styles/context-menu/icons/_material.scss +30 -30
  112. package/styles/context-menu/material-dark.css +1 -1
  113. package/styles/context-menu/material.css +4 -4
  114. package/styles/fabric-dark.css +10 -9
  115. package/styles/fabric.css +10 -9
  116. package/styles/h-scroll/_all.scss +2 -2
  117. package/styles/h-scroll/_bootstrap-dark-definition.scss +49 -49
  118. package/styles/h-scroll/_bootstrap-definition.scss +50 -50
  119. package/styles/h-scroll/_bootstrap4-definition.scss +49 -49
  120. package/styles/h-scroll/_fabric-dark-definition.scss +50 -50
  121. package/styles/h-scroll/_fabric-definition.scss +48 -48
  122. package/styles/h-scroll/_highcontrast-definition.scss +52 -52
  123. package/styles/h-scroll/_highcontrast-light-definition.scss +54 -54
  124. package/styles/h-scroll/_layout.scss +198 -198
  125. package/styles/h-scroll/_material-dark-definition.scss +77 -77
  126. package/styles/h-scroll/_material-definition.scss +77 -77
  127. package/styles/h-scroll/_theme.scss +157 -157
  128. package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -49
  129. package/styles/h-scroll/icons/_bootstrap.scss +49 -49
  130. package/styles/h-scroll/icons/_bootstrap4.scss +49 -49
  131. package/styles/h-scroll/icons/_fabric-dark.scss +49 -49
  132. package/styles/h-scroll/icons/_fabric.scss +49 -49
  133. package/styles/h-scroll/icons/_highcontrast-light.scss +49 -49
  134. package/styles/h-scroll/icons/_highcontrast.scss +49 -49
  135. package/styles/h-scroll/icons/_material-dark.scss +49 -49
  136. package/styles/h-scroll/icons/_material.scss +49 -49
  137. package/styles/highcontrast-light.css +10 -9
  138. package/styles/highcontrast.css +10 -9
  139. package/styles/material-dark.css +12 -11
  140. package/styles/material.css +24 -14
  141. package/styles/menu/_all.scss +2 -2
  142. package/styles/menu/_bootstrap-dark-definition.scss +63 -63
  143. package/styles/menu/_bootstrap-definition.scss +65 -65
  144. package/styles/menu/_bootstrap4-definition.scss +64 -64
  145. package/styles/menu/_fabric-dark-definition.scss +63 -63
  146. package/styles/menu/_fabric-definition.scss +64 -64
  147. package/styles/menu/_highcontrast-definition.scss +65 -65
  148. package/styles/menu/_highcontrast-light-definition.scss +61 -61
  149. package/styles/menu/_layout.scss +638 -637
  150. package/styles/menu/_material-dark-definition.scss +63 -63
  151. package/styles/menu/_material-definition.scss +64 -64
  152. package/styles/menu/_theme.scss +243 -243
  153. package/styles/menu/bootstrap-dark.css +2 -1
  154. package/styles/menu/bootstrap.css +2 -1
  155. package/styles/menu/bootstrap.scss +1 -0
  156. package/styles/menu/bootstrap4.css +2 -1
  157. package/styles/menu/fabric-dark.css +2 -1
  158. package/styles/menu/fabric.css +2 -1
  159. package/styles/menu/fabric.scss +1 -0
  160. package/styles/menu/highcontrast-light.css +2 -1
  161. package/styles/menu/highcontrast.css +2 -1
  162. package/styles/menu/highcontrast.scss +1 -0
  163. package/styles/menu/icons/_bootstrap-dark.scss +127 -127
  164. package/styles/menu/icons/_bootstrap.scss +127 -127
  165. package/styles/menu/icons/_bootstrap4.scss +127 -127
  166. package/styles/menu/icons/_fabric-dark.scss +127 -127
  167. package/styles/menu/icons/_fabric.scss +127 -127
  168. package/styles/menu/icons/_highcontrast-light.scss +127 -127
  169. package/styles/menu/icons/_highcontrast.scss +127 -127
  170. package/styles/menu/icons/_material-dark.scss +127 -127
  171. package/styles/menu/icons/_material.scss +127 -127
  172. package/styles/menu/material-dark.css +2 -1
  173. package/styles/menu/material.css +4 -3
  174. package/styles/menu/material.scss +1 -0
  175. package/styles/sidebar/_all.scss +3 -3
  176. package/styles/sidebar/_bootstrap-dark-definition.scss +4 -4
  177. package/styles/sidebar/_bootstrap-definition.scss +4 -4
  178. package/styles/sidebar/_bootstrap4-definition.scss +4 -4
  179. package/styles/sidebar/_fabric-dark-definition.scss +4 -4
  180. package/styles/sidebar/_fabric-definition.scss +6 -6
  181. package/styles/sidebar/_highcontrast-definition.scss +4 -4
  182. package/styles/sidebar/_highcontrast-light-definition.scss +4 -4
  183. package/styles/sidebar/_icons.scss +1 -1
  184. package/styles/sidebar/_material-dark-definition.scss +4 -4
  185. package/styles/sidebar/_material-definition.scss +6 -6
  186. package/styles/sidebar/_theme.scss +168 -168
  187. package/styles/sidebar/bootstrap-dark.css +0 -1
  188. package/styles/sidebar/bootstrap.css +0 -1
  189. package/styles/sidebar/bootstrap4.css +0 -1
  190. package/styles/sidebar/fabric-dark.css +0 -1
  191. package/styles/sidebar/fabric.css +0 -1
  192. package/styles/sidebar/highcontrast-light.css +0 -1
  193. package/styles/sidebar/highcontrast.css +0 -1
  194. package/styles/sidebar/material-dark.css +0 -1
  195. package/styles/sidebar/material.css +0 -1
  196. package/styles/tab/_all.scss +2 -2
  197. package/styles/tab/_bootstrap-dark-definition.scss +386 -386
  198. package/styles/tab/_bootstrap-definition.scss +396 -396
  199. package/styles/tab/_bootstrap4-definition.scss +401 -401
  200. package/styles/tab/_fabric-dark-definition.scss +394 -394
  201. package/styles/tab/_fabric-definition.scss +410 -410
  202. package/styles/tab/_highcontrast-definition.scss +434 -434
  203. package/styles/tab/_highcontrast-light-definition.scss +423 -423
  204. package/styles/tab/_icons.scss +43 -43
  205. package/styles/tab/_layout.scss +3528 -3521
  206. package/styles/tab/_material-dark-definition.scss +407 -407
  207. package/styles/tab/_material-definition.scss +416 -416
  208. package/styles/tab/_theme.scss +1751 -1751
  209. package/styles/tab/bootstrap-dark.css +7 -2
  210. package/styles/tab/bootstrap.css +7 -2
  211. package/styles/tab/bootstrap4.css +7 -2
  212. package/styles/tab/fabric-dark.css +7 -2
  213. package/styles/tab/fabric.css +7 -2
  214. package/styles/tab/highcontrast-light.css +7 -2
  215. package/styles/tab/highcontrast.css +7 -2
  216. package/styles/tab/icons/_bootstrap-dark.scss +132 -132
  217. package/styles/tab/icons/_bootstrap.scss +132 -132
  218. package/styles/tab/icons/_bootstrap4.scss +132 -132
  219. package/styles/tab/icons/_fabric-dark.scss +132 -132
  220. package/styles/tab/icons/_fabric.scss +132 -132
  221. package/styles/tab/icons/_highcontrast-light.scss +132 -132
  222. package/styles/tab/icons/_highcontrast.scss +132 -132
  223. package/styles/tab/icons/_material-dark.scss +132 -132
  224. package/styles/tab/icons/_material.scss +132 -132
  225. package/styles/tab/material-dark.css +7 -2
  226. package/styles/tab/material.css +7 -2
  227. package/styles/tailwind-dark.css +0 -0
  228. package/styles/tailwind-dark.scss +0 -0
  229. package/styles/tailwind.css +0 -0
  230. package/styles/tailwind.scss +0 -0
  231. package/styles/toolbar/_all.scss +2 -2
  232. package/styles/toolbar/_bootstrap-dark-definition.scss +135 -135
  233. package/styles/toolbar/_bootstrap-definition.scss +134 -134
  234. package/styles/toolbar/_bootstrap4-definition.scss +139 -139
  235. package/styles/toolbar/_fabric-dark-definition.scss +155 -155
  236. package/styles/toolbar/_fabric-definition.scss +139 -139
  237. package/styles/toolbar/_highcontrast-definition.scss +149 -149
  238. package/styles/toolbar/_highcontrast-light-definition.scss +164 -164
  239. package/styles/toolbar/_layout.scss +1460 -1460
  240. package/styles/toolbar/_material-dark-definition.scss +180 -180
  241. package/styles/toolbar/_material-definition.scss +164 -164
  242. package/styles/toolbar/_theme.scss +451 -451
  243. package/styles/toolbar/bootstrap-dark.css +0 -1
  244. package/styles/toolbar/bootstrap.css +0 -1
  245. package/styles/toolbar/bootstrap.scss +1 -0
  246. package/styles/toolbar/bootstrap4.css +0 -1
  247. package/styles/toolbar/fabric-dark.css +0 -1
  248. package/styles/toolbar/fabric.css +0 -1
  249. package/styles/toolbar/fabric.scss +1 -0
  250. package/styles/toolbar/highcontrast-light.css +0 -1
  251. package/styles/toolbar/highcontrast.css +0 -1
  252. package/styles/toolbar/highcontrast.scss +1 -0
  253. package/styles/toolbar/icons/_bootstrap-dark.scss +16 -16
  254. package/styles/toolbar/icons/_bootstrap.scss +16 -16
  255. package/styles/toolbar/icons/_bootstrap4.scss +16 -16
  256. package/styles/toolbar/icons/_fabric-dark.scss +16 -16
  257. package/styles/toolbar/icons/_fabric.scss +16 -16
  258. package/styles/toolbar/icons/_highcontrast-light.scss +16 -16
  259. package/styles/toolbar/icons/_highcontrast.scss +16 -16
  260. package/styles/toolbar/icons/_material-dark.scss +16 -16
  261. package/styles/toolbar/icons/_material.scss +16 -16
  262. package/styles/toolbar/material-dark.css +0 -1
  263. package/styles/toolbar/material.css +0 -1
  264. package/styles/toolbar/material.scss +1 -0
  265. package/styles/treeview/_all.scss +2 -2
  266. package/styles/treeview/_bootstrap-dark-definition.scss +131 -131
  267. package/styles/treeview/_bootstrap-definition.scss +127 -127
  268. package/styles/treeview/_bootstrap4-definition.scss +153 -153
  269. package/styles/treeview/_fabric-dark-definition.scss +130 -130
  270. package/styles/treeview/_fabric-definition.scss +126 -126
  271. package/styles/treeview/_highcontrast-definition.scss +132 -132
  272. package/styles/treeview/_highcontrast-light-definition.scss +137 -137
  273. package/styles/treeview/_layout.scss +551 -551
  274. package/styles/treeview/_material-dark-definition.scss +126 -126
  275. package/styles/treeview/_material-definition.scss +126 -126
  276. package/styles/treeview/_theme.scss +331 -331
  277. package/styles/treeview/bootstrap-dark.css +0 -3
  278. package/styles/treeview/bootstrap.css +0 -3
  279. package/styles/treeview/bootstrap4.css +0 -3
  280. package/styles/treeview/fabric-dark.css +0 -3
  281. package/styles/treeview/fabric.css +0 -3
  282. package/styles/treeview/highcontrast-light.css +0 -3
  283. package/styles/treeview/highcontrast.css +0 -3
  284. package/styles/treeview/icons/_bootstrap-dark.scss +39 -39
  285. package/styles/treeview/icons/_bootstrap.scss +39 -39
  286. package/styles/treeview/icons/_bootstrap4.scss +39 -39
  287. package/styles/treeview/icons/_fabric-dark.scss +43 -43
  288. package/styles/treeview/icons/_fabric.scss +43 -43
  289. package/styles/treeview/icons/_highcontrast-light.scss +43 -43
  290. package/styles/treeview/icons/_highcontrast.scss +43 -43
  291. package/styles/treeview/icons/_material-dark.scss +43 -43
  292. package/styles/treeview/icons/_material.scss +43 -43
  293. package/styles/treeview/material-dark.css +0 -3
  294. package/styles/treeview/material.css +9 -3
  295. package/styles/v-scroll/_all.scss +2 -2
  296. package/styles/v-scroll/_bootstrap-dark-definition.scss +50 -50
  297. package/styles/v-scroll/_bootstrap-definition.scss +49 -49
  298. package/styles/v-scroll/_bootstrap4-definition.scss +49 -49
  299. package/styles/v-scroll/_fabric-dark-definition.scss +51 -51
  300. package/styles/v-scroll/_fabric-definition.scss +50 -50
  301. package/styles/v-scroll/_highcontrast-definition.scss +51 -51
  302. package/styles/v-scroll/_highcontrast-light-definition.scss +52 -52
  303. package/styles/v-scroll/_layout.scss +162 -162
  304. package/styles/v-scroll/_material-dark-definition.scss +78 -78
  305. package/styles/v-scroll/_material-definition.scss +77 -77
  306. package/styles/v-scroll/_theme.scss +133 -133
  307. package/styles/v-scroll/icons/_bootstrap-dark.scss +26 -26
  308. package/styles/v-scroll/icons/_bootstrap.scss +26 -26
  309. package/styles/v-scroll/icons/_bootstrap4.scss +26 -26
  310. package/styles/v-scroll/icons/_fabric-dark.scss +26 -26
  311. package/styles/v-scroll/icons/_fabric.scss +26 -26
  312. package/styles/v-scroll/icons/_highcontrast-light.scss +26 -26
  313. package/styles/v-scroll/icons/_highcontrast.scss +26 -26
  314. package/styles/v-scroll/icons/_material-dark.scss +26 -26
  315. package/styles/v-scroll/icons/_material.scss +26 -26
  316. package/tslint.json +111 -0
@@ -1,135 +1,135 @@
1
- //default
2
- $tbar-skin: 'bootstrap' !default;
3
- $tbar-default-bg: $grey-darker !default;
4
-
5
- $tbar-btn-bgr-line-height: 35px !default;
6
- $tbar-zero-value: 0 !default;
7
- $tbar-pop-btn-bgr-padding: $tbar-zero-value 4px !default;
8
- $tbar-pop-btn-nrml-padding: $tbar-zero-value 4px !default;
9
- $tbar-separator-bgr-minheight: 36px !default;
10
- $tbar-btn-bgr-minwidth: '' !default;
11
- $tbar-separator-vertical-bgr-mrgn: 5px 10px !default;
12
- $tbar-v-btn-bgr-mrgn: 2px auto !default;
13
- $tbar-btn-nrml-minwidth: 0 !default;
14
- $tbar-btn-nrml-line-height: 25px !default;
15
- $tbar-btn-weight: 400 !default;
16
- $tbar-border-radius: $border-radius !default;
17
- $tbar-separator-nrml-minheight: 27px !default;
18
- $tbar-separator-nrml-height: calc(100% - 15px) !default;
19
- $tbar-separator-vertical-nrml-mrgn: 3px 7.5px !default;
20
- $tbar-v-btn-nrml-mrgn: 0 !default;
21
- $tbar-tab-highlight-color: rgba(0, 0, 0, 0) !default;
22
- $tbar-border-nav-type: solid !default;
23
- $tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
24
- $tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
25
- $tbar-separator-size: $border-size !default;
26
- $tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
27
- $tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
28
- $tbar-btn-box-shadow: none !default;
29
- $tbar-hover-font: $hover-font-color !default;
30
- $tbar-press-font: $active-font-color !default;
31
- $tbar-active-font-color: $active-font-color !default;
32
- $tbar-default-font-overlay: $default-font-color !default;
33
- $tbar-default-icon-overlay: $default-icon-color !default;
34
- $tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
35
- $tbar-popup-border-width: 0 0 0 $border-size !default;
36
- $tbar-select-font: $tbar-hover-font !default;
37
- $tbar-pressed-font: $tbar-hover-font !default;
38
- $tbar-hover-bg: $grey !default;
39
- $tbar-pressed-bg: $grey-dark !default;
40
- $tbar-btn-txt-font-size: 14px !default;
41
- $tbar-hover-border-color: $grey-white !default;
42
- $tbar-focus-bg: $grey-dark !default;
43
- $tbar-focus-border-color: $grey-8c !default;
44
- $tbar-press-bg: $grey-dark !default;
45
- $tbar-press-border-color: $tbar-hover-border-color !default;
46
- $tbar-btn-family: 'Helvetica Neue' , 'Helvetica' , 'Arial' , 'sans-serif' !default;
47
- $tbar-nrml-size: 40px !default;
48
- $tbar-bgr-size: 50px !default;
49
- $tbar-nrml-items-size: 39px !default;
50
- $tbar-bgr-items-size: 49px !default;
51
- $tbar-border-type: solid !default;
52
- $tbar-default-border: $grey-99 !default;
53
- $tbar-border-size: 1px !default;
54
- $tbar-box-shadow: none !default;
55
- $tbar-separator-size: 1px !default;
56
- $tbar-separator-border: $tbar-default-border !default;
57
- $tbar-separator-border-type: solid !default;
58
- $tbar-default-icon-color: $grey-dark-font !default;
59
- $tbar-default-font: $grey-dark-font !default;
60
-
61
- $tbar-nav-press-border: '' !default;
62
- $tbar-nav-hover-border: 1px solid $grey-99 !default;
63
- $tbar-nav-focus-border: '' !default;
64
- $tbar-pressed-border: '' !default;
65
- $tbar-btn-border: none !default;
66
-
67
- $tbar-nav-pressed-box-shadow: inset 0 4px 5px rgba($grey-base, .35) !default;
68
- $tbar-pop-box-shadow: 0 6px 12px rgba(0 , 0 , 0 , .175) !default;
69
- $tbar-pop-radius: 4px !default;
70
- $tbar-radius: 4px !default;
71
- $tbar-border-nav-active-type: '' !default;
72
-
73
- $tbar-btn-pop-nrml-minheight: 40px !default;
74
- $tbar-btn-pop-bgr-minheight: 40px !default;
75
- $tbar-pop-icon-bgr-padding: 0 12px 0 15px !default;
76
- $tbar-pop-icon-nrml-padding: 0 12px 0 15px !default;
77
- $tbar-pop-btn-txt-nrml-pad: 0 12px 0 15px !default;
78
- $tbar-pop-btn-txt-bgr-pad: 0 12px 0 15px !default;
79
-
80
- $tbar-nav-nrml-width: 38px !default;
81
- $tbar-nav-bgr-width: 38px !default;
82
- $tbar-popup-padding: 5px 0 !default;
83
- $tbar-btn-icn-nrml-padding: 0 0 0 12px !default;
84
- $tbar-btn-icn-bgr-padding: 0 0 0 12px !default;
85
- $tbar-btn-icn-right-bgr-padding: 0 12px 0 0 !default;
86
- $tbar-btn-icn-right-nrml-padding: 0 12px 0 0 !default;
87
- $btn-txt-nrml-padding: 0 12px 0 6px !default;
88
- $btn-txt-bgr-padding: 0 12px 0 6px !default;
89
- $tbar-item-pop-nrml-padding: 0 !default;
90
- $tbar-item-pop-bgr-padding: 0 !default;
91
- $tbar-item-nrml-mrgn: 15px !default;
92
- $tbar-item-bgr-mrgn: 15px !default;
93
- $tbar-btn-nrml-height: calc(100% - 10px) !default;
94
- $tbar-btn-nrml-mrgn: 0 !default;
95
- $tbar-btn-bgr-height: calc(100% - 6px) !default;
96
- $tbar-btn-bgr-mrgn: 2px 0 !default;
97
- $tbar-btn-nrml-minheight: 32px !default;
98
- $tbar-btn-bgr-minheight: 34px !default;
99
- $tbar-btn-font-size: 16px !default;
100
- $tbar-btn-border-radius: 4px !default;
101
- $tbar-btn-pressed-box-shadow: inset 0 4px 5px rgba($grey-base, .35) !default;
102
- $tbar-btn-icon-bgr-width: 24px !default;
103
- $tbar-btn-icon-bgr-height: 34px !default;
104
- $tbar-btn-icon-bgr-line-height: 34px !default;
105
- $tbar-btn-txt-line-height: inherit !default;
106
- $tbar-btn-icon-nrml-width: 27px !default;
107
- $tbar-btn-icon-nrml-height: 25px !default;
108
- $tbar-btn-icon-nrml-line-height: 25px !default;
109
- $tbar-left-item-line-height: 35px !default;
110
- $tbar-right-item-line-height: 24px !default;
111
- $tbar-item-bgr-padding: 2.5px 5px !default;
112
- $tbar-nrml-item-size: 0 !default;
113
- $tbar-bgr-item-size: 0 !default;
114
- $tbar-item-bgr-padding: 3.5px 2.5px !default;
115
- $tbar-item-nrml-padding: 4px 2.5px !default;
116
- $tbar-item-nrml-minwidth: 30px !default;
117
-
118
- $tbar-separator-bgr-height: calc(100% - 12px) !default;
119
- $tbar-separator-bgr-mrgn: 6px 6px !default;
120
- $tbar-separator-nrml-mrgn: 5.5px 6px !default;
121
- $tbar-btn-bgr-padding: 1px 7px !default;
122
- $tbar-btn-nrml-padding: 1px 2.5px !default;
123
- $tbar-icons-bgr-font-size: 14px !default;
124
- $tbar-multirow-items-mrgn-bigger: 15px !default;
125
- $tbar-multirow-items-mrgn-small: 15px !default;
126
- $tbar-multirow-item-mrgn: 0 !default;
127
-
128
- @mixin tbar-btn-animation {
129
- content: '';
130
- }
131
-
132
- @mixin tbar-btn-animation-after {
133
- content: '';
134
- }
135
- //enddefault
1
+ //default
2
+ $tbar-skin: 'bootstrap' !default;
3
+ $tbar-default-bg: $grey-darker !default;
4
+
5
+ $tbar-btn-bgr-line-height: 35px !default;
6
+ $tbar-zero-value: 0 !default;
7
+ $tbar-pop-btn-bgr-padding: $tbar-zero-value 4px !default;
8
+ $tbar-pop-btn-nrml-padding: $tbar-zero-value 4px !default;
9
+ $tbar-separator-bgr-minheight: 36px !default;
10
+ $tbar-btn-bgr-minwidth: '' !default;
11
+ $tbar-separator-vertical-bgr-mrgn: 5px 10px !default;
12
+ $tbar-v-btn-bgr-mrgn: 2px auto !default;
13
+ $tbar-btn-nrml-minwidth: 0 !default;
14
+ $tbar-btn-nrml-line-height: 25px !default;
15
+ $tbar-btn-weight: 400 !default;
16
+ $tbar-border-radius: $border-radius !default;
17
+ $tbar-separator-nrml-minheight: 27px !default;
18
+ $tbar-separator-nrml-height: calc(100% - 15px) !default;
19
+ $tbar-separator-vertical-nrml-mrgn: 3px 7.5px !default;
20
+ $tbar-v-btn-nrml-mrgn: 0 !default;
21
+ $tbar-tab-highlight-color: rgba(0, 0, 0, 0) !default;
22
+ $tbar-border-nav-type: solid !default;
23
+ $tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
24
+ $tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
25
+ $tbar-separator-size: $border-size !default;
26
+ $tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
27
+ $tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
28
+ $tbar-btn-box-shadow: none !default;
29
+ $tbar-hover-font: $hover-font-color !default;
30
+ $tbar-press-font: $active-font-color !default;
31
+ $tbar-active-font-color: $active-font-color !default;
32
+ $tbar-default-font-overlay: $default-font-color !default;
33
+ $tbar-default-icon-overlay: $default-icon-color !default;
34
+ $tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
35
+ $tbar-popup-border-width: 0 0 0 $border-size !default;
36
+ $tbar-select-font: $tbar-hover-font !default;
37
+ $tbar-pressed-font: $tbar-hover-font !default;
38
+ $tbar-hover-bg: $grey !default;
39
+ $tbar-pressed-bg: $grey-dark !default;
40
+ $tbar-btn-txt-font-size: 14px !default;
41
+ $tbar-hover-border-color: $grey-white !default;
42
+ $tbar-focus-bg: $grey-dark !default;
43
+ $tbar-focus-border-color: $grey-8c !default;
44
+ $tbar-press-bg: $grey-dark !default;
45
+ $tbar-press-border-color: $tbar-hover-border-color !default;
46
+ $tbar-btn-family: 'Helvetica Neue' , 'Helvetica' , 'Arial' , 'sans-serif' !default;
47
+ $tbar-nrml-size: 40px !default;
48
+ $tbar-bgr-size: 50px !default;
49
+ $tbar-nrml-items-size: 39px !default;
50
+ $tbar-bgr-items-size: 49px !default;
51
+ $tbar-border-type: solid !default;
52
+ $tbar-default-border: $grey-99 !default;
53
+ $tbar-border-size: 1px !default;
54
+ $tbar-box-shadow: none !default;
55
+ $tbar-separator-size: 1px !default;
56
+ $tbar-separator-border: $tbar-default-border !default;
57
+ $tbar-separator-border-type: solid !default;
58
+ $tbar-default-icon-color: $grey-dark-font !default;
59
+ $tbar-default-font: $grey-dark-font !default;
60
+
61
+ $tbar-nav-press-border: '' !default;
62
+ $tbar-nav-hover-border: 1px solid $grey-99 !default;
63
+ $tbar-nav-focus-border: '' !default;
64
+ $tbar-pressed-border: '' !default;
65
+ $tbar-btn-border: none !default;
66
+
67
+ $tbar-nav-pressed-box-shadow: inset 0 4px 5px rgba($grey-base, .35) !default;
68
+ $tbar-pop-box-shadow: 0 6px 12px rgba(0 , 0 , 0 , .175) !default;
69
+ $tbar-pop-radius: 4px !default;
70
+ $tbar-radius: 4px !default;
71
+ $tbar-border-nav-active-type: '' !default;
72
+
73
+ $tbar-btn-pop-nrml-minheight: 40px !default;
74
+ $tbar-btn-pop-bgr-minheight: 40px !default;
75
+ $tbar-pop-icon-bgr-padding: 0 12px 0 15px !default;
76
+ $tbar-pop-icon-nrml-padding: 0 12px 0 15px !default;
77
+ $tbar-pop-btn-txt-nrml-pad: 0 12px 0 15px !default;
78
+ $tbar-pop-btn-txt-bgr-pad: 0 12px 0 15px !default;
79
+
80
+ $tbar-nav-nrml-width: 38px !default;
81
+ $tbar-nav-bgr-width: 38px !default;
82
+ $tbar-popup-padding: 5px 0 !default;
83
+ $tbar-btn-icn-nrml-padding: 0 0 0 12px !default;
84
+ $tbar-btn-icn-bgr-padding: 0 0 0 12px !default;
85
+ $tbar-btn-icn-right-bgr-padding: 0 12px 0 0 !default;
86
+ $tbar-btn-icn-right-nrml-padding: 0 12px 0 0 !default;
87
+ $btn-txt-nrml-padding: 0 12px 0 6px !default;
88
+ $btn-txt-bgr-padding: 0 12px 0 6px !default;
89
+ $tbar-item-pop-nrml-padding: 0 !default;
90
+ $tbar-item-pop-bgr-padding: 0 !default;
91
+ $tbar-item-nrml-mrgn: 15px !default;
92
+ $tbar-item-bgr-mrgn: 15px !default;
93
+ $tbar-btn-nrml-height: calc(100% - 10px) !default;
94
+ $tbar-btn-nrml-mrgn: 0 !default;
95
+ $tbar-btn-bgr-height: calc(100% - 6px) !default;
96
+ $tbar-btn-bgr-mrgn: 2px 0 !default;
97
+ $tbar-btn-nrml-minheight: 32px !default;
98
+ $tbar-btn-bgr-minheight: 34px !default;
99
+ $tbar-btn-font-size: 16px !default;
100
+ $tbar-btn-border-radius: 4px !default;
101
+ $tbar-btn-pressed-box-shadow: inset 0 4px 5px rgba($grey-base, .35) !default;
102
+ $tbar-btn-icon-bgr-width: 24px !default;
103
+ $tbar-btn-icon-bgr-height: 34px !default;
104
+ $tbar-btn-icon-bgr-line-height: 34px !default;
105
+ $tbar-btn-txt-line-height: inherit !default;
106
+ $tbar-btn-icon-nrml-width: 27px !default;
107
+ $tbar-btn-icon-nrml-height: 25px !default;
108
+ $tbar-btn-icon-nrml-line-height: 25px !default;
109
+ $tbar-left-item-line-height: 35px !default;
110
+ $tbar-right-item-line-height: 24px !default;
111
+ $tbar-item-bgr-padding: 2.5px 5px !default;
112
+ $tbar-nrml-item-size: 0 !default;
113
+ $tbar-bgr-item-size: 0 !default;
114
+ $tbar-item-bgr-padding: 3.5px 2.5px !default;
115
+ $tbar-item-nrml-padding: 4px 2.5px !default;
116
+ $tbar-item-nrml-minwidth: 30px !default;
117
+
118
+ $tbar-separator-bgr-height: calc(100% - 12px) !default;
119
+ $tbar-separator-bgr-mrgn: 6px 6px !default;
120
+ $tbar-separator-nrml-mrgn: 5.5px 6px !default;
121
+ $tbar-btn-bgr-padding: 1px 7px !default;
122
+ $tbar-btn-nrml-padding: 1px 2.5px !default;
123
+ $tbar-icons-bgr-font-size: 14px !default;
124
+ $tbar-multirow-items-mrgn-bigger: 15px !default;
125
+ $tbar-multirow-items-mrgn-small: 15px !default;
126
+ $tbar-multirow-item-mrgn: 0 !default;
127
+
128
+ @mixin tbar-btn-animation {
129
+ content: '';
130
+ }
131
+
132
+ @mixin tbar-btn-animation-after {
133
+ content: '';
134
+ }
135
+ //enddefault
@@ -1,134 +1,134 @@
1
- /*! component's theme wise override definitions and variables */
2
- $tbar-skin: 'bootstrap' !default;
3
- $tbar-btn-bgr-line-height: 35px !default;
4
- $tbar-zero-value: 0 !default;
5
- $tbar-separator-bgr-minheight: 36px !default;
6
- $tbar-btn-bgr-minwidth: '' !default;
7
- $tbar-btn-nrml-minwidth: 0 !default;
8
- $tbar-btn-nrml-line-height: 25px !default;
9
- $tbar-btn-weight: 400 !default;
10
- $tbar-border-radius: $border-radius !default;
11
- $tbar-pop-btn-nrml-padding: $tbar-zero-value 4px !default;
12
- $tbar-pop-btn-bgr-padding: $tbar-zero-value 4px !default;
13
- $tbar-separator-nrml-minheight: 27px !default;
14
- $tbar-separator-nrml-height: calc(100% - 15px) !default;
15
- $tbar-tab-highlight-color: rgba(0, 0, 0, 0) !default;
16
- $tbar-border-nav-type: solid !default;
17
- $tbar-btn-box-shadow: none !default;
18
- $tbar-hover-font: $hover-font-color !default;
19
- $tbar-press-font: $active-font-color !default;
20
- $tbar-active-font-color: $active-font-color !default;
21
- $tbar-default-font-overlay: $default-font-color !default;
22
- $tbar-default-icon-overlay: $default-icon-color !default;
23
- $tbar-select-font: $tbar-hover-font !default;
24
- $tbar-pressed-font: $tbar-hover-font !default;
25
-
26
- $tbar-default-bg: $grey-f8 !default;
27
-
28
- $tbar-hover-bg: $grey-e6 !default;
29
- $tbar-pressed-bg: $grey-d4 !default;
30
- $tbar-btn-txt-font-size: 14px !default;
31
- $tbar-hover-border-color: $grey-ad !default;
32
- $tbar-focus-bg: $tbar-hover-bg !default;
33
- $tbar-focus-border-color: $grey-8c !default;
34
- $tbar-press-bg: $tbar-hover-bg !default;
35
- $tbar-press-border-color: $tbar-hover-border-color !default;
36
- $tbar-btn-family: 'Helvetica Neue' , 'Helvetica' , 'Arial' , 'sans-serif' !default;
37
- $tbar-nrml-size: 40px !default;
38
- $tbar-bgr-size: 50px !default;
39
- $tbar-nrml-items-size: 39px !default;
40
- $tbar-bgr-items-size: 49px !default;
41
- $tbar-border-type: solid !default;
42
- $tbar-default-border: $grey-cc !default;
43
- $tbar-border-size: 1px !default;
44
- $tbar-box-shadow: none !default;
45
- $tbar-separator-size: 1px !default;
46
- $tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
47
- $tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
48
- $tbar-popup-border-width: 0 0 0 $border-size !default;
49
- $tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
50
- $tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
51
- $tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
52
- $tbar-separator-border: $tbar-default-border !default;
53
- $tbar-separator-border-type: solid !default;
54
- $tbar-default-icon-color: $grey-light-font !default;
55
- $tbar-default-font: $grey-light-font !default;
56
-
57
- $tbar-nav-press-border: '' !default;
58
- $tbar-nav-hover-border: 1px solid $grey-ad !default;
59
- $tbar-nav-focus-border: '' !default;
60
- $tbar-pressed-border: '' !default;
61
- $tbar-btn-border: none !default;
62
-
63
- $tbar-nav-pressed-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
64
- $tbar-pop-box-shadow: 0 6px 12px rgba(0 , 0 , 0 , .175) !default;
65
- $tbar-pop-radius: 4px !default;
66
- $tbar-radius: 4px !default;
67
- $tbar-border-nav-active-type: '' !default;
68
-
69
- $tbar-btn-pop-nrml-minheight: 40px !default;
70
- $tbar-btn-pop-bgr-minheight: 40px !default;
71
- $tbar-pop-icon-bgr-padding: 0 12px 0 15px !default;
72
- $tbar-pop-icon-nrml-padding: 0 12px 0 15px !default;
73
- $tbar-pop-btn-txt-nrml-pad: 0 12px 0 15px !default;
74
- $tbar-pop-btn-txt-bgr-pad: 0 12px 0 15px !default;
75
-
76
- $tbar-nav-nrml-width: 38px !default;
77
- $tbar-nav-bgr-width: 38px !default;
78
- $tbar-popup-padding: 5px 0 !default;
79
- $tbar-btn-icn-nrml-padding: 0 0 0 12px !default;
80
- $tbar-btn-icn-bgr-padding: 0 0 0 12px !default;
81
- $tbar-btn-icn-right-bgr-padding: 0 12px 0 0 !default;
82
- $tbar-btn-icn-right-nrml-padding: 0 12px 0 0 !default;
83
- $btn-txt-nrml-padding: 0 12px 0 6px !default;
84
- $btn-txt-bgr-padding: 0 12px 0 6px !default;
85
- $tbar-item-pop-nrml-padding: 0 !default;
86
- $tbar-item-pop-bgr-padding: 0 !default;
87
- $tbar-item-nrml-mrgn: 3px !default;
88
- $tbar-item-bgr-mrgn: 3px !default;
89
- $tbar-btn-nrml-height: calc(100% - 10px) !default;
90
- $tbar-btn-nrml-mrgn: 0 !default;
91
- $tbar-v-btn-nrml-mrgn: 0 !default;
92
- $tbar-btn-bgr-height: calc(100% - 6px) !default;
93
- $tbar-btn-bgr-mrgn: 2px 0 !default;
94
- $tbar-v-btn-bgr-mrgn: 2px auto !default;
95
- $tbar-btn-nrml-minheight: 32px !default;
96
- $tbar-btn-bgr-minheight: 34px !default;
97
- $tbar-btn-font-size: 16px !default;
98
- $tbar-btn-border-radius: 4px !default;
99
- $tbar-btn-pressed-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
100
- $tbar-btn-icon-bgr-width: 24px !default;
101
- $tbar-btn-icon-bgr-height: 34px !default;
102
- $tbar-btn-icon-bgr-line-height: 34px !default;
103
- $tbar-btn-txt-line-height: inherit !default;
104
- $tbar-btn-icon-nrml-width: 27px !default;
105
- $tbar-btn-icon-nrml-height: 25px !default;
106
- $tbar-btn-icon-nrml-line-height: 25px !default;
107
- $tbar-left-item-line-height: 35px !default;
108
- $tbar-right-item-line-height: 24px !default;
109
- $tbar-item-bgr-padding: 2.5px 5px !default;
110
- $tbar-nrml-item-size: 0 !default;
111
- $tbar-bgr-item-size: 0 !default;
112
- $tbar-item-bgr-padding: 3.5px 2.5px !default;
113
- $tbar-item-nrml-padding: 4px 2.5px !default;
114
- $tbar-item-nrml-minwidth: 30px !default;
115
-
116
- $tbar-separator-bgr-height: calc(100% - 12px) !default;
117
- $tbar-separator-bgr-mrgn: 6px 6px !default;
118
- $tbar-separator-nrml-mrgn: 5.5px 6px !default;
119
- $tbar-separator-vertical-bgr-mrgn: 6px !default;
120
- $tbar-separator-vertical-nrml-mrgn: 6px 5.5px !default;
121
- $tbar-btn-bgr-padding: 1px 7px !default;
122
- $tbar-btn-nrml-padding: 1px 2.5px !default;
123
- $tbar-icons-bgr-font-size: 14px !default;
124
- $tbar-multirow-items-mrgn-bigger: 15px !default;
125
- $tbar-multirow-items-mrgn-small: 15px !default;
126
- $tbar-multirow-item-mrgn: 0 !default;
127
-
128
- @mixin tbar-btn-animation {
129
- content: '';
130
- }
131
-
132
- @mixin tbar-btn-animation-after {
133
- content: '';
134
- }
1
+ /*! component's theme wise override definitions and variables */
2
+ $tbar-skin: 'bootstrap' !default;
3
+ $tbar-btn-bgr-line-height: 35px !default;
4
+ $tbar-zero-value: 0 !default;
5
+ $tbar-separator-bgr-minheight: 36px !default;
6
+ $tbar-btn-bgr-minwidth: '' !default;
7
+ $tbar-btn-nrml-minwidth: 0 !default;
8
+ $tbar-btn-nrml-line-height: 25px !default;
9
+ $tbar-btn-weight: 400 !default;
10
+ $tbar-border-radius: $border-radius !default;
11
+ $tbar-pop-btn-nrml-padding: $tbar-zero-value 4px !default;
12
+ $tbar-pop-btn-bgr-padding: $tbar-zero-value 4px !default;
13
+ $tbar-separator-nrml-minheight: 27px !default;
14
+ $tbar-separator-nrml-height: calc(100% - 15px) !default;
15
+ $tbar-tab-highlight-color: rgba(0, 0, 0, 0) !default;
16
+ $tbar-border-nav-type: solid !default;
17
+ $tbar-btn-box-shadow: none !default;
18
+ $tbar-hover-font: $hover-font-color !default;
19
+ $tbar-press-font: $active-font-color !default;
20
+ $tbar-active-font-color: $active-font-color !default;
21
+ $tbar-default-font-overlay: $default-font-color !default;
22
+ $tbar-default-icon-overlay: $default-icon-color !default;
23
+ $tbar-select-font: $tbar-hover-font !default;
24
+ $tbar-pressed-font: $tbar-hover-font !default;
25
+
26
+ $tbar-default-bg: $grey-f8 !default;
27
+
28
+ $tbar-hover-bg: $grey-e6 !default;
29
+ $tbar-pressed-bg: $grey-d4 !default;
30
+ $tbar-btn-txt-font-size: 14px !default;
31
+ $tbar-hover-border-color: $grey-ad !default;
32
+ $tbar-focus-bg: $tbar-hover-bg !default;
33
+ $tbar-focus-border-color: $grey-8c !default;
34
+ $tbar-press-bg: $tbar-hover-bg !default;
35
+ $tbar-press-border-color: $tbar-hover-border-color !default;
36
+ $tbar-btn-family: 'Helvetica Neue' , 'Helvetica' , 'Arial' , 'sans-serif' !default;
37
+ $tbar-nrml-size: 40px !default;
38
+ $tbar-bgr-size: 50px !default;
39
+ $tbar-nrml-items-size: 39px !default;
40
+ $tbar-bgr-items-size: 49px !default;
41
+ $tbar-border-type: solid !default;
42
+ $tbar-default-border: $grey-cc !default;
43
+ $tbar-border-size: 1px !default;
44
+ $tbar-box-shadow: none !default;
45
+ $tbar-separator-size: 1px !default;
46
+ $tba-horizontal-separator: 0 $tbar-separator-size 0 0 !default;
47
+ $tba-vertical-separator: 0 0 $tbar-separator-size 0 !default;
48
+ $tbar-popup-border-width: 0 0 0 $border-size !default;
49
+ $tbar-popup-rtl-border-width: 0 $border-size 0 0 !default;
50
+ $tbar-popup-vertical-border-width: $border-size 0 0 0 !default;
51
+ $tbar-popup-vertical-rtl-border-width: 0 0 $border-size 0 !default;
52
+ $tbar-separator-border: $tbar-default-border !default;
53
+ $tbar-separator-border-type: solid !default;
54
+ $tbar-default-icon-color: $grey-light-font !default;
55
+ $tbar-default-font: $grey-light-font !default;
56
+
57
+ $tbar-nav-press-border: '' !default;
58
+ $tbar-nav-hover-border: 1px solid $grey-ad !default;
59
+ $tbar-nav-focus-border: '' !default;
60
+ $tbar-pressed-border: '' !default;
61
+ $tbar-btn-border: none !default;
62
+
63
+ $tbar-nav-pressed-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
64
+ $tbar-pop-box-shadow: 0 6px 12px rgba(0 , 0 , 0 , .175) !default;
65
+ $tbar-pop-radius: 4px !default;
66
+ $tbar-radius: 4px !default;
67
+ $tbar-border-nav-active-type: '' !default;
68
+
69
+ $tbar-btn-pop-nrml-minheight: 40px !default;
70
+ $tbar-btn-pop-bgr-minheight: 40px !default;
71
+ $tbar-pop-icon-bgr-padding: 0 12px 0 15px !default;
72
+ $tbar-pop-icon-nrml-padding: 0 12px 0 15px !default;
73
+ $tbar-pop-btn-txt-nrml-pad: 0 12px 0 15px !default;
74
+ $tbar-pop-btn-txt-bgr-pad: 0 12px 0 15px !default;
75
+
76
+ $tbar-nav-nrml-width: 38px !default;
77
+ $tbar-nav-bgr-width: 38px !default;
78
+ $tbar-popup-padding: 5px 0 !default;
79
+ $tbar-btn-icn-nrml-padding: 0 0 0 12px !default;
80
+ $tbar-btn-icn-bgr-padding: 0 0 0 12px !default;
81
+ $tbar-btn-icn-right-bgr-padding: 0 12px 0 0 !default;
82
+ $tbar-btn-icn-right-nrml-padding: 0 12px 0 0 !default;
83
+ $btn-txt-nrml-padding: 0 12px 0 6px !default;
84
+ $btn-txt-bgr-padding: 0 12px 0 6px !default;
85
+ $tbar-item-pop-nrml-padding: 0 !default;
86
+ $tbar-item-pop-bgr-padding: 0 !default;
87
+ $tbar-item-nrml-mrgn: 3px !default;
88
+ $tbar-item-bgr-mrgn: 3px !default;
89
+ $tbar-btn-nrml-height: calc(100% - 10px) !default;
90
+ $tbar-btn-nrml-mrgn: 0 !default;
91
+ $tbar-v-btn-nrml-mrgn: 0 !default;
92
+ $tbar-btn-bgr-height: calc(100% - 6px) !default;
93
+ $tbar-btn-bgr-mrgn: 2px 0 !default;
94
+ $tbar-v-btn-bgr-mrgn: 2px auto !default;
95
+ $tbar-btn-nrml-minheight: 32px !default;
96
+ $tbar-btn-bgr-minheight: 34px !default;
97
+ $tbar-btn-font-size: 16px !default;
98
+ $tbar-btn-border-radius: 4px !default;
99
+ $tbar-btn-pressed-box-shadow: inset 0 3px 5px rgba(0 , 0 , 0 , .125) !default;
100
+ $tbar-btn-icon-bgr-width: 24px !default;
101
+ $tbar-btn-icon-bgr-height: 34px !default;
102
+ $tbar-btn-icon-bgr-line-height: 34px !default;
103
+ $tbar-btn-txt-line-height: inherit !default;
104
+ $tbar-btn-icon-nrml-width: 27px !default;
105
+ $tbar-btn-icon-nrml-height: 25px !default;
106
+ $tbar-btn-icon-nrml-line-height: 25px !default;
107
+ $tbar-left-item-line-height: 35px !default;
108
+ $tbar-right-item-line-height: 24px !default;
109
+ $tbar-item-bgr-padding: 2.5px 5px !default;
110
+ $tbar-nrml-item-size: 0 !default;
111
+ $tbar-bgr-item-size: 0 !default;
112
+ $tbar-item-bgr-padding: 3.5px 2.5px !default;
113
+ $tbar-item-nrml-padding: 4px 2.5px !default;
114
+ $tbar-item-nrml-minwidth: 30px !default;
115
+
116
+ $tbar-separator-bgr-height: calc(100% - 12px) !default;
117
+ $tbar-separator-bgr-mrgn: 6px 6px !default;
118
+ $tbar-separator-nrml-mrgn: 5.5px 6px !default;
119
+ $tbar-separator-vertical-bgr-mrgn: 6px !default;
120
+ $tbar-separator-vertical-nrml-mrgn: 6px 5.5px !default;
121
+ $tbar-btn-bgr-padding: 1px 7px !default;
122
+ $tbar-btn-nrml-padding: 1px 2.5px !default;
123
+ $tbar-icons-bgr-font-size: 14px !default;
124
+ $tbar-multirow-items-mrgn-bigger: 15px !default;
125
+ $tbar-multirow-items-mrgn-small: 15px !default;
126
+ $tbar-multirow-item-mrgn: 0 !default;
127
+
128
+ @mixin tbar-btn-animation {
129
+ content: '';
130
+ }
131
+
132
+ @mixin tbar-btn-animation-after {
133
+ content: '';
134
+ }