jqx.light.css 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298
  1. .jqx-widget-light {
  2. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  3. font-size:14px;
  4. color: #555;
  5. }
  6. .jqx-widget-content-light {
  7. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  8. font-size:14px;
  9. color: #555;
  10. }
  11. .jqx-widget-header-light {
  12. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. font-size:14px;
  14. background: #fff;
  15. color: #555;
  16. }
  17. /*Rounded Corners*/
  18. /*top-left rounded Corners*/
  19. .jqx-rc-tl-light {
  20. -moz-border-radius-topleft: 4px;
  21. -webkit-border-top-left-radius: 4px;
  22. border-top-left-radius: 4px;
  23. }
  24. /*top-right rounded Corners*/
  25. .jqx-rc-tr-light {
  26. -moz-border-radius-topright: 4px;
  27. -webkit-border-top-right-radius: 4px;
  28. border-top-right-radius: 4px;
  29. }
  30. /*bottom-left rounded Corners*/
  31. .jqx-rc-bl-light {
  32. -moz-border-radius-bottomleft: 4px;
  33. -webkit-border-bottom-left-radius: 4px;
  34. border-bottom-left-radius: 4px;
  35. }
  36. /*bottom-right rounded Corners*/
  37. .jqx-rc-br-light {
  38. -moz-border-radius-bottomright: 4px;
  39. -webkit-border-bottom-right-radius: 4px;
  40. border-bottom-right-radius: 4px;
  41. }
  42. /*top rounded Corners*/
  43. .jqx-rc-t-light {
  44. -moz-border-radius-topleft: 4px;
  45. -webkit-border-top-left-radius: 4px;
  46. border-top-left-radius: 4px;
  47. -moz-border-radius-topright: 4px;
  48. -webkit-border-top-right-radius: 4px;
  49. border-top-right-radius: 4px;
  50. }
  51. /*bottom rounded Corners*/
  52. .jqx-rc-b-light {
  53. -moz-border-radius-bottomleft: 4px;
  54. -webkit-border-bottom-left-radius: 4px;
  55. border-bottom-left-radius: 4px;
  56. -moz-border-radius-bottomright: 4px;
  57. -webkit-border-bottom-right-radius: 4px;
  58. border-bottom-right-radius: 4px;
  59. }
  60. /*right rounded Corners*/
  61. .jqx-rc-r-light {
  62. -moz-border-radius-topright: 4px;
  63. -webkit-border-top-right-radius: 4px;
  64. border-top-right-radius: 4px;
  65. -moz-border-radius-bottomright: 4px;
  66. -webkit-border-bottom-right-radius: 4px;
  67. border-bottom-right-radius: 4px;
  68. }
  69. /*left rounded Corners*/
  70. .jqx-rc-l-light {
  71. -moz-border-radius-topleft: 4px;
  72. -webkit-border-top-left-radius: 4px;
  73. border-top-left-radius: 4px;
  74. -moz-border-radius-bottomleft: 4px;
  75. -webkit-border-bottom-left-radius: 4px;
  76. border-bottom-left-radius: 4px;
  77. }
  78. /*all rounded Corners*/
  79. .jqx-rc-all-light {
  80. -moz-border-radius: 4px;
  81. -webkit-border-radius: 4px;
  82. border-radius: 4px;
  83. }
  84. .jqx-widget-light, .jqx-widget-header-light, .jqx-fill-state-normal-light,
  85. .jqx-widget-content-light, .jqx-fill-state-hover-light, .jqx-fill-state-pressed-light {
  86. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  87. font-size:14px;
  88. }
  89. .jqx-widget-content-light {
  90. background-color: #ffffff;
  91. border-color: #dddddd;
  92. }
  93. .jqx-widget-header-light {
  94. color: #555;
  95. background-color:#f8f8f8;
  96. border-color:#dddddd;
  97. *zoom: 1;
  98. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  99. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  100. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  101. }
  102. .jqx-widget-light input::selection, input.jqx-input-widget-light::selection, .jqx-widget-content-light input::selection {
  103. background: #0077BE;
  104. color: #fff;
  105. }
  106. .jqx-button-light {
  107. transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .2s ease-in-out;
  108. }
  109. .jqx-button-light, .jqx-fill-state-normal-light {
  110. color: #555;
  111. background:#fafafa;
  112. border-color: #dddddd;
  113. *zoom: 1;
  114. }
  115. .jqx-fill-state-hover-light {
  116. color: #373a3c;
  117. border-color: #b2b2b2;
  118. border-color: rgba(0, 0, 0, 0.3);
  119. background-color: #f0f0f0;
  120. }
  121. .jqx-fill-state-pressed-light {
  122. color: #fff ;
  123. background-color: #0077BE;
  124. border-color: #0077BE;
  125. *background-color: #fff;
  126. }
  127. .jqx-fill-state-hover-light, .jqx-fill-state-focus-light {
  128. color: #333333;
  129. text-decoration: none;
  130. }
  131. .jqx-fill-state-focus-light, .jqx-item-light.jqx-fill-state-focus {
  132. border-color: #0077BE;
  133. }
  134. .jqx-fill-state-pressed-light.jqx-fill-state-hover-light, .jqx-dropdownlist-state-selected-light{
  135. color: #fff ;
  136. }
  137. .jqx-datetimeinput-light .jqx-action-button-light.jqx-fill-state-hover{
  138. border-color: #ddd;
  139. }
  140. .jqx-datetimeinput-light.jqx-fill-state-focus .jqx-action-button-light{
  141. border-color: #0077BE;
  142. }
  143. .jqx-filter-input-light:focus {
  144. border-color: #0077BE !important;
  145. }
  146. .jqx-button-light {
  147. color: #555;
  148. border-color: #ddd;
  149. *zoom: 1;
  150. }
  151. .jqx-button-light.jqx-fill-state-hover {
  152. *zoom: 1;
  153. -webkit-transition: background-color 100ms linear;
  154. -moz-transition: background-color 100ms linear;
  155. -o-transition: background-color 100ms linear;
  156. -ms-transition: background-color 100ms linear;
  157. transition: background-color 100ms linear;
  158. }
  159. .jqx-button-light.jqx-fill-state-pressed {
  160. color: #fff;
  161. background:#0077BE;
  162. border-color: #0077BE;
  163. *zoom: 1;
  164. -webkit-transition: background-color 100ms linear;
  165. -moz-transition: background-color 100ms linear;
  166. -o-transition: background-color 100ms linear;
  167. -ms-transition: background-color 100ms linear;
  168. transition: background-color 100ms linear;
  169. }
  170. .jqx-dropdownlist-state-normal-light, .jqx-dropdownlist-state-hover-light, .jqx-dropdownlist-state-selected-light,
  171. .jqx-scrollbar-button-state-hover-light, .jqx-scrollbar-button-state-normal-light, .jqx-scrollbar-button-state-pressed-light,
  172. .jqx-scrollbar-thumb-state-normal-horizontal-light, .jqx-scrollbar-thumb-state-hover-horizontal-light, .jqx-scrollbar-thumb-state-pressed-horizontal-light,
  173. .jqx-scrollbar-thumb-state-normal-light, .jqx-scrollbar-thumb-state-pressed-light, .jqx-tree-item-hover-light, .jqx-tree-item-selected-light,
  174. .jqx-tree-item-light, .jqx-menu-item-light, .jqx-menu-item-hover-light, .jqx-menu-item-selected-light, .jqx-menu-item-top-light, .jqx-menu-item-top-hover-light,
  175. .jqx-menu-item-top-selected-light, .jqx-slider-button-light, .jqx-slider-slider-light
  176. {
  177. -webkit-transition: background-color 100ms linear;
  178. -moz-transition: background-color 100ms linear;
  179. -o-transition: background-color 100ms linear;
  180. -ms-transition: background-color 100ms linear;
  181. transition: background-color 100ms linear;
  182. }
  183. .jqx-primary-light
  184. {
  185. color: #0077BE !important;
  186. background: #fff !important;
  187. border-color: #0077BE!important;
  188. text-shadow: none !important;
  189. }
  190. .jqx-primary-light.jqx-dropdownlist-state-normal-light,
  191. .jqx-primary-light.jqx-slider-button-light,
  192. .jqx-primary-light.jqx-slider-slider-light,
  193. .jqx-primary-light.jqx-combobox-arrow-normal-light,
  194. .jqx-primary-light.jqx-combobox-arrow-hover-light,
  195. .jqx-primary-light.jqx-action-button-light,
  196. .jqx-primary-light:hover,
  197. .jqx-primary-light:focus,
  198. .jqx-primary-light:active,
  199. .jqx-primary-light.active,
  200. .jqx-primary-light.disabled,
  201. .jqx-primary-light[disabled] {
  202. color: #fff !important;
  203. background: #0077BE !important;
  204. border-color: #0077BE !important;
  205. text-shadow: none !important;
  206. }
  207. .jqx-fill-state-pressed-light.jqx-primary-light,
  208. .jqx-primary-light:active,
  209. .jqx-primary-light.active {
  210. color: #fff !important;
  211. background-color: #0077BE !important;
  212. border-color: #0077BE!important;
  213. text-shadow: none !important;
  214. }
  215. .jqx-success-light
  216. {
  217. color: #5cb85c !important;
  218. background: #fff !important;
  219. border-color: #5cb85c!important;
  220. text-shadow: none !important;
  221. }
  222. .jqx-success-light.jqx-dropdownlist-state-normal-light,
  223. .jqx-success-light.jqx-slider-button-light,
  224. .jqx-success-light.jqx-slider-slider-light,
  225. .jqx-success-light.jqx-combobox-arrow-normal-light,
  226. .jqx-success-light.jqx-combobox-arrow-hover-light,
  227. .jqx-success-light.jqx-action-button-light,
  228. .jqx-success-light:hover,
  229. .jqx-success-light:focus,
  230. .jqx-success-light:active,
  231. .jqx-success-light.active,
  232. .jqx-success-light.disabled,
  233. .jqx-success-light[disabled] {
  234. color: #fff !important;
  235. background: #5cb85c !important;
  236. border-color: #5cb85c!important;
  237. text-shadow: none !important;
  238. }
  239. .jqx-fill-state-pressed-light.jqx-success-light,
  240. .jqx-success-light:active,
  241. .jqx-success-light.active {
  242. text-shadow: none !important;
  243. color: #fff !important;
  244. background: #5cb85c !important;
  245. border-color: #5cb85c!important;
  246. }
  247. .jqx-inverse-light
  248. {
  249. text-shadow: none !important;
  250. color: #666 !important;
  251. background: #fff !important;
  252. border-color: #cccccc!important;
  253. }
  254. .jqx-inverse-light.jqx-dropdownlist-state-normal-light,
  255. .jqx-inverse-light.jqx-slider-button-light,
  256. .jqx-inverse-light.jqx-slider-slider-light,
  257. .jqx-inverse-light.jqx-combobox-arrow-hover-light,
  258. .jqx-inverse-light.jqx-combobox-arrow-normal-light,
  259. .jqx-inverse-light.jqx-action-button-light,
  260. .jqx-inverse-light:hover,
  261. .jqx-inverse-light:focus,
  262. .jqx-inverse-light:active,
  263. .jqx-inverse-light.active,
  264. .jqx-inverse-light.disabled,
  265. .jqx-inverse-light[disabled] {
  266. text-shadow: none !important;
  267. color: #666 !important;
  268. background: #cccccc !important;
  269. border-color: #cccccc!important;
  270. }
  271. .jqx-fill-state-pressed-light.jqx-inverse-light,
  272. .jqx-inverse-light:active,
  273. .jqx-inverse-light.active {
  274. text-shadow: none !important;
  275. color: #666 !important;
  276. background: #cccccc !important;
  277. border-color: #cccccc!important;
  278. }
  279. .jqx-danger-light
  280. {
  281. text-shadow: none !important;
  282. color: #d9534f !important;
  283. background: #fff !important;
  284. border-color: #d9534f!important;
  285. }
  286. .jqx-danger-light.jqx-dropdownlist-state-normal-light,
  287. .jqx-danger-light.jqx-slider-button-light,
  288. .jqx-danger-light.jqx-slider-slider-light,
  289. .jqx-danger-light.jqx-combobox-arrow-hover-light,
  290. .jqx-danger-light.jqx-combobox-arrow-normal-light,
  291. .jqx-danger-light.jqx-action-button-light,
  292. .jqx-danger-light:hover,
  293. .jqx-danger-light:focus,
  294. .jqx-danger-light:active,
  295. .jqx-danger-light.active,
  296. .jqx-danger-light.disabled,
  297. .jqx-danger-light[disabled] {
  298. text-shadow: none !important;
  299. color: #fff !important;
  300. background: #d9534f !important;
  301. border-color: #d9534f!important;
  302. }
  303. .jqx-fill-state-pressed-light.jqx-danger-light,
  304. .jqx-danger-light:active,
  305. .jqx-danger-light.active {
  306. text-shadow: none !important;
  307. color: #fff !important;
  308. background: #d9534f !important;
  309. border-color: #d9534f!important;
  310. }
  311. .jqx-warning-light
  312. {
  313. text-shadow: none !important;
  314. color: #f0ad4e !important;
  315. background: #fff !important;
  316. border-color: #f0ad4e!important;
  317. }
  318. .jqx-warning-light.jqx-dropdownlist-state-normal-light,
  319. .jqx-warning-light.jqx-slider-button-light,
  320. .jqx-warning-light.jqx-slider-slider-light,
  321. .jqx-warning-light.jqx-combobox-arrow-hover-light,
  322. .jqx-warning-light.jqx-combobox-arrow-normal-light,
  323. .jqx-warning-light.jqx-action-button-light,
  324. .jqx-warning-light:hover,
  325. .jqx-warning-light:focus,
  326. .jqx-warning-light:active,
  327. .jqx-warning-light.active,
  328. .jqx-warning-light.disabled,
  329. .jqx-warning-light[disabled] {
  330. text-shadow: none !important;
  331. color: #fff !important;
  332. background: #f0ad4e !important;
  333. border-color: #f0ad4e!important;
  334. }
  335. .jqx-fill-state-pressed-light.jqx-warning-light,
  336. .jqx-warning-light:active,
  337. .jqx-warning-light.active {
  338. text-shadow: none !important;
  339. color: #fff !important;
  340. background: #f0ad4e !important;
  341. border-color: #f0ad4e!important;
  342. }
  343. .jqx-info-light
  344. {
  345. text-shadow: none !important;
  346. color: #5bc0de !important;
  347. background: #fff !important;
  348. border-color: #5bc0de!important;
  349. }
  350. .jqx-info-light.jqx-dropdownlist-state-normal-light,
  351. .jqx-info-light.jqx-slider-button-light,
  352. .jqx-info-light.jqx-slider-slider-light,
  353. .jqx-info-light.jqx-combobox-arrow-hover-light,
  354. .jqx-info-light.jqx-combobox-arrow-normal-light,
  355. .jqx-info-light.jqx-action-button-light,
  356. .jqx-info-light:hover,
  357. .jqx-info-light:focus,
  358. .jqx-info-light:active,
  359. .jqx-info-light.active,
  360. .jqx-info-light.disabled,
  361. .jqx-info-light[disabled] {
  362. color: #fff !important;
  363. background: #5bc0de !important;
  364. border-color: #5bc0de!important;
  365. text-shadow: none !important;
  366. }
  367. .jqx-fill-state-pressed-light.jqx-info-light,
  368. .jqx-info-light:active,
  369. .jqx-info-light.active {
  370. text-shadow: none !important;
  371. color: #fff !important;
  372. background: #5bc0de !important;
  373. border-color: #5bc0de!important;
  374. }
  375. .jqx-fill-state-pressed-light {
  376. background-image: none;
  377. outline: 0;
  378. }
  379. .jqx-grid-cell-light {
  380. -webkit-box-shadow: none;
  381. -moz-box-shadow: none;
  382. box-shadow: none;
  383. }
  384. .jqx-grid-column-menubutton-light {
  385. background-color: transparent;
  386. border-color: #ddd !important;
  387. }
  388. .jqx-cell-light {
  389. font-size: 14px;
  390. }
  391. .jqx-calendar-light > div {
  392. padding: 10px;
  393. box-sizing: border-box;
  394. }
  395. .jqx-calendar-light .jqx-widget-header-light
  396. {
  397. background-color: #fff;
  398. font-size:12px;
  399. box-shadow:none;
  400. }
  401. .jqx-calendar-row-header-light, .jqx-calendar-top-left-header-light {
  402. background-color: #f0f0f0;
  403. border-color: #f2f2f2;
  404. box-shadow:none;
  405. }
  406. .jqx-calendar-title-content-light {
  407. font-weight:bold;
  408. }
  409. .jqx-calendar-column-header-light {
  410. background-color: #FFF;
  411. border-top-color: #fff;
  412. box-shadow:none;
  413. border-bottom-color: #e9e9e9;
  414. }
  415. .jqx-calendar-light > div {
  416. padding: 10px;
  417. box-sizing: border-box;
  418. }
  419. .jqx-expander-header-light {
  420. padding-top: 10px; padding-bottom: 10px;
  421. }
  422. .jqx-expander-header.jqx-fill-state-hover-light,
  423. .jqx-expander-header.jqx-fill-state-normal-light,
  424. .jqx-expander-header.jqx-fill-state-pressed-light
  425. {
  426. background: #fff;
  427. border-color: #e0e0e0;
  428. color: #333;
  429. }
  430. .jqx-expander-header.jqx-fill-state-hover-light {
  431. background: #f6f6f6;
  432. }
  433. .jqx-expander-header.jqx-fill-state-focus-light {
  434. border-color: #0077BE;
  435. }
  436. .jqx-expander-content.jqx-fill-state-focus-light {
  437. border-color: #e0e0e0;
  438. background: #fdfdfd;
  439. }
  440. .jqx-expander-header-light {
  441. padding:10px;
  442. }
  443. .jqx-ribbon-header-vertical-light, .jqx-widget-header-vertical-light {
  444. background:#f0f0f0;
  445. }
  446. .jqx-scrollbar-state-normal-light {
  447. background-color: #f8f8f8;
  448. border: 1px solid #f8f8f8;
  449. border-left-color: #ddd;
  450. }
  451. .jqx-scrollbar-thumb-state-normal-light, .jqx-scrollbar-thumb-state-normal-horizontal-light {
  452. background: #f6f6f6;
  453. border-color: #b3b3b3;
  454. }
  455. .jqx-scrollbar-thumb-state-hover-light, .jqx-scrollbar-thumb-state-hover-horizontal-light {
  456. background: #e6e6e6;
  457. border-color: #b3b3b3;
  458. box-shadow: none;
  459. -webkit-box-shadow: none;
  460. -moz-box-shadow: none;
  461. }
  462. .jqx-progressbar-light {
  463. background: #f7f7f7 !important;
  464. -webkit-box-shadow: none;
  465. -moz-box-shadow: none;
  466. box-shadow: none;
  467. }
  468. .jqx-progressbar-value-light, .jqx-splitter-collapse-button-horizontal-light {
  469. background: #0077BE;
  470. }
  471. .jqx-splitter-collapse-button-vertical-light, .jqx-progressbar-value-vertical-light {
  472. background: #0077BE;
  473. }
  474. .jqx-scrollbar-thumb-state-pressed-light, .jqx-splitter-splitbar-vertical-light, .jqx-splitter-splitbar-horizontal-light, .jqx-scrollbar-thumb-state-pressed-horizontal-light,
  475. .jqx-scrollbar-button-state-pressed-light
  476. {
  477. background: #d9d9d9;
  478. border-color: #b3b3b3;
  479. box-shadow: none;
  480. -webkit-box-shadow: none;
  481. -moz-box-shadow: none;
  482. }
  483. .jqx-grid-column-sortdescbutton-light, jqx-grid-column-filterbutton-light, .jqx-grid-column-sortascbutton-light {
  484. background-color: transparent;
  485. border-style: solid;
  486. border-width: 0px 0px 0px 0px;
  487. border-color: #ddd;
  488. }
  489. .jqx-menu-vertical-light {
  490. background: #ffffff;
  491. filter: none;
  492. }
  493. .jqx-checkbox-check-checked-light {
  494. background: transparent url(images/material_check_black.png) center center no-repeat;
  495. }
  496. .jqx-checkbox-check-indeterminate-light {
  497. width:14px !important;
  498. height:14px !important;
  499. position:relative;
  500. top: 1px;
  501. left: 1px;
  502. background: #0379BF;
  503. }
  504. .jqx-checkbox-hover {
  505. box-shadow: none;
  506. -webkit-box-shadow: none;
  507. -moz-box-shadow: none;
  508. }
  509. .jqx-combobox-content-light, .jqx-input-light {
  510. }
  511. .jqx-combobox-content-light {
  512. border-color: #ddd;
  513. border-color: rgba(0, 0, 0, 0.25);
  514. }
  515. .jqx-grid-bottomright-light, .jqx-panel-bottomright-light, .jqx-listbox-bottomright-light {
  516. background-color: #f8f8f8;
  517. }
  518. .jqx-window-light, .jqx-tooltip-light {
  519. box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);
  520. }
  521. .jqx-docking-light .jqx-window-light {
  522. box-shadow: none;
  523. }
  524. .jqx-docking-panel-light .jqx-window-light {
  525. box-shadow: none;
  526. }
  527. .jqx-radiobutton-light {
  528. box-shadow: none;
  529. -webkit-box-shadow: none;
  530. -moz-box-shadow: none;
  531. background-repeat: no-repeat;
  532. background: none;
  533. }
  534. .jqx-radiobutton-light-light, .jqx-radiobutton-hover-light {
  535. -moz-border-radius: 100%;
  536. -webkit-border-radius: 100%;
  537. border-radius: 100%;
  538. background-repeat: no-repeat;
  539. }
  540. .jqx-radiobutton-check-checked-light {
  541. filter: none;
  542. background: #0077BE;
  543. background-repeat: no-repeat;
  544. -moz-border-radius: 100%;
  545. -webkit-border-radius: 100%;
  546. border-radius: 100%;
  547. }
  548. .jqx-radiobutton-check-indeterminate-light {
  549. filter: none;
  550. background: #999;
  551. -moz-border-radius: 100%;
  552. -webkit-border-radius: 100%;
  553. border-radius: 100%;
  554. }
  555. .jqx-radiobutton-check-indeterminate-disabled-light {
  556. filter: none;
  557. background: #999;
  558. -moz-border-radius: 100%;
  559. -webkit-border-radius: 100%;
  560. border-radius: 100%;
  561. }
  562. .jqx-slider-track-horizontal-light, .jqx-slider-track-vertical-light {
  563. border-color: #ddd;
  564. background: #f0f0f0;
  565. }
  566. .jqx-slider-button-light {
  567. -moz-border-radius: 100%;
  568. -webkit-border-radius: 100%;
  569. border-radius: 100%;
  570. background-color: transparent;
  571. border-color: transparent !important;
  572. }
  573. .jqx-slider-slider-light {
  574. transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  575. }
  576. .jqx-slider-has-value-light {
  577. -moz-border-radius: 100%;
  578. -webkit-border-radius: 100%;
  579. border-radius: 100%;
  580. background-color: #0077BE;
  581. border-color: #0077BE !important;
  582. }
  583. .jqx-slider-slider-light:active {
  584. transform: scale(1.2);
  585. box-shadow: rgba(0,0,0,0.3) 0 0 10px;
  586. }
  587. .jqx-slider-tooltip-light, .jqx-slider-tooltip-light .jqx-fill-state-normal-light {
  588. border-radius: 4px;
  589. display: flex;
  590. align-items: center;
  591. justify-content: center;
  592. background: #0077BE;
  593. border-color: #0077BE;
  594. color: #fff;
  595. font-size:11px;
  596. }
  597. .jqx-slider-tooltip-light .jqx-tooltip-arrow-t-b,
  598. .jqx-slider-tooltip-light .jqx-tooltip-arrow-l-r {
  599. background: #0077BE;
  600. border-color: #0077BE;
  601. }
  602. .jqx-listitem-state-normal-light,
  603. .jqx-listitem-state-hover-light,
  604. .jqx-listitem-state-selected-light
  605. {
  606. padding-top:5px;
  607. padding-bottom:5px;
  608. margin:0px;
  609. border-radius: 0px;
  610. }
  611. .jqx-listitem-state-normal-light.checkboxes,
  612. .jqx-listitem-state-hover-light.checkboxes,
  613. .jqx-listitem-state-selected-light.checkboxes {
  614. border-radius: 4px;
  615. }
  616. .jqx-listitem-element-light {
  617. }
  618. /*applied to a list item when the item is selected.*/
  619. .jqx-listitem-state-hover-light, .jqx-menu-item-hover-light, .jqx-tree-item-hover-light, .jqx-calendar-cell-hover-light, .jqx-grid-cell-hover-light,
  620. .jqx-menu-vertical-light .jqx-menu-item-top-hover-light, .jqx-input-popup-light .jqx-fill-state-hover-light,
  621. .jqx-input-popup-light .jqx-fill-state-pressed-light {
  622. color: #0077BE !important;
  623. border-color: #e1f5fe;
  624. text-decoration: none;
  625. background-color: #e1f5fe;
  626. background-repeat: repeat-x;
  627. outline: 0;
  628. background: #e1f5fe; /* Old browsers */
  629. -webkit-box-shadow: none;
  630. -moz-box-shadow: none;
  631. box-shadow: none;
  632. background-position: 0 0;
  633. }
  634. .jqx-scheduler-cell-hover-light {
  635. border-color: #e3f5fb !important;
  636. background: #e3f5fb !important;
  637. }
  638. .jqx-grid-table-dark {
  639. font-size: 14px;
  640. }
  641. .jqx-listitem-state-selected-light, .jqx-menu-item-selected-light, .jqx-tree-item-selected-light, .jqx-calendar-cell-selected-light, .jqx-grid-cell-selected-light,
  642. .jqx-menu-vertical-light .jqx-menu-item-top-selected-light, .jqx-grid-selectionarea-light, .jqx-input-button-header-light, .jqx-input-button-innerHeader-light {
  643. color: #ffffff !important;
  644. background-color: #0077BE;
  645. *background-color: #0077BE;
  646. background-repeat: repeat-x;
  647. border-color: #0077BE !important;
  648. background: #0077BE; /* Old browsers */
  649. -webkit-box-shadow: none;
  650. -moz-box-shadow: none;
  651. box-shadow: none;
  652. }
  653. .jqx-scheduler-cell-selected-light {
  654. border-color: #0077BE !important;
  655. background: #0077BE !important;
  656. }
  657. .jqx-grid-cell-light .jqx-button-light, .jqx-grid-cell-light .jqx-button-light.jqx-fill-state-hover-light, .jqx-grid-cell-light .jqx-button-light.jqx-fill-state-pressed-light {
  658. -webkit-box-shadow: none;
  659. -moz-box-shadow: none;
  660. box-shadow: none;
  661. -webkit-transition: none;
  662. -moz-transition: none;
  663. -o-transition: none;
  664. transition: none;
  665. }
  666. .jqx-popup-light {
  667. border: 1px solid #ddd;
  668. *border-right-width: 2px;
  669. *border-bottom-width: 2px;
  670. -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  671. -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  672. }
  673. .jqx-grid-column-sortascbutton-light, .jqx-expander-arrow-bottom-light, .jqx-window-collapse-button-light, .jqx-menu-item-arrow-up-light, .jqx-menu-item-arrow-up-selected-light, .jqx-menu-item-arrow-top-up-light, .jqx-icon-arrow-up-light, .jqx-icon-arrow-up-hover-light, .jqx-icon-arrow-up-selected-light {
  674. background-image: url('images/metro-icon-up.png');
  675. background-repeat: no-repeat;
  676. background-position: center;
  677. }
  678. .jqx-widget-light .jqx-grid-group-expand-light, .jqx-grid-group-expand-light, .jqx-grid-column-menubutton-light, .jqx-grid-column-sortdescbutton-light, .jqx-expander-arrow-top-light, .jqx-window-collapse-button-collapsed-light, .jqx-menu-item-arrow-down-light, .jqx-menu-item-arrow-down-selected-light, .jqx-menu-item-arrow-down-light, .jqx-icon-arrow-down-light, .jqx-icon-arrow-down-hover-light, .jqx-icon-arrow-down-selected-light {
  679. background-image: url('images/metro-icon-down.png');
  680. background-repeat: no-repeat;
  681. background-position: center;
  682. }
  683. .jqx-tabs-arrow-left-light, .jqx-menu-item-arrow-left-selected-light, .jqx-menu-item-arrow-top-left, .jqx-icon-arrow-left-light, .jqx-icon-arrow-down-left-light, .jqx-icon-arrow-left-selected-light {
  684. background-image: url('images/metro-icon-left.png');
  685. background-repeat: no-repeat;
  686. background-position: center;
  687. }
  688. .jqx-widget-light .jqx-grid-group-collapse-light, .jqx-grid-group-collapse-light, .jqx-tabs-arrow-right-light, .jqx-menu-item-arrow-right-selected-light, .jqx-menu-item-arrow-top-right-light, .jqx-icon-arrow-right-light, .jqx-icon-arrow-right-hover-light, .jqx-icon-arrow-right-selected-light {
  689. background-image: url('images/metro-icon-right.png');
  690. background-repeat: no-repeat;
  691. background-position: center;
  692. }
  693. .jqx-tree-item-arrow-collapse-rtl-light, .jqx-tree-item-arrow-collapse-hover-rtl-light {
  694. background-image: url(images/metro-icon-left.png);
  695. }
  696. .jqx-menu-item-arrow-left-selected-light {
  697. background-image: url('images/metro-icon-left-white.png');
  698. background-repeat: no-repeat;
  699. background-position: center;
  700. }
  701. .jqx-menu-item-arrow-right-selected-light {
  702. background-image: url('images/metro-icon-right-white.png');
  703. background-repeat: no-repeat;
  704. background-position: center;
  705. }
  706. .jqx-input-button-content-light {
  707. font-size: 10px;
  708. }
  709. .jqx-widget .jqx-grid-cell, .jqx-widget .jqx-grid-column-header, .jqx-widget .jqx-grid-group-cell {border-color: #ddd;}
  710. .jqx-grid-groups-row-light > span {
  711. padding-left: 4px;
  712. }
  713. .jqx-combobox-content-light, .jqx-input-light {
  714. border-color: #ddd;
  715. color: #555555;
  716. background-color: #ffffff;
  717. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  718. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  719. }
  720. .jqx-combobox-content-light, .jqx-combobox-light, .jqx-combobox-state-normal-light {
  721. border-color: #ddd;
  722. }
  723. .jqx-combobox-content-focus-light, .jqx-combobox-state-focus-light, .jqx-fill-state-focus-light,
  724. .jqx-numberinput-focus-light {
  725. outline: none;
  726. border-color: #959595;
  727. }
  728. input[type="text"].jqx-input-light, input[type="password"].jqx-input-light, input[type="text"].jqx-widget-content-light, input[type="textarea"].jqx-widget-content-light, textarea.jqx-input-light {
  729. font-size: 14px;
  730. padding-left:3px;
  731. padding-right: 3px;
  732. resize: none;
  733. }
  734. input[type="text"].jqx-input-light:-moz-placeholder, input[type="text"].jqx-widget-content-light:-moz-placeholder, input[type="textarea"].jqx-widget-content-light:-moz-placeholder, textarea.jqx-input-light:-moz-placeholder {
  735. color: #999999;
  736. }
  737. input[type="text"].jqx-input-light:-webkit-input-placeholder, input[type="text"].jqx-widget-content-light:-webkit-input-placeholder, input[type="textarea"].jqx-widget-content-light:-webkit-input-placeholder, textarea.jqx-input-light:-webkit-input-placeholder {
  738. color: #999999;
  739. }
  740. input[type="text"].jqx-input-light:-ms-input-placeholder, input[type="text"].jqx-widget-content-light:-ms-input-placeholder, input[type="textarea"].jqx-widget-content-light:-ms-input-placeholder, textarea.jqx-input-light:-ms-input-placeholder {
  741. color: #999999;
  742. }
  743. .jqx-combobox-content-light, .jqx-input-light {
  744. border-color: #ddd;
  745. color: #555555;
  746. background-color: #ffffff;
  747. }
  748. .jqx-combobox-content-light, .jqx-combobox-light, .jqx-combobox-state-normal-light {
  749. border-color: #ddd;
  750. }
  751. .jqx-combobox-content-focus-light, .jqx-combobox-state-focus-light, .jqx-fill-state-focus-light,
  752. .jqx-numberinput-focus-light {
  753. outline: none;
  754. border-color: #0077BE;
  755. }
  756. .jqx-popup-light.jqx-fill-state-focus-light
  757. {
  758. outline: none;
  759. border-color: #ddd !important;
  760. }
  761. .jqx-datetimeinput-content, .jqx-datetimeinput-container {
  762. overflow: visible !important;
  763. }
  764. .jqx-slider-rangebar-light {
  765. border-color: #0077BE;
  766. background: #0077BE;
  767. }
  768. .jqx-switchbutton-light{
  769. border-radius: 15px;
  770. }
  771. .jqx-switchbutton-light .jqx-fill-state-normal-light,
  772. .jqx-switchbutton-light .jqx-fill-state-hover-light,
  773. .jqx-switchbutton-light .jqx-fill-state-pressed-light {
  774. border-color: #0077BE;
  775. background: #0077BE;
  776. }
  777. .jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-expand-light {
  778. background-image: url('images/metro-icon-down-white.png');
  779. background-repeat: no-repeat;
  780. background-position: center;
  781. }
  782. .jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-collapse-light{
  783. background-image: url('images/metro-icon-right-white.png');
  784. background-repeat: no-repeat;
  785. background-position: center;
  786. }
  787. .jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-collapse-rtl-light{
  788. background-image: url('images/metro-icon-left-white.png');
  789. background-repeat: no-repeat;
  790. background-position: center;
  791. }
  792. .jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-expand-rtl-light {
  793. background-image: url('images/metro-icon-down-white.png');
  794. background-repeat: no-repeat;
  795. background-position: center;
  796. }
  797. .jqx-tabs-title-selected-top-light, .jqx-tabs-selection-tracker-top-light {
  798. border-color: transparent;
  799. filter: none;
  800. background: #fff;
  801. color: #333;
  802. -webkit-box-shadow: none;
  803. -moz-box-shadow: none;
  804. box-shadow: none;
  805. }
  806. .jqx-tabs-arrow-background-light{
  807. background: #fff;
  808. border:none;
  809. box-shadow:none;
  810. }
  811. .jqx-tabs-title-light, .jqx-ribbon-item-light {
  812. color: #333;
  813. }
  814. .jqx-tabs-title-selected-bottom-light,
  815. .jqx-tabs-title-selected-top-light
  816. {
  817. padding-top:5px;
  818. padding-bottom:5px;
  819. color: #1997C6;
  820. font-weight:500;
  821. }
  822. .jqx-tabs-title.jqx-fill-state-hover-light {
  823. border-color: transparent;
  824. }
  825. .jqx-ribbon-item-light {
  826. cursor: pointer;
  827. }
  828. .jqx-ribbon-item-selected-light {
  829. color: #1997C6;
  830. font-weight:500;
  831. border-color: transparent;
  832. }
  833. .jqx-ribbon-item-hover-light {
  834. background: transparent;
  835. border-color: transparent;
  836. }
  837. .jqx-ribbon-header-top-light {
  838. border-color: transparent;
  839. border-bottom-color: #E0E0E0;
  840. }
  841. .jqx-ribbon-header-bottom-light {
  842. border-color: transparent;
  843. border-top-color: #E0E0E0;
  844. }
  845. .jqx-ribbon-header-right-light {
  846. border-color: transparent;
  847. border-left-color:#E0E0E0;
  848. }
  849. .jqx-ribbon-header-left-light {
  850. border-color: transparent;
  851. border-right-color:#E0E0E0;
  852. }
  853. .jqx-tabs-title-selected-bottom-light, .jqx-tabs-selection-tracker-bottom-light {
  854. border-color: transparent;
  855. border-top: 1px solid #fff;
  856. filter: none;
  857. background: #fff;
  858. -webkit-box-shadow: none;
  859. -moz-box-shadow: none;
  860. box-shadow: none;
  861. }
  862. .jqx-tabs-light, .jqx-ribbon-light {
  863. border-color: transparent;
  864. }
  865. .jqx-tabs-header-light, .jqx-ribbon-header-light {
  866. background: transparent;
  867. }
  868. .jqx-tabs-position-bottom .jqx-tabs-header-light {
  869. border-color: transparent;
  870. }
  871. .jqx-layout-light .jqx-tabs-header-light, .jqx-layout-light .jqx-ribbon-header-light {
  872. background: #fff;
  873. border-color: #E0E0E0;
  874. }
  875. .jqx-tabs-title-bottom {
  876. border-color: transparent;
  877. }
  878. .jqx-tabs-title-hover-top-light, .jqx-tabs-title-hover-bottom-light, .jqx-tabs-header-light {
  879. -webkit-box-shadow: none !important;
  880. -moz-box-shadow: none !important;
  881. box-shadow: none !important;
  882. background: transparent;
  883. }
  884. .jqx-tabs-content-light {
  885. box-sizing: border-box;
  886. border: 1px solid #E0E0E0;
  887. border-top-color: transparent;
  888. padding:5px;
  889. }
  890. .jqx-tabs-bar-light {
  891. position: absolute;
  892. bottom: 0;
  893. background: #1997C6;
  894. height: 2px;
  895. z-index:20;
  896. transition: .5s cubic-bezier(.35,0,.25,1);
  897. }
  898. .jqx-tabs-bar-light.vertical {
  899. width: 2px;
  900. }
  901. .jqx-tabs-position-bottom .jqx-tabs-bar-light {
  902. top: 0;
  903. }
  904. .jqx-window-content-light {
  905. box-sizing:border-box;
  906. }
  907. .jqx-layout-light
  908. {
  909. background-color: #cccccc;
  910. }
  911. .jqx-kanban-column-header-collapsed-light {
  912. background: -moz-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* ff3.6+ */
  913. background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(248,248,248,1)), color-stop(100%, rgba(234,234,234,1))); /* safari4+,chrome */
  914. background: -webkit-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* safari5.1+,chrome10+ */
  915. background: -o-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* opera 11.10+ */
  916. background: -ms-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* ie10+ */
  917. background: linear-gradient(90deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* w3c */
  918. }
  919. .jqx-calendar-light td {
  920. font-size: 12px;
  921. }
  922. .jqx-grid-column-menubutton-light {
  923. background-image: url('images/metro-icon-down.png');
  924. }
  925. .jqx-grid-pager-top-light .jqx-grid-pager-number-light,
  926. .jqx-grid-pager-light .jqx-grid-pager-number-light {
  927. background-color: transparent;
  928. border-color: transparent;
  929. color: rgba(0,0,0,.54) !important;
  930. font-size:12px;
  931. }
  932. .jqx-grid-pager-top-light .jqx-grid-pager-number-light:hover,
  933. .jqx-grid-pager-light .jqx-grid-pager-number-light:hover {
  934. font-size:12px;
  935. }
  936. .jqx-grid-pager-top-light .jqx-grid-pager-number-light.jqx-fill-state-pressed-light ,
  937. .jqx-grid-pager-light .jqx-grid-pager-number-light.jqx-fill-state-pressed-light {
  938. color: #0077BE !important;
  939. font-weight: bold !important;
  940. }
  941. .jqx-menu-item-arrow-up-selected-light, .jqx-icon-arrow-up-selected-light{background-image:url('images/metro-icon-up-white.png');background-repeat:no-repeat;background-position:center;}
  942. .jqx-menu-item-arrow-down-selected-light, .jqx-icon-arrow-down-selected-light{background-image:url('images/metro-icon-down-white.png');background-repeat:no-repeat;background-position:center;}
  943. .jqx-menu-item-arrow-left-selected-light, .jqx-icon-arrow-left-selected-light{background-image:url('images/metro-icon-left-white.png');background-repeat:no-repeat;background-position:center;}
  944. .jqx-menu-item-arrow-right-selected-light, .jqx-icon-arrow-right-selected-light{background-image:url('images/metro-icon-right-white.png');background-repeat:no-repeat;background-position:center;}
  945. .jqx-tabs-close-button-light{background-image:url(images/close.png); background-repeat:no-repeat; background-position:center;}
  946. .jqx-tabs-close-button-selected-light{background-image:url(images/close.png); background-repeat:no-repeat; background-position:center;}
  947. .jqx-tabs-close-button-hover-light{background-image:url(images/close.png); background-repeat:no-repeat; background-position:center;}
  948. .jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-up-selected-light{background-image:url('images/metro-icon-up.png');background-repeat:no-repeat;background-position:center;}
  949. .jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-down-selected-light{background-image:url('images/metro-icon-down.png');background-repeat:no-repeat;background-position:center;}
  950. .jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-left-selected-light{background-image:url('images/metro-icon-left.png');background-repeat:no-repeat;background-position:center;}
  951. .jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-right-selected-light{background-image:url('images/metro-icon-right.png');background-repeat:no-repeat;background-position:center;}
  952. .jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-expand-light {
  953. background-image: url('images/metro-icon-down-white.png');
  954. background-repeat: no-repeat;
  955. background-position: center;
  956. }
  957. .jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-collapse-light{
  958. background-image: url('images/metro-icon-right-white.png');
  959. background-repeat: no-repeat;
  960. background-position: center;
  961. }
  962. .jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-collapse-rtl-light {
  963. background-image: url('images/metro-icon-left-white.png');
  964. background-repeat: no-repeat;
  965. background-position: center;
  966. }
  967. .jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-expand-rtl-light{
  968. background-image: url('images/metro-icon-down-white.png');
  969. background-repeat: no-repeat;
  970. background-position: center;
  971. }
  972. .jqx-grid-group-collapse-light {
  973. background-image: url(images/metro-icon-right.png);
  974. background-position: 50% 50%;
  975. background-repeat: no-repeat;
  976. }
  977. .jqx-grid-group-collapse-rtl-light
  978. {
  979. padding-right: 0px;
  980. background-image: url(images/metro-icon-left.png);
  981. background-position: 50% 50%;
  982. background-repeat: no-repeat;
  983. }
  984. .jqx-grid-group-expand-light, .jqx-grid-group-expand-rtl-light
  985. {
  986. padding-right: 0px;
  987. background-image: url(images/metro-icon-down.png);
  988. background-position: 50% 50%;
  989. background-repeat: no-repeat;
  990. }
  991. .jqx-icon-arrow-first-light
  992. {
  993. background-image: url('images/metro-icon-first.png');
  994. background-repeat: no-repeat;
  995. background-position: center;
  996. }
  997. .jqx-icon-arrow-last-light
  998. {
  999. background-image: url('images/metro-icon-last.png');
  1000. background-repeat: no-repeat;
  1001. background-position: center;
  1002. }
  1003. .jqx-icon-arrow-first-hover-light
  1004. {
  1005. background-image: url('images/metro-icon-first.png');
  1006. background-repeat: no-repeat;
  1007. background-position: center;
  1008. }
  1009. .jqx-icon-arrow-last-hover-light
  1010. {
  1011. background-image: url('images/metro-icon-last.png');
  1012. background-repeat: no-repeat;
  1013. background-position: center;
  1014. }
  1015. .jqx-icon-arrow-first-selected-light
  1016. {
  1017. background-image: url('images/metro-icon-first-white.png');
  1018. background-repeat: no-repeat;
  1019. background-position: center;
  1020. }
  1021. .jqx-icon-arrow-last-selected-light
  1022. {
  1023. background-image: url('images/metro-icon-last-white.png');
  1024. background-repeat: no-repeat;
  1025. background-position: center;
  1026. }
  1027. .jqx-icon-calendar-pressed-light {
  1028. background-image: url('images/icon-calendar-white.png');
  1029. }
  1030. .jqx-icon-time-pressed-light {
  1031. background-image: url('images/icon-time-white.png');
  1032. }
  1033. .jqx-icon-time-light{
  1034. margin-left:1px;
  1035. }
  1036. .sorticon, .filtericon {
  1037. box-shadow:none;
  1038. }
  1039. .sorticon.descending .jqx-grid-column-sorticon-light {
  1040. margin-top:-1px;
  1041. }
  1042. .sorticon.ascending .jqx-grid-column-sorticon-light {
  1043. margin-top:1px;
  1044. }
  1045. .jqx-dropdownlist-state-normal-light .jqx-icon-arrow-down-light,
  1046. .jqx-combobox-state-normal-light .jqx-icon-arrow-down-light,
  1047. .sorticon.descending .jqx-grid-column-sorticon-light,
  1048. .jqx-tree-item-arrow-expand-light,
  1049. .jqx-expander-header-light .jqx-icon-arrow-down
  1050. {
  1051. transform: rotate(0deg);
  1052. transition: transform 0.2s ease-out;
  1053. }
  1054. .jqx-expander-header-light .jqx-icon-arrow-up {
  1055. transform: rotate(180deg);
  1056. transition: transform 0.2s ease-out;
  1057. background-image: url('images/metro-icon-down.png');
  1058. }
  1059. .jqx-tree-item-arrow-collapse-light
  1060. {
  1061. transform: rotate(-90deg);
  1062. background-image: url('images/metro-icon-down.png');
  1063. background-repeat: no-repeat;
  1064. background-position: center;
  1065. transition: transform 0.2s ease-out;
  1066. }
  1067. .jqx-dropdownlist-state-selected-light .jqx-icon-arrow-down-light,
  1068. .jqx-combobox-state-selected-light .jqx-icon-arrow-down-light,
  1069. .sorticon.ascending .jqx-grid-column-sorticon-light
  1070. {
  1071. transform: rotate(180deg);
  1072. transition: transform 0.2s ease-out;
  1073. }
  1074. .jqx-combobox-state-selected-light .jqx-icon-arrow-down-light{
  1075. left:0px;
  1076. }
  1077. .jqx-primary .jqx-icon-arrow-down-light, .jqx-warning .jqx-icon-arrow-down-light, .jqx-danger .jqx-icon-arrow-down-light, .jqx-success .jqx-icon-arrow-down-light, .jqx-info .jqx-icon-arrow-down-light {
  1078. background-image: url('images/metro-icon-down-white.png');
  1079. }
  1080. .jqx-primary .jqx-icon-arrow-down-selected-light, .jqx-warning .jqx-icon-arrow-down-selected-light, .jqx-danger .jqx-icon-arrow-down-selected-light, .jqx-success .jqx-icon-arrow-down-selected-light, .jqx-info .jqx-icon-arrow-down-selected-light {
  1081. background-image: url('images/metro-icon-down-white.png');
  1082. }
  1083. .jqx-primary .jqx-icon-arrow-down-hover-light, .jqx-warning .jqx-icon-arrow-down-hover-light, .jqx-danger .jqx-icon-arrow-down-hover-light, .jqx-success .jqx-icon-arrow-down-hover-light, .jqx-info .jqx-icon-arrow-down-hover-light {
  1084. background-image: url('images/metro-icon-down-white.png');
  1085. }
  1086. .jqx-primary .jqx-icon-arrow-up-light, .jqx-warning .jqx-icon-arrow-up-light, .jqx-danger .jqx-icon-arrow-up-light, .jqx-success .jqx-icon-arrow-up-light, .jqx-info .jqx-icon-arrow-up-light {
  1087. background-image: url('images/metro-icon-up-white.png');
  1088. }
  1089. .jqx-primary .jqx-icon-arrow-up-selected-light, .jqx-warning .jqx-icon-arrow-up-selected-light, .jqx-danger .jqx-icon-arrow-up-selected-light, .jqx-success .jqx-icon-arrow-up-selected-light, .jqx-info .jqx-icon-arrow-up-selected-light {
  1090. background-image: url('images/metro-icon-up-white.png');
  1091. }
  1092. .jqx-primary .jqx-icon-arrow-up-hover-light, .jqx-warning .jqx-icon-arrow-up-hover-light, .jqx-danger .jqx-icon-arrow-up-hover-light, .jqx-success .jqx-icon-arrow-up-hover-light, .jqx-info .jqx-icon-arrow-up-hover-light {
  1093. background-image: url('images/metro-icon-up-white.png');
  1094. }
  1095. .jqx-primary .jqx-icon-arrow-left-light, .jqx-warning .jqx-icon-arrow-left-light, .jqx-danger .jqx-icon-arrow-left-light, .jqx-success .jqx-icon-arrow-left-light, .jqx-info .jqx-icon-arrow-left-light {
  1096. background-image: url('images/metro-icon-left-white.png');
  1097. }
  1098. .jqx-primary .jqx-icon-arrow-left-selected-light, .jqx-warning .jqx-icon-arrow-left-selected-light, .jqx-danger .jqx-icon-arrow-left-selected-light, .jqx-success .jqx-icon-arrow-left-selected-light, .jqx-info .jqx-icon-arrow-left-selected-light {
  1099. background-image: url('images/metro-icon-left-white.png');
  1100. }
  1101. .jqx-primary .jqx-icon-arrow-left-hover-light, .jqx-warning .jqx-icon-arrow-left-hover-light, .jqx-danger .jqx-icon-arrow-left-hover-light, .jqx-success .jqx-icon-arrow-left-hover-light, .jqx-info .jqx-icon-arrow-left-hover-light {
  1102. background-image: url('images/metro-icon-left-white.png');
  1103. }
  1104. .jqx-primary .jqx-icon-arrow-right-light, .jqx-warning .jqx-icon-arrow-right-light, .jqx-danger .jqx-icon-arrow-right-light, .jqx-success .jqx-icon-arrow-right-light, .jqx-info .jqx-icon-arrow-right-light {
  1105. background-image: url('images/metro-icon-right-white.png');
  1106. }
  1107. .jqx-primary .jqx-icon-arrow-right-selected-light, .jqx-warning .jqx-icon-arrow-right-selected-light, .jqx-danger .jqx-icon-arrow-right-selected-light, .jqx-success .jqx-icon-arrow-right-selected-light, .jqx-info .jqx-icon-arrow-right-selected-light {
  1108. background-image: url('images/metro-icon-right-white.png');
  1109. }
  1110. .jqx-primary .jqx-icon-arrow-right-hover-light, .jqx-warning .jqx-icon-arrow-right-hover-light, .jqx-danger .jqx-icon-arrow-right-hover-light, .jqx-success .jqx-icon-arrow-right-hover-light, .jqx-info .jqx-icon-arrow-right-hover-light {
  1111. background-image: url('images/metro-icon-right-white.png');
  1112. }
  1113. .jqx-slider-tooltip-light.jqx-primary-slider, .jqx-slider-tooltip-light.jqx-primary-slider .jqx-fill-state-normal-light {
  1114. border-color: #1ca8dd;
  1115. background: #1ca8dd;
  1116. }
  1117. .jqx-slider-tooltip-light.jqx-success-slider, .jqx-slider-tooltip-light.jqx-success-slider .jqx-fill-state-normal-light {
  1118. border-color: #5cb85c;
  1119. background: #5cb85c;
  1120. }
  1121. .jqx-slider-tooltip-light.jqx-inverse-slider, .jqx-slider-tooltip-light.jqx-inverse-slider .jqx-fill-state-normal-light {
  1122. border-color: #666;
  1123. background: #666;
  1124. }
  1125. .jqx-slider-tooltip-light.jqx-danger-slider, .jqx-slider-tooltip-light.jqx-danger-slider .jqx-fill-state-normal-light {
  1126. border-color: #d9534f;
  1127. background: #d9534f;
  1128. }
  1129. .jqx-slider-tooltip-light.jqx-warning-slider, .jqx-slider-tooltip-light.jqx-warning-slider .jqx-fill-state-normal-light {
  1130. border-color: #f0ad4e;
  1131. background: #f0ad4e;
  1132. }
  1133. .jqx-slider-tooltip-light.jqx-info-slider, .jqx-slider-tooltip-light.jqx-info-slider .jqx-fill-state-normal-light {
  1134. border-color: #5bc0de;
  1135. background: #5bc0de;
  1136. }
  1137. .jqx-fill-state-pressed-light .jqx-icon-delete-light
  1138. {
  1139. background-image: url('images/icon-delete-white.png');
  1140. }
  1141. .jqx-fill-state-pressed-light .jqx-icon-edit-light
  1142. {
  1143. background-image: url('images/icon-edit-white.png');
  1144. }
  1145. .jqx-fill-state-pressed-light .jqx-icon-save-light
  1146. {
  1147. background-image: url('images/icon-save-white.png');
  1148. }
  1149. .jqx-fill-state-pressed-light .jqx-icon-cancel-light
  1150. {
  1151. background-image: url('images/icon-cancel-white.png');
  1152. }
  1153. .jqx-fill-state-pressed-light .jqx-icon-search-light
  1154. {
  1155. background-image: url(images/search_white.png);
  1156. }
  1157. .jqx-fill-state-pressed-light .jqx-icon-plus-light
  1158. {
  1159. background-image: url(images/plus_white.png);
  1160. }
  1161. .jqx-fill-state-pressed-light .jqx-menu-minimized-button-light {
  1162. background-image: url('images/icon-menu-minimized-white.png');
  1163. }
  1164. .jqx-fill-state-pressed-light .jqx-editor-toolbar-icon-light {
  1165. background: url('images/html_editor_white.png') no-repeat;
  1166. }
  1167. .jqx-editor-toolbar-button-light{
  1168. border-color: #ddd;
  1169. }
  1170. /*applied to the timepicker*/
  1171. .jqx-needle-central-circle-light {
  1172. fill: rgb(0, 119, 190);
  1173. }
  1174. .jqx-needle-light {
  1175. fill: rgb(0, 119, 190);
  1176. }
  1177. .jqx-time-picker .jqx-header .jqx-selected-light:focus {
  1178. outline: 2px solid rgba(0, 119, 190, 0.5);
  1179. box-shadow: 0px 0px 4px 2px rgba(0, 119, 190, 0.125);
  1180. }
  1181. .jqx-svg-picker-light:focus {
  1182. border: 1px solid rgb(0, 119, 190) !important;
  1183. }