jqx.bootstrap.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928
  1. /*Rounded Corners*/
  2. /*top-left rounded Corners*/
  3. .jqx-rc-tl-bootstrap {
  4. -moz-border-radius-topleft: 4px;
  5. -webkit-border-top-left-radius: 4px;
  6. border-top-left-radius: 4px;
  7. }
  8. /*top-right rounded Corners*/
  9. .jqx-rc-tr-bootstrap {
  10. -moz-border-radius-topright: 4px;
  11. -webkit-border-top-right-radius: 4px;
  12. border-top-right-radius: 4px;
  13. }
  14. /*bottom-left rounded Corners*/
  15. .jqx-rc-bl-bootstrap {
  16. -moz-border-radius-bottomleft: 4px;
  17. -webkit-border-bottom-left-radius: 4px;
  18. border-bottom-left-radius: 4px;
  19. }
  20. /*bottom-right rounded Corners*/
  21. .jqx-rc-br-bootstrap {
  22. -moz-border-radius-bottomright: 4px;
  23. -webkit-border-bottom-right-radius: 4px;
  24. border-bottom-right-radius: 4px;
  25. }
  26. /*top rounded Corners*/
  27. .jqx-rc-t-bootstrap {
  28. -moz-border-radius-topleft: 4px;
  29. -webkit-border-top-left-radius: 4px;
  30. border-top-left-radius: 4px;
  31. -moz-border-radius-topright: 4px;
  32. -webkit-border-top-right-radius: 4px;
  33. border-top-right-radius: 4px;
  34. }
  35. /*bottom rounded Corners*/
  36. .jqx-rc-b-bootstrap {
  37. -moz-border-radius-bottomleft: 4px;
  38. -webkit-border-bottom-left-radius: 4px;
  39. border-bottom-left-radius: 4px;
  40. -moz-border-radius-bottomright: 4px;
  41. -webkit-border-bottom-right-radius: 4px;
  42. border-bottom-right-radius: 4px;
  43. }
  44. /*right rounded Corners*/
  45. .jqx-rc-r-bootstrap {
  46. -moz-border-radius-topright: 4px;
  47. -webkit-border-top-right-radius: 4px;
  48. border-top-right-radius: 4px;
  49. -moz-border-radius-bottomright: 4px;
  50. -webkit-border-bottom-right-radius: 4px;
  51. border-bottom-right-radius: 4px;
  52. }
  53. /*left rounded Corners*/
  54. .jqx-rc-l-bootstrap {
  55. -moz-border-radius-topleft: 4px;
  56. -webkit-border-top-left-radius: 4px;
  57. border-top-left-radius: 4px;
  58. -moz-border-radius-bottomleft: 4px;
  59. -webkit-border-bottom-left-radius: 4px;
  60. border-bottom-left-radius: 4px;
  61. }
  62. /*all rounded Corners*/
  63. .jqx-rc-all-bootstrap {
  64. -moz-border-radius: 4px;
  65. -webkit-border-radius: 4px;
  66. border-radius: 4px;
  67. }
  68. .jqx-widget-bootstrap, .jqx-widget-header-bootstrap, .jqx-fill-state-normal-bootstrap,
  69. .jqx-widget-content-bootstrap, .jqx-fill-state-hover-bootstrap, .jqx-fill-state-pressed-bootstrap {
  70. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  71. -webkit-transition: box-shadow linear 0.2s;
  72. -moz-transition: box-shadow linear 0.1s;
  73. -o-transition: box-shadow linear 0.1s;
  74. transition: box-shadow linear 0.1s;
  75. }
  76. .jqx-widget-content-bootstrap {
  77. background-color: #ffffff;
  78. border-color: #e6e6e6;
  79. }
  80. .jqx-widget-header-bootstrap {
  81. background-color: #f5f5f5;
  82. border-color: #cccccc;
  83. }
  84. .jqx-fill-state-normal-bootstrap {
  85. color: #333333;
  86. background-color: #ffffff;
  87. border-color: #cccccc;
  88. }
  89. .jqx-button-bootstrap {
  90. padding: 4px 12px;
  91. -webkit-border-radius: 4px;
  92. -moz-border-radius: 4px;
  93. border-radius: 4px;
  94. *zoom: 1;
  95. color: #333333;
  96. background-color: #ffffff;
  97. border-color: #cccccc;
  98. }
  99. .jqx-combobox-multi-item-bootstrap {
  100. padding: 1px 3px;
  101. }
  102. .jqx-fill-state-hover-bootstrap, .jqx-fill-state-pressed-bootstrap {
  103. color: #333333;
  104. background-color: #ebebeb;
  105. border-color: #adadad;
  106. }
  107. .jqx-fill-state-hover-bootstrap, .jqx-fill-state-focus-bootstrap {
  108. color: #333333;
  109. text-decoration: none;
  110. }
  111. .jqx-fill-state-pressed-bootstrap {
  112. background-image: none;
  113. outline: 0;
  114. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  115. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  116. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  117. }
  118. .jqx-grid-cell-bootstrap {
  119. -webkit-box-shadow: none;
  120. -moz-box-shadow: none;
  121. box-shadow: none;
  122. }
  123. .jqx-grid-column-menubutton-bootstrap {
  124. background-color: transparent;
  125. }
  126. .jqx-calendar-row-header-bootstrap, .jqx-calendar-top-left-header-bootstrap {
  127. background-color: #f0f0f0;
  128. border: 0px solid #f2f2f2;
  129. }
  130. .jqx-calendar-column-header-bootstrap {
  131. background-color: #FFF;
  132. border-top: 1px solid #FFF;
  133. border-bottom: 1px solid #e9e9e9;
  134. }
  135. .jqx-expander-header-bootstrap {
  136. background: #fff;
  137. -webkit-box-shadow: none;
  138. -moz-box-shadow: none;
  139. box-shadow: none;
  140. border-color: #e6e6e6;
  141. }
  142. .jqx-widget-bootstrap, .jqx-widget-header-bootstrap, .jqx-widget-content-bootstrap {
  143. -webkit-background-clip: padding-box;
  144. -moz-background-clip: padding-box;
  145. background-clip: padding-box;
  146. }
  147. .jqx-scrollbar-state-normal-bootstrap {
  148. background-color: #f0f0f0;
  149. border: 1px solid #f0f0f0;
  150. }
  151. .jqx-scrollbar-thumb-state-normal-bootstrap, .jqx-scrollbar-thumb-state-normal-horizontal-bootstrap {
  152. background: #f5f5f5;
  153. border-color: #b3b3b3;
  154. }
  155. .jqx-scrollbar-thumb-state-hover-bootstrap, .jqx-scrollbar-thumb-state-hover-horizontal-bootstrap {
  156. background: #e6e6e6;
  157. border-color: #b3b3b3;
  158. }
  159. .jqx-progressbar-bootstrap {
  160. background: #f7f7f7 !important;
  161. -webkit-box-shadow: none;
  162. -moz-box-shadow: none;
  163. box-shadow: none;
  164. }
  165. .jqx-progressbar-value-bootstrap, .jqx-splitter-collapse-button-horizontal-bootstrap {
  166. background-color: #428bca;
  167. }
  168. .jqx-splitter-collapse-button-vertical-bootstrap, .jqx-progressbar-value-vertical-bootstrap {
  169. background-color: #428bca;
  170. }
  171. .jqx-scrollbar-thumb-state-pressed-bootstrap, .jqx-splitter-splitbar-vertical-bootstrap, .jqx-splitter-splitbar-horizontal-bootstrap, .jqx-scrollbar-thumb-state-pressed-horizontal-bootstrap {
  172. background: #d9d9d9;
  173. border-color: #b3b3b3;
  174. }
  175. .jqx-grid-column-sortdescbutton-bootstrap, jqx-grid-column-filterbutton-bootstrap, .jqx-grid-column-sortascbutton-bootstrap {
  176. background-color: transparent;
  177. border-style: solid;
  178. border-width: 0px 0px 0px 0px;
  179. border-color: #cccccc;
  180. }
  181. .jqx-slider-rangebar-bootstrap {
  182. background: #cccccc;
  183. }
  184. .jqx-menu-vertical-bootstrap {
  185. background: #ffffff;
  186. filter: none;
  187. }
  188. .jqx-checkbox-check-checked-bootstrap {
  189. background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALCAYAAACprHcmAAAAcklEQVQY02NgwA/YoJgoEA/Es4DYgJBCJSBeD8SboRinBiYg7kZS2IosyQ/Eakh8LySFq4FYHFlxGRBvBOJYqMRqJMU+yApNkSRAeC0Sux3dfSCTetE0wKyXxOWhMKhTYIr9CAUXyJMzgLgBagBBgDPGAI2LGdNt0T1AAAAAAElFTkSuQmCC');
  190. }
  191. .jqx-combobox-content-bootstrap, .jqx-input-bootstrap {
  192. }
  193. .jqx-combobox-content-bootstrap {
  194. border-color: #cccccc;
  195. }
  196. .jqx-fill-state-focus-bootstrap, .jqx-combobox-content-focus-bootstrap, .jqx-numberinput-focus-bootstrap {
  197. outline: none;
  198. border-color: #b3b3b3;
  199. }
  200. .jqx-grid-bottomright-bootstrap, .jqx-panel-bottomright-bootstrap, .jqx-listbox-bottomright-bootstrap {
  201. background-color: #efefef;
  202. }
  203. .jqx-tabs-title-bootstrap,
  204. .jqx-tabs-title-bottom-bootstrap, .jqx-expander-header-bootstrap {
  205. color: #0088cc !important;
  206. }
  207. .jqx-expander-header-bootstrap:hover:not(.jqx-fill-state-disabled-bootstrap) {
  208. color: #005580 !important;
  209. cursor: pointer;
  210. }
  211. .jqx-tabs-title-hover-top-bootstrap,
  212. .jqx-tabs-title-hover-bottom-bootstrap {
  213. color: #005580 !important;
  214. background: #eee;
  215. border-color: #eee;
  216. -moz-border-radius: 0px;
  217. -webkit-border-radius: 0px;
  218. border-radius: 0px;
  219. }
  220. .jqx-tabs-title-selected-top-bootstrap, .jqx-tabs-selection-tracker-top-bootstrap {
  221. border-color: #ddd;
  222. border-bottom: 1px solid #fff;
  223. filter: none;
  224. color: #555555 !important;
  225. background: #fff;
  226. box-shadow: none;
  227. }
  228. .jqx-tabs-title-selected-bottom-bootstrap, .jqx-tabs-selection-tracker-bottom-bootstrap {
  229. border-color: #ddd;
  230. border-top: 1px solid #fff;
  231. filter: none;
  232. color: #555555 !important;
  233. background: #fff;
  234. box-shadow: none;
  235. }
  236. .jqx-tabs-header-bootstrap {
  237. background: #fff;
  238. border-color: #ddd;
  239. -webkit-box-shadow: none;
  240. box-shadow: none;
  241. }
  242. .jqx-tabs-bootstrap {
  243. border-color: #ddd;
  244. }
  245. .jqx-window-bootstrap, .jqx-tooltip-bootstrap {
  246. box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);
  247. }
  248. .jqx-docking-bootstrap .jqx-window-bootstrap {
  249. box-shadow: none;
  250. }
  251. .jqx-docking-panel-bootstrap .jqx-window-bootstrap {
  252. box-shadow: none;
  253. }
  254. .jqx-radiobutton-bootstrap {
  255. background-repeat: no-repeat;
  256. background: none;
  257. }
  258. .jqx-radiobutton-bootstrap-bootstrap, .jqx-radiobutton-hover-bootstrap {
  259. -moz-border-radius: 100%;
  260. -webkit-border-radius: 100%;
  261. border-radius: 100%;
  262. background-repeat: no-repeat;
  263. }
  264. .jqx-radiobutton-check-checked-bootstrap {
  265. filter: none;
  266. background: #666;
  267. background-repeat: no-repeat;
  268. -moz-border-radius: 100%;
  269. -webkit-border-radius: 100%;
  270. border-radius: 100%;
  271. }
  272. .jqx-radiobutton-check-indeterminate-bootstrap {
  273. filter: none;
  274. background: #999;
  275. -moz-border-radius: 100%;
  276. -webkit-border-radius: 100%;
  277. border-radius: 100%;
  278. }
  279. .jqx-radiobutton-check-indeterminate-disabled-bootstrap {
  280. filter: none;
  281. background: #999;
  282. -moz-border-radius: 100%;
  283. -webkit-border-radius: 100%;
  284. border-radius: 100%;
  285. }
  286. .jqx-slider-track-horizontal-bootstrap, .jqx-slider-track-vertical-bootstrap {
  287. border-color: #cccccc;
  288. background: #f0f0f0;
  289. }
  290. .jqx-slider-button-bootstrap {
  291. -moz-border-radius: 100%;
  292. -webkit-border-radius: 100%;
  293. border-radius: 100%;
  294. }
  295. .jqx-fill-state-normal-bootstrap.jqx-primary {
  296. color: #ffffff;
  297. background-color: #428bca;
  298. border-color: #357ebd;
  299. }
  300. .jqx-fill-state-hover-bootstrap.jqx-primary {
  301. color: #ffffff;
  302. background-color: #3276b1;
  303. border-color: #285e8e;
  304. }
  305. .jqx-fill-state-pressed-bootstrap.jqx-primary {
  306. color: #ffffff;
  307. background-color: #3276b1;
  308. border-color: #285e8e;
  309. }
  310. .jqx-fill-state-normal-bootstrap.jqx-warning {
  311. color: #ffffff;
  312. background-color: #f0ad4e;
  313. border-color: #eea236;
  314. }
  315. .jqx-fill-state-hover-bootstrap.jqx-warning {
  316. color: #ffffff;
  317. background-color: #ed9c28;
  318. border-color: #d58512;
  319. }
  320. .jqx-fill-state-pressed-bootstrap.jqx-warning {
  321. color: #ffffff;
  322. background-color: #ed9c28;
  323. border-color: #d58512;
  324. }
  325. .jqx-fill-state-normal-bootstrap.jqx-danger {
  326. color: #ffffff;
  327. background-color: #d9534f;
  328. border-color: #d43f3a;
  329. }
  330. .jqx-fill-state-hover-bootstrap.jqx-danger {
  331. color: #ffffff;
  332. background-color: #d2322d;
  333. border-color: #ac2925;
  334. }
  335. .jqx-fill-state-pressed-bootstrap.jqx-danger {
  336. color: #ffffff;
  337. background-color: #d2322d;
  338. border-color: #ac2925;
  339. }
  340. .jqx-fill-state-normal-bootstrap.jqx-success {
  341. color: #ffffff;
  342. background-color: #5cb85c;
  343. border-color: #4cae4c;
  344. }
  345. .jqx-fill-state-hover-bootstrap.jqx-success {
  346. color: #ffffff;
  347. background-color: #47a447;
  348. border-color: #398439;
  349. }
  350. .jqx-fill-state-pressed-bootstrap.jqx-success {
  351. color: #ffffff;
  352. background-color: #47a447;
  353. border-color: #398439;
  354. }
  355. .jqx-fill-state-normal-bootstrap.jqx-info {
  356. color: #ffffff;
  357. background-color: #5bc0de;
  358. border-color: #46b8da;
  359. }
  360. .jqx-fill-state-hover-bootstrap.jqx-info {
  361. color: #ffffff;
  362. background-color: #39b3d7;
  363. border-color: #269abc;
  364. }
  365. .jqx-fill-state-pressed-bootstrap.jqx-info {
  366. color: #ffffff;
  367. background-color: #39b3d7;
  368. border-color: #269abc;
  369. }
  370. .jqx-fill-state-normal-bootstrap.jqx-inverse {
  371. color: #ffffff;
  372. background-color: #222222;
  373. border-color: #080808;
  374. }
  375. .jqx-fill-state-hover-bootstrap.jqx-inverse {
  376. color: #ffffff;
  377. background-color: #080808;
  378. }
  379. .jqx-fill-state-pressed-bootstrap.jqx-inverse {
  380. color: #ffffff;
  381. background-color: #080808;
  382. }
  383. /*applied to a list item when the item is selected.*/
  384. .jqx-listitem-state-hover-bootstrap, .jqx-menu-item-hover-bootstrap, .jqx-tree-item-hover-bootstrap, .jqx-calendar-cell-hover-bootstrap, .jqx-grid-cell-hover-bootstrap,
  385. .jqx-menu-vertical-bootstrap .jqx-menu-item-top-hover-bootstrap, .jqx-input-popup-bootstrap .jqx-fill-state-hover-bootstrap,
  386. .jqx-input-button-header-bootstrap, .jqx-input-popup-bootstrap .jqx-fill-state-pressed-bootstrap,
  387. .jqx-input-button-header-bootstrap {
  388. color: #ffffff !important;
  389. color: #333333 !important;
  390. background-color: #ebebeb !important;
  391. border-color: #ebebeb !important;
  392. outline: 0;
  393. }
  394. .jqx-grid-cell-hover-bootstrap {
  395. border-color: #ccc !important;
  396. }
  397. .jqx-listitem-state-selected-bootstrap, .jqx-menu-item-selected-bootstrap, .jqx-tree-item-selected-bootstrap, .jqx-calendar-cell-selected-bootstrap, .jqx-grid-cell-selected-bootstrap,
  398. .jqx-menu-vertical-bootstrap .jqx-menu-item-top-selected-bootstrap, .jqx-grid-selectionarea-bootstrap {
  399. color: #ffffff !important;
  400. background-color: #428bca !important;
  401. border-color: #357ebd !important;
  402. }
  403. /*top rounded Corners*/
  404. .jqx-rc-t-expanded-bootstrap {
  405. -moz-border-radius-topleft: 4px !important;
  406. -webkit-border-top-left-radius: 4px !important;
  407. border-top-left-radius: 4px !important;
  408. -moz-border-radius-topright: 4px !important;
  409. -webkit-border-top-right-radius: 4px !important;
  410. border-top-right-radius: 4px !important;
  411. }
  412. /*bottom rounded Corners*/
  413. .jqx-rc-b-expanded-bootstrap {
  414. -moz-border-radius-bottomleft: 4px !important;
  415. -webkit-border-bottom-left-radius: 4px !important;
  416. border-bottom-left-radius: 4px !important;
  417. -moz-border-radius-bottomright: 4px !important;
  418. -webkit-border-bottom-right-radius: 4px !important;
  419. border-bottom-right-radius: 4px !important;
  420. }
  421. .jqx-popup-bootstrap.jqx-listbox-bootstrap, .jqx-popup-bootstrap.jqx-calendar-bootstrap {
  422. top: 2px !important;
  423. position: relative;
  424. }
  425. .jqx-popup-up-bootstrap.jqx-listbox-bootstrap, .jqx-popup-up-bootstrap.jqx-calendar-bootstrap {
  426. top: 23px !important;
  427. position: relative;
  428. }
  429. .jqx-menu-popup-bootstrap > div:first-child {
  430. padding-bottom: 15px !important;
  431. padding-right: 15px !important;
  432. }
  433. .jqx-menu-dropdown-bootstrap, .jqx-popup-bootstrap.jqx-dropdownbutton-popup-bootstrap {
  434. margin-top: 2px !important;
  435. }
  436. .jqx-popup-bootstrap {
  437. border: 1px solid #ccc;
  438. *border-right-width: 2px;
  439. *border-bottom-width: 2px;
  440. -webkit-border-radius: 4px !important;
  441. -moz-border-radius: 4px !important;
  442. border-radius: 4px !important;
  443. -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  444. -moz-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  445. -webkit-background-clip: padding-box !important;
  446. -moz-background-clip: padding !important;
  447. background-clip: padding-box !important;
  448. }
  449. .jqx-widget-bootstrap .jqx-grid-cell-bootstrap, .jqx-widget-bootstrap .jqx-grid-column-header-bootstrap, .jqx-widget-bootstrap .jqx-grid-group-cell {
  450. border-color: #ccc;
  451. }
  452. .jqx-widget-bootstrap .jqx-grid-column-menubutton-bootstrap, .jqx-widget-bootstrap .jqx-grid-column-sortascbutton-bootstrap, .jqx-widget-bootstrap .jqx-grid-column-sortdescbutton-bootstrap, .jqx-widget .jqx-grid-column-filterbutton-bootstrap {
  453. border-color: #ccc;
  454. }
  455. .jqx-grid-column-sortascbutton-bootstrap, .jqx-expander-arrow-bottom-bootstrap, .jqx-window-collapse-button-bootstrap, .jqx-menu-item-arrow-up-bootstrap, .jqx-menu-item-arrow-up-selected-bootstrap, .jqx-menu-item-arrow-top-up-bootstrap, .jqx-icon-arrow-up-bootstrap, .jqx-icon-arrow-up-hover-bootstrap, .jqx-icon-arrow-up-selected-bootstrap {
  456. background-image: url('images/icon-up.png');
  457. background-repeat: no-repeat;
  458. background-position: center;
  459. }
  460. .jqx-widget-bootstrap .jqx-grid-group-expand-bootstrap, .jqx-grid-group-expand-bootstrap, .jqx-grid-column-menubutton-bootstrap, .jqx-grid-column-sortdescbutton-bootstrap, .jqx-expander-arrow-top-bootstrap, .jqx-window-collapse-button-collapsed-bootstrap, .jqx-menu-item-arrow-down-bootstrap, .jqx-menu-item-arrow-down-selected-bootstrap, .jqx-menu-item-arrow-down-bootstrap, .jqx-icon-arrow-down-bootstrap, .jqx-icon-arrow-down-hover-bootstrap, .jqx-icon-arrow-down-selected-bootstrap {
  461. background-image: url('images/icon-down.png');
  462. background-repeat: no-repeat;
  463. background-position: center;
  464. }
  465. .jqx-tabs-arrow-left-bootstrap, .jqx-menu-item-arrow-left-selected-bootstrap, .jqx-menu-item-arrow-top-left, .jqx-icon-arrow-left-bootstrap, .jqx-icon-arrow-down-left-bootstrap, .jqx-icon-arrow-left-selected-bootstrap {
  466. background-image: url('images/icon-left.png');
  467. background-repeat: no-repeat;
  468. background-position: center;
  469. }
  470. .jqx-widget-bootstrap .jqx-grid-group-collapse-bootstrap, .jqx-grid-group-collapse-bootstrap, .jqx-tabs-arrow-right-bootstrap, .jqx-menu-item-arrow-right-selected-bootstrap, .jqx-menu-item-arrow-top-right-bootstrap, .jqx-icon-arrow-right-bootstrap, .jqx-icon-arrow-right-hover-bootstrap, .jqx-icon-arrow-right-selected-bootstrap {
  471. background-image: url('images/icon-right.png');
  472. background-repeat: no-repeat;
  473. background-position: center;
  474. }
  475. .jqx-tree-item-arrow-collapse-rtl-bootstrap, .jqx-tree-item-arrow-collapse-hover-rtl-bootstrap {
  476. background-image: url(images/icon-left.png);
  477. }
  478. .jqx-menu-item-arrow-left-selected-bootstrap {
  479. background-image: url('images/icon-left-white.png');
  480. background-repeat: no-repeat;
  481. background-position: center;
  482. }
  483. .jqx-menu-item-arrow-right-selected-bootstrap {
  484. background-image: url('images/icon-right-white.png');
  485. background-repeat: no-repeat;
  486. background-position: center;
  487. }
  488. .jqx-primary .jqx-grid-column-sortascbutton-bootstrap, .jqx-primary .jqx-expander-arrow-bottom-bootstrap, .jqx-primary .jqx-window-collapse-button-bootstrap, .jqx-primary .jqx-menu-item-arrow-up-bootstrap, .jqx-primary .jqx-menu-item-arrow-up-selected-bootstrap, .jqx-primary .jqx-menu-item-arrow-top-up-bootstrap, .jqx-primary .jqx-icon-arrow-up-bootstrap, .jqx-primary .jqx-icon-arrow-up-hover-bootstrap, .jqx-primary .jqx-icon-arrow-up-selected-bootstrap {
  489. background-image: url('images/icon-up-white.png');
  490. background-repeat: no-repeat;
  491. background-position: center;
  492. }
  493. .jqx-primary .jqx-widget-bootstrap .jqx-primary .jqx-grid-group-expand-bootstrap, .jqx-primary .jqx-grid-group-expand-bootstrap, .jqx-primary .jqx-grid-column-menubutton-bootstrap, .jqx-primary .jqx-grid-column-sortdescbutton-bootstrap, .jqx-primary .jqx-expander-arrow-top-bootstrap, .jqx-primary .jqx-window-collapse-button-collapsed-bootstrap, .jqx-primary .jqx-menu-item-arrow-down-bootstrap, .jqx-primary .jqx-menu-item-arrow-down-selected-bootstrap, .jqx-primary .jqx-menu-item-arrow-down-bootstrap, .jqx-primary .jqx-icon-arrow-down-bootstrap, .jqx-primary .jqx-icon-arrow-down-hover-bootstrap, .jqx-primary .jqx-icon-arrow-down-selected-bootstrap {
  494. background-image: url('images/icon-down-white.png');
  495. background-repeat: no-repeat;
  496. background-position: center;
  497. }
  498. .jqx-primary .jqx-tabs-arrow-left-bootstrap, .jqx-primary .jqx-menu-item-arrow-left-selected-bootstrap, .jqx-primary .jqx-menu-item-arrow-top-left, .jqx-primary .jqx-icon-arrow-left-bootstrap, .jqx-primary .jqx-icon-arrow-down-left-bootstrap, .jqx-primary .jqx-icon-arrow-left-selected-bootstrap {
  499. background-image: url('images/icon-left-white.png');
  500. background-repeat: no-repeat;
  501. background-position: center;
  502. }
  503. .jqx-primary .jqx-widget-bootstrap .jqx-primary .jqx-grid-group-collapse-bootstrap, .jqx-primary .jqx-grid-group-collapse-bootstrap, .jqx-primary .jqx-tabs-arrow-right-bootstrap, .jqx-primary .jqx-menu-item-arrow-right-selected-bootstrap, .jqx-primary .jqx-menu-item-arrow-top-right-bootstrap, .jqx-primary .jqx-icon-arrow-right-bootstrap, .jqx-primary .jqx-icon-arrow-right-hover-bootstrap, .jqx-primary .jqx-icon-arrow-right-selected-bootstrap {
  504. background-image: url('images/icon-right-white.png');
  505. background-repeat: no-repeat;
  506. background-position: center;
  507. }
  508. .jqx-primary .jqx-window-close-button-bootstrap, .jqx-primary .jqx-icon-close-bootstrap, .jqx-primary .jqx-tabs-close-button-bootstrap, .jqx-primary .jqx-tabs-close-button-hover-bootstrap, .jqx-primary .jqx-tabs-close-button-selected-bootstrap {
  509. background-image: url(images/close_white.png);
  510. background-repeat: no-repeat;
  511. background-position: center;
  512. }
  513. .jqx-primary .jqx-tree-item-arrow-collapse-rtl-bootstrap, .jqx-primary .jqx-tree-item-arrow-collapse-hover-rtl-bootstrap {
  514. background-image: url(images/icon-left.png);
  515. }
  516. .jqx-warning .jqx-grid-column-sortascbutton-bootstrap, .jqx-warning .jqx-expander-arrow-bottom-bootstrap, .jqx-warning .jqx-window-collapse-button-bootstrap, .jqx-warning .jqx-menu-item-arrow-up-bootstrap, .jqx-warning .jqx-menu-item-arrow-up-selected-bootstrap, .jqx-warning .jqx-menu-item-arrow-top-up-bootstrap, .jqx-warning .jqx-icon-arrow-up-bootstrap, .jqx-warning .jqx-icon-arrow-up-hover-bootstrap, .jqx-warning .jqx-icon-arrow-up-selected-bootstrap {
  517. background-image: url('images/icon-up-white.png');
  518. background-repeat: no-repeat;
  519. background-position: center;
  520. }
  521. .jqx-warning .jqx-widget-bootstrap .jqx-warning .jqx-grid-group-expand-bootstrap, .jqx-warning .jqx-grid-group-expand-bootstrap, .jqx-warning .jqx-grid-column-menubutton-bootstrap, .jqx-warning .jqx-grid-column-sortdescbutton-bootstrap, .jqx-warning .jqx-expander-arrow-top-bootstrap, .jqx-warning .jqx-window-collapse-button-collapsed-bootstrap, .jqx-warning .jqx-menu-item-arrow-down-bootstrap, .jqx-warning .jqx-menu-item-arrow-down-selected-bootstrap, .jqx-warning .jqx-menu-item-arrow-down-bootstrap, .jqx-warning .jqx-icon-arrow-down-bootstrap, .jqx-warning .jqx-icon-arrow-down-hover-bootstrap, .jqx-warning .jqx-icon-arrow-down-selected-bootstrap {
  522. background-image: url('images/icon-down-white.png');
  523. background-repeat: no-repeat;
  524. background-position: center;
  525. }
  526. .jqx-warning .jqx-tabs-arrow-left-bootstrap, .jqx-warning .jqx-menu-item-arrow-left-selected-bootstrap, .jqx-warning .jqx-menu-item-arrow-top-left, .jqx-warning .jqx-icon-arrow-left-bootstrap, .jqx-warning .jqx-icon-arrow-down-left-bootstrap, .jqx-warning .jqx-icon-arrow-left-selected-bootstrap {
  527. background-image: url('images/icon-left-white.png');
  528. background-repeat: no-repeat;
  529. background-position: center;
  530. }
  531. .jqx-warning .jqx-widget-bootstrap .jqx-warning .jqx-grid-group-collapse-bootstrap, .jqx-warning .jqx-grid-group-collapse-bootstrap, .jqx-warning .jqx-tabs-arrow-right-bootstrap, .jqx-warning .jqx-menu-item-arrow-right-selected-bootstrap, .jqx-warning .jqx-menu-item-arrow-top-right-bootstrap, .jqx-warning .jqx-icon-arrow-right-bootstrap, .jqx-warning .jqx-icon-arrow-right-hover-bootstrap, .jqx-warning .jqx-icon-arrow-right-selected-bootstrap {
  532. background-image: url('images/icon-right-white.png');
  533. background-repeat: no-repeat;
  534. background-position: center;
  535. }
  536. .jqx-warning .jqx-window-close-button-bootstrap, .jqx-warning .jqx-icon-close-bootstrap, .jqx-warning .jqx-tabs-close-button-bootstrap, .jqx-warning .jqx-tabs-close-button-hover-bootstrap, .jqx-warning .jqx-tabs-close-button-selected-bootstrap {
  537. background-image: url(images/close_white.png);
  538. background-repeat: no-repeat;
  539. background-position: center;
  540. }
  541. .jqx-warning .jqx-tree-item-arrow-collapse-rtl-bootstrap, .jqx-warning .jqx-tree-item-arrow-collapse-hover-rtl-bootstrap {
  542. background-image: url(images/icon-left.png);
  543. }
  544. .jqx-danger .jqx-grid-column-sortascbutton-bootstrap, .jqx-danger .jqx-expander-arrow-bottom-bootstrap, .jqx-danger .jqx-window-collapse-button-bootstrap, .jqx-danger .jqx-menu-item-arrow-up-bootstrap, .jqx-danger .jqx-menu-item-arrow-up-selected-bootstrap, .jqx-danger .jqx-menu-item-arrow-top-up-bootstrap, .jqx-danger .jqx-icon-arrow-up-bootstrap, .jqx-danger .jqx-icon-arrow-up-hover-bootstrap, .jqx-danger .jqx-icon-arrow-up-selected-bootstrap {
  545. background-image: url('images/icon-up-white.png');
  546. background-repeat: no-repeat;
  547. background-position: center;
  548. }
  549. .jqx-danger .jqx-widget-bootstrap .jqx-danger .jqx-grid-group-expand-bootstrap, .jqx-danger .jqx-grid-group-expand-bootstrap, .jqx-danger .jqx-grid-column-menubutton-bootstrap, .jqx-danger .jqx-grid-column-sortdescbutton-bootstrap, .jqx-danger .jqx-expander-arrow-top-bootstrap, .jqx-danger .jqx-window-collapse-button-collapsed-bootstrap, .jqx-danger .jqx-menu-item-arrow-down-bootstrap, .jqx-danger .jqx-menu-item-arrow-down-selected-bootstrap, .jqx-danger .jqx-menu-item-arrow-down-bootstrap, .jqx-danger .jqx-icon-arrow-down-bootstrap, .jqx-danger .jqx-icon-arrow-down-hover-bootstrap, .jqx-danger .jqx-icon-arrow-down-selected-bootstrap {
  550. background-image: url('images/icon-down-white.png');
  551. background-repeat: no-repeat;
  552. background-position: center;
  553. }
  554. .jqx-danger .jqx-tabs-arrow-left-bootstrap, .jqx-danger .jqx-menu-item-arrow-left-selected-bootstrap, .jqx-danger .jqx-menu-item-arrow-top-left, .jqx-danger .jqx-icon-arrow-left-bootstrap, .jqx-danger .jqx-icon-arrow-down-left-bootstrap, .jqx-danger .jqx-icon-arrow-left-selected-bootstrap {
  555. background-image: url('images/icon-left-white.png');
  556. background-repeat: no-repeat;
  557. background-position: center;
  558. }
  559. .jqx-danger .jqx-widget-bootstrap .jqx-danger .jqx-grid-group-collapse-bootstrap, .jqx-danger .jqx-grid-group-collapse-bootstrap, .jqx-danger .jqx-tabs-arrow-right-bootstrap, .jqx-danger .jqx-menu-item-arrow-right-selected-bootstrap, .jqx-danger .jqx-menu-item-arrow-top-right-bootstrap, .jqx-danger .jqx-icon-arrow-right-bootstrap, .jqx-danger .jqx-icon-arrow-right-hover-bootstrap, .jqx-danger .jqx-icon-arrow-right-selected-bootstrap {
  560. background-image: url('images/icon-right-white.png');
  561. background-repeat: no-repeat;
  562. background-position: center;
  563. }
  564. .jqx-danger .jqx-window-close-button-bootstrap, .jqx-danger .jqx-icon-close-bootstrap, .jqx-danger .jqx-tabs-close-button-bootstrap, .jqx-danger .jqx-tabs-close-button-hover-bootstrap, .jqx-danger .jqx-tabs-close-button-selected-bootstrap {
  565. background-image: url(images/close_white.png);
  566. background-repeat: no-repeat;
  567. background-position: center;
  568. }
  569. .jqx-danger .jqx-tree-item-arrow-collapse-rtl-bootstrap, .jqx-danger .jqx-tree-item-arrow-collapse-hover-rtl-bootstrap {
  570. background-image: url(images/icon-left.png);
  571. }
  572. .jqx-info .jqx-grid-column-sortascbutton-bootstrap, .jqx-info .jqx-expander-arrow-bottom-bootstrap, .jqx-info .jqx-window-collapse-button-bootstrap, .jqx-info .jqx-menu-item-arrow-up-bootstrap, .jqx-info .jqx-menu-item-arrow-up-selected-bootstrap, .jqx-info .jqx-menu-item-arrow-top-up-bootstrap, .jqx-info .jqx-icon-arrow-up-bootstrap, .jqx-info .jqx-icon-arrow-up-hover-bootstrap, .jqx-info .jqx-icon-arrow-up-selected-bootstrap {
  573. background-image: url('images/icon-up-white.png');
  574. background-repeat: no-repeat;
  575. background-position: center;
  576. }
  577. .jqx-info .jqx-widget-bootstrap .jqx-info .jqx-grid-group-expand-bootstrap, .jqx-info .jqx-grid-group-expand-bootstrap, .jqx-info .jqx-grid-column-menubutton-bootstrap, .jqx-info .jqx-grid-column-sortdescbutton-bootstrap, .jqx-info .jqx-expander-arrow-top-bootstrap, .jqx-info .jqx-window-collapse-button-collapsed-bootstrap, .jqx-info .jqx-menu-item-arrow-down-bootstrap, .jqx-info .jqx-menu-item-arrow-down-selected-bootstrap, .jqx-info .jqx-menu-item-arrow-down-bootstrap, .jqx-info .jqx-icon-arrow-down-bootstrap, .jqx-info .jqx-icon-arrow-down-hover-bootstrap, .jqx-info .jqx-icon-arrow-down-selected-bootstrap {
  578. background-image: url('images/icon-down-white.png');
  579. background-repeat: no-repeat;
  580. background-position: center;
  581. }
  582. .jqx-info .jqx-tabs-arrow-left-bootstrap, .jqx-info .jqx-menu-item-arrow-left-selected-bootstrap, .jqx-info .jqx-menu-item-arrow-top-left, .jqx-info .jqx-icon-arrow-left-bootstrap, .jqx-info .jqx-icon-arrow-down-left-bootstrap, .jqx-info .jqx-icon-arrow-left-selected-bootstrap {
  583. background-image: url('images/icon-left-white.png');
  584. background-repeat: no-repeat;
  585. background-position: center;
  586. }
  587. .jqx-info .jqx-widget-bootstrap .jqx-info .jqx-grid-group-collapse-bootstrap, .jqx-info .jqx-grid-group-collapse-bootstrap, .jqx-info .jqx-tabs-arrow-right-bootstrap, .jqx-info .jqx-menu-item-arrow-right-selected-bootstrap, .jqx-info .jqx-menu-item-arrow-top-right-bootstrap, .jqx-info .jqx-icon-arrow-right-bootstrap, .jqx-info .jqx-icon-arrow-right-hover-bootstrap, .jqx-info .jqx-icon-arrow-right-selected-bootstrap {
  588. background-image: url('images/icon-right-white.png');
  589. background-repeat: no-repeat;
  590. background-position: center;
  591. }
  592. .jqx-info .jqx-window-close-button-bootstrap, .jqx-info .jqx-icon-close-bootstrap, .jqx-info .jqx-tabs-close-button-bootstrap, .jqx-info .jqx-tabs-close-button-hover-bootstrap, .jqx-info .jqx-tabs-close-button-selected-bootstrap {
  593. background-image: url(images/close_white.png);
  594. background-repeat: no-repeat;
  595. background-position: center;
  596. }
  597. .jqx-info .jqx-tree-item-arrow-collapse-rtl-bootstrap, .jqx-info .jqx-tree-item-arrow-collapse-hover-rtl-bootstrap {
  598. background-image: url(images/icon-left.png);
  599. }
  600. .jqx-success .jqx-grid-column-sortascbutton-bootstrap, .jqx-success .jqx-expander-arrow-bottom-bootstrap, .jqx-success .jqx-window-collapse-button-bootstrap, .jqx-success .jqx-menu-item-arrow-up-bootstrap, .jqx-success .jqx-menu-item-arrow-up-selected-bootstrap, .jqx-success .jqx-menu-item-arrow-top-up-bootstrap, .jqx-success .jqx-icon-arrow-up-bootstrap, .jqx-success .jqx-icon-arrow-up-hover-bootstrap, .jqx-success .jqx-icon-arrow-up-selected-bootstrap {
  601. background-image: url('images/icon-up-white.png');
  602. background-repeat: no-repeat;
  603. background-position: center;
  604. }
  605. .jqx-success .jqx-widget-bootstrap .jqx-success .jqx-grid-group-expand-bootstrap, .jqx-success .jqx-grid-group-expand-bootstrap, .jqx-success .jqx-grid-column-menubutton-bootstrap, .jqx-success .jqx-grid-column-sortdescbutton-bootstrap, .jqx-success .jqx-expander-arrow-top-bootstrap, .jqx-success .jqx-window-collapse-button-collapsed-bootstrap, .jqx-success .jqx-menu-item-arrow-down-bootstrap, .jqx-success .jqx-menu-item-arrow-down-selected-bootstrap, .jqx-success .jqx-menu-item-arrow-down-bootstrap, .jqx-success .jqx-icon-arrow-down-bootstrap, .jqx-success .jqx-icon-arrow-down-hover-bootstrap, .jqx-success .jqx-icon-arrow-down-selected-bootstrap {
  606. background-image: url('images/icon-down-white.png');
  607. background-repeat: no-repeat;
  608. background-position: center;
  609. }
  610. .jqx-success .jqx-tabs-arrow-left-bootstrap, .jqx-success .jqx-menu-item-arrow-left-selected-bootstrap, .jqx-success .jqx-menu-item-arrow-top-left, .jqx-success .jqx-icon-arrow-left-bootstrap, .jqx-success .jqx-icon-arrow-down-left-bootstrap, .jqx-success .jqx-icon-arrow-left-selected-bootstrap {
  611. background-image: url('images/icon-left-white.png');
  612. background-repeat: no-repeat;
  613. background-position: center;
  614. }
  615. .jqx-success .jqx-widget-bootstrap .jqx-success .jqx-grid-group-collapse-bootstrap, .jqx-success .jqx-grid-group-collapse-bootstrap, .jqx-success .jqx-tabs-arrow-right-bootstrap, .jqx-success .jqx-menu-item-arrow-right-selected-bootstrap, .jqx-success .jqx-menu-item-arrow-top-right-bootstrap, .jqx-success .jqx-icon-arrow-right-bootstrap, .jqx-success .jqx-icon-arrow-right-hover-bootstrap, .jqx-success .jqx-icon-arrow-right-selected-bootstrap {
  616. background-image: url('images/icon-right-white.png');
  617. background-repeat: no-repeat;
  618. background-position: center;
  619. }
  620. .jqx-success .jqx-window-close-button-bootstrap, .jqx-success .jqx-icon-close-bootstrap, .jqx-success .jqx-tabs-close-button-bootstrap, .jqx-success .jqx-tabs-close-button-hover-bootstrap, .jqx-success .jqx-tabs-close-button-selected-bootstrap {
  621. background-image: url(images/close_white.png);
  622. background-repeat: no-repeat;
  623. background-position: center;
  624. }
  625. .jqx-success .jqx-tree-item-arrow-collapse-rtl-bootstrap, .jqx-success .jqx-tree-item-arrow-collapse-hover-rtl-bootstrap {
  626. background-image: url(images/icon-left.png);
  627. }
  628. .jqx-inverse .jqx-grid-column-sortascbutton-bootstrap, .jqx-inverse .jqx-expander-arrow-bottom-bootstrap, .jqx-inverse .jqx-window-collapse-button-bootstrap, .jqx-inverse .jqx-menu-item-arrow-up-bootstrap, .jqx-inverse .jqx-menu-item-arrow-up-selected-bootstrap, .jqx-inverse .jqx-menu-item-arrow-top-up-bootstrap, .jqx-inverse .jqx-icon-arrow-up-bootstrap, .jqx-inverse .jqx-icon-arrow-up-hover-bootstrap, .jqx-inverse .jqx-icon-arrow-up-selected-bootstrap {
  629. background-image: url('images/icon-up-white.png');
  630. background-repeat: no-repeat;
  631. background-position: center;
  632. }
  633. .jqx-inverse .jqx-widget-bootstrap .jqx-inverse .jqx-grid-group-expand-bootstrap, .jqx-inverse .jqx-grid-group-expand-bootstrap, .jqx-inverse .jqx-grid-column-menubutton-bootstrap, .jqx-inverse .jqx-grid-column-sortdescbutton-bootstrap, .jqx-inverse .jqx-expander-arrow-top-bootstrap, .jqx-inverse .jqx-window-collapse-button-collapsed-bootstrap, .jqx-inverse .jqx-menu-item-arrow-down-bootstrap, .jqx-inverse .jqx-menu-item-arrow-down-selected-bootstrap, .jqx-inverse .jqx-menu-item-arrow-down-bootstrap, .jqx-inverse .jqx-icon-arrow-down-bootstrap, .jqx-inverse .jqx-icon-arrow-down-hover-bootstrap, .jqx-inverse .jqx-icon-arrow-down-selected-bootstrap {
  634. background-image: url('images/icon-down-white.png');
  635. background-repeat: no-repeat;
  636. background-position: center;
  637. }
  638. .jqx-inverse .jqx-tabs-arrow-left-bootstrap, .jqx-inverse .jqx-menu-item-arrow-left-selected-bootstrap, .jqx-inverse .jqx-menu-item-arrow-top-left, .jqx-inverse .jqx-icon-arrow-left-bootstrap, .jqx-inverse .jqx-icon-arrow-down-left-bootstrap, .jqx-inverse .jqx-icon-arrow-left-selected-bootstrap {
  639. background-image: url('images/icon-left-white.png');
  640. background-repeat: no-repeat;
  641. background-position: center;
  642. }
  643. .jqx-inverse .jqx-widget-bootstrap .jqx-inverse .jqx-grid-group-collapse-bootstrap, .jqx-inverse .jqx-grid-group-collapse-bootstrap, .jqx-inverse .jqx-tabs-arrow-right-bootstrap, .jqx-inverse .jqx-menu-item-arrow-right-selected-bootstrap, .jqx-inverse .jqx-menu-item-arrow-top-right-bootstrap, .jqx-inverse .jqx-icon-arrow-right-bootstrap, .jqx-inverse .jqx-icon-arrow-right-hover-bootstrap, .jqx-inverse .jqx-icon-arrow-right-selected-bootstrap {
  644. background-image: url('images/icon-right-white.png');
  645. background-repeat: no-repeat;
  646. background-position: center;
  647. }
  648. .jqx-inverse .jqx-window-close-button-bootstrap, .jqx-inverse .jqx-icon-close-bootstrap, .jqx-inverse .jqx-tabs-close-button-bootstrap, .jqx-inverse .jqx-tabs-close-button-hover-bootstrap, .jqx-inverse .jqx-tabs-close-button-selected-bootstrap {
  649. background-image: url(images/close_white.png);
  650. background-repeat: no-repeat;
  651. background-position: center;
  652. }
  653. .jqx-inverse .jqx-tree-item-arrow-collapse-rtl-bootstrap, .jqx-inverse .jqx-tree-item-arrow-collapse-hover-rtl-bootstrap {
  654. background-image: url(images/icon-left.png);
  655. }
  656. .jqx-input-button-content-bootstrap {
  657. font-size: 10px;
  658. }
  659. .jqx-combobox-content-bootstrap, .jqx-input-bootstrap {
  660. border-color: #cccccc;
  661. color: #555555;
  662. background-color: #ffffff;
  663. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  664. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  665. -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  666. -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  667. -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  668. transition: border linear 0.2s, box-shadow linear 0.2s;
  669. }
  670. .jqx-combobox-content-bootstrap, .jqx-combobox-bootstrap, .jqx-combobox-state-normal-bootstrap {
  671. border-color: #cccccc;
  672. }
  673. .jqx-combobox-content-focus-bootstrap, .jqx-combobox-state-focus-bootstrap, .jqx-fill-state-focus-bootstrap,
  674. .jqx-numberinput-focus-bootstrap {
  675. outline: none;
  676. border-color: rgba(82, 168, 236, 0.8);
  677. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  678. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  679. }
  680. .jqx-datetimeinput-content, .jqx-datetimeinput-container {
  681. overflow: visible !important;
  682. }
  683. input[type="text"].jqx-input-bootstrap, input[type="text"].jqx-widget-content-bootstrap, input[type="textarea"].jqx-widget-content-bootstrap, textarea.jqx-input-bootstrap {
  684. padding-left: 0px !important;
  685. }
  686. input[type="text"].jqx-input-bootstrap:-moz-placeholder, input[type="text"].jqx-widget-content-bootstrap:-moz-placeholder, input[type="textarea"].jqx-widget-content-bootstrap:-moz-placeholder, textarea.jqx-input-bootstrap:-moz-placeholder {
  687. color: #999999;
  688. }
  689. input[type="text"].jqx-input-bootstrap:-webkit-input-placeholder, input[type="text"].jqx-widget-content-bootstrap:-webkit-input-placeholder, input[type="textarea"].jqx-widget-content-bootstrap:-webkit-input-placeholder, textarea.jqx-input-bootstrap:-webkit-input-placeholder {
  690. color: #999999;
  691. }
  692. input[type="text"].jqx-input-bootstrap:-ms-input-placeholder, input[type="text"].jqx-widget-content-bootstrap:-ms-input-placeholder, input[type="textarea"].jqx-widget-content-bootstrap:-ms-input-placeholder, textarea.jqx-input-bootstrap:-ms-input-placeholder {
  693. color: #999999;
  694. }
  695. input[type="password"].jqx-input-bootstrap, input[type="password"].jqx-widget-content-bootstrap, input[type="textarea"].jqx-widget-content-bootstrap, textarea.jqx-input-bootstrap {
  696. padding-left: 0px !important;
  697. }
  698. input[type="password"].jqx-input-bootstrap:-moz-placeholder, input[type="password"].jqx-widget-content-bootstrap:-moz-placeholder, input[type="textarea"].jqx-widget-content-bootstrap:-moz-placeholder, textarea.jqx-input-bootstrap:-moz-placeholder {
  699. color: #999999;
  700. }
  701. input[type="password"].jqx-input-bootstrap:-webkit-input-placeholder, input[type="password"].jqx-widget-content-bootstrap:-webkit-input-placeholder, input[type="textarea"].jqx-widget-content-bootstrap:-webkit-input-placeholder, textarea.jqx-input-bootstrap:-webkit-input-placeholder {
  702. color: #999999;
  703. }
  704. input[type="password"].jqx-input-bootstrap:-ms-input-placeholder, input[type="password"].jqx-widget-content-bootstrap:-ms-input-placeholder, input[type="textarea"].jqx-widget-content-bootstrap:-ms-input-placeholder, textarea.jqx-input-bootstrap:-ms-input-placeholder {
  705. color: #999999;
  706. }
  707. .jqx-dropdownlist-state-normal-bootstrap.jqx-fill-state-focus-bootstrap, .jqx-listbox-bootstrap.jqx-fill-state-focus-bootstrap {
  708. outline: none;
  709. border-color: #b2b2b2;
  710. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  711. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  712. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  713. }
  714. .jqx-dropdownlist-state-normal-bootstrap.jqx-fill-state-focus-bootstrap.jqx-primary {
  715. border-color: #0044cc #0044cc #002a80;
  716. }
  717. .jqx-dropdownlist-state-normal-bootstrap.jqx-fill-state-focus-bootstrap.jqx-warning {
  718. border-color: #f89406 #f89406 #ad6704;
  719. }
  720. .jqx-dropdownlist-state-normal-bootstrap.jqx-fill-state-focus-bootstrap.jqx-danger {
  721. border-color: #bd362f #bd362f #802420;
  722. }
  723. .jqx-dropdownlist-state-normal-bootstrap.jqx-fill-state-focus-bootstrap.jqx-success {
  724. border-color: #51a351 #51a351 #387038;
  725. }
  726. .jqx-dropdownlist-state-normal-bootstrap.jqx-fill-state-focus-bootstrap.jqx-info {
  727. border-color: #2f96b4 #2f96b4 #1f6377;
  728. }
  729. .jqx-dropdownlist-state-normal-bootstrap.jqx-fill-state-focus-bootstrap.jqx-inverse {
  730. border-color: #222222 #222222 #000000;
  731. }
  732. .jqx-popup-bootstrap.jqx-fill-state-focus-bootstrap {
  733. border: 1px solid #ccc;
  734. *border-right-width: 2px;
  735. *border-bottom-width: 2px;
  736. -webkit-border-radius: 4px !important;
  737. -moz-border-radius: 4px !important;
  738. border-radius: 4px !important;
  739. -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  740. -moz-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  741. box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  742. }
  743. .jqx-expander-content-bootstrap.jqx-fill-state-focus-bootstrap {
  744. z-index: 20;
  745. }
  746. .jqx-slider-rangebar-bootstrap {
  747. border-color: #428bca;
  748. background: #428bca;
  749. }
  750. .jqx-slider-button-bootstrap {
  751. -moz-border-radius: 100%;
  752. -webkit-border-radius: 100%;
  753. border-radius: 100%;
  754. padding: 3px;
  755. }
  756. .jqx-grid-cell-bootstrap.jqx-grid-cell-selected-bootstrap > .jqx-grid-group-expand-bootstrap {
  757. background-image: url('images/icon-down-white.png');
  758. background-repeat: no-repeat;
  759. background-position: center;
  760. }
  761. .jqx-grid-cell-bootstrap.jqx-grid-cell-selected-bootstrap > .jqx-grid-group-collapse-bootstrap {
  762. background-image: url('images/icon-right-white.png');
  763. background-repeat: no-repeat;
  764. background-position: center;
  765. }
  766. .jqx-grid-cell-bootstrap.jqx-grid-cell-selected-bootstrap > .jqx-grid-group-collapse-rtl-bootstrap {
  767. background-image: url('images/icon-left-white.png');
  768. background-repeat: no-repeat;
  769. background-position: center;
  770. }
  771. .jqx-grid-cell-bootstrap.jqx-grid-cell-selected-bootstrap > .jqx-grid-group-expand-rtl-bootstrap {
  772. background-image: url('images/icon-down-white.png');
  773. background-repeat: no-repeat;
  774. background-position: center;
  775. }
  776. .jqx-layout-bootstrap
  777. {
  778. background-color: #cccccc;
  779. }
  780. /*applied to the timepicker*/
  781. .jqx-svg-picker-bootstrap:hover {
  782. background-color: rgb(248, 248, 248);
  783. }