jqx.material-green.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836
  1. /*Rounded Corners*/
  2. /*top-left rounded Corners*/
  3. .jqx-rc-tl-material-green {
  4. -moz-border-radius-topleft: 2px;
  5. -webkit-border-top-left-radius: 2px;
  6. border-top-left-radius: 2px;
  7. }
  8. /*top-right rounded Corners*/
  9. .jqx-rc-tr-material-green {
  10. -moz-border-radius-topright: 2px;
  11. -webkit-border-top-right-radius: 2px;
  12. border-top-right-radius: 2px;
  13. }
  14. /*bottom-left rounded Corners*/
  15. .jqx-rc-bl-material-green {
  16. -moz-border-radius-bottomleft: 2px;
  17. -webkit-border-bottom-left-radius: 2px;
  18. border-bottom-left-radius: 2px;
  19. }
  20. /*bottom-right rounded Corners*/
  21. .jqx-rc-br-material-green {
  22. -moz-border-radius-bottomright: 2px;
  23. -webkit-border-bottom-right-radius: 2px;
  24. border-bottom-right-radius: 2px;
  25. }
  26. /*top rounded Corners*/
  27. .jqx-rc-t-material-green {
  28. -moz-border-radius-topleft: 2px;
  29. -webkit-border-top-left-radius: 2px;
  30. border-top-left-radius: 2px;
  31. -moz-border-radius-topright: 2px;
  32. -webkit-border-top-right-radius: 2px;
  33. border-top-right-radius: 2px;
  34. }
  35. /*bottom rounded Corners*/
  36. .jqx-rc-b-material-green {
  37. -moz-border-radius-bottomleft: 2px;
  38. -webkit-border-bottom-left-radius: 2px;
  39. border-bottom-left-radius: 2px;
  40. -moz-border-radius-bottomright: 2px;
  41. -webkit-border-bottom-right-radius: 2px;
  42. border-bottom-right-radius: 2px;
  43. }
  44. /*right rounded Corners*/
  45. .jqx-rc-r-material-green {
  46. -moz-border-radius-topright: 2px;
  47. -webkit-border-top-right-radius: 2px;
  48. border-top-right-radius: 2px;
  49. -moz-border-radius-bottomright: 2px;
  50. -webkit-border-bottom-right-radius: 2px;
  51. border-bottom-right-radius: 2px;
  52. }
  53. /*left rounded Corners*/
  54. .jqx-rc-l-material-green {
  55. -moz-border-radius-topleft: 2px;
  56. -webkit-border-top-left-radius: 2px;
  57. border-top-left-radius: 2px;
  58. -moz-border-radius-bottomleft: 2px;
  59. -webkit-border-bottom-left-radius: 2px;
  60. border-bottom-left-radius: 2px;
  61. }
  62. /*all rounded Corners*/
  63. .jqx-rc-all-material-green {
  64. -moz-border-radius: 2px;
  65. -webkit-border-radius: 2px;
  66. border-radius: 2px;
  67. }
  68. .jqx-widget-material-green, .jqx-widget-header-material-green, .jqx-fill-state-normal-material-green,
  69. .jqx-widget-content-material-green, .jqx-fill-state-hover-material-green, .jqx-fill-state-pressed-material-green {
  70. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  71. font-size: 14px;
  72. }
  73. .jqx-widget-material-green {
  74. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  75. font-size: 14px;
  76. color: #555;
  77. }
  78. .jqx-widget-content-material-green {
  79. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  80. font-size: 14px;
  81. color: #555;
  82. background-color: #ffffff;
  83. border-color: #E0E0E0;
  84. }
  85. .jqx-widget-header-material-green {
  86. background-color: #fff;
  87. border-color: #E0E0E0;
  88. color: #757575;
  89. font-weight: 500;
  90. *zoom: 1;
  91. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  92. background: #fff;
  93. color: #757575;
  94. font-size: 14px;
  95. }
  96. .jqx-fill-state-normal-material-green {
  97. border-color: #558B2F;
  98. *zoom: 1;
  99. background: #fafafa;
  100. }
  101. .jqx-widget-material-green input::selection, input.jqx-input-widget-material-green::selection, .jqx-widget-content-material-green input::selection {
  102. background: #558B2F;
  103. color: #fff;
  104. }
  105. .jqx-toolbar-material-green{
  106. border-color: #e0e0e0;
  107. }
  108. .jqx-button-material-green, jqx-button-material-green.jqx-fill-state-normal-material-green {
  109. color: #fff;
  110. background: #558B2F;
  111. border-color: #558B2F;
  112. *zoom: 1;
  113. outline: none;
  114. transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  115. border-radius: 2px;
  116. }
  117. .jqx-button-material-green button, jqx-button-material-green input {
  118. background: transparent;
  119. color: inherit;
  120. border:none;
  121. outline: none;
  122. }
  123. .jqx-slider-button-material-green {
  124. padding:3px;
  125. background: transparent;
  126. border:transparent;
  127. }
  128. .jqx-button-material-green.float {
  129. border-radius: 100%;
  130. min-height: 48px;
  131. min-width: 48px;
  132. width: 48px;
  133. height: 48px;
  134. max-height: 48px;
  135. max-width:48px;
  136. }
  137. .jqx-button-material-green.outlined {
  138. background: transparent;
  139. color: #558B2F;
  140. border-width: 2px;
  141. }
  142. .jqx-button-material-green.flat {
  143. background: transparent;
  144. color: #558B2F;
  145. border: none;
  146. }
  147. .jqx-fill-state-hover-material-green {
  148. }
  149. .jqx-fill-state-pressed-material-green {
  150. }
  151. .jqx-fill-state-hover-material-green, .jqx-fill-state-focus-material-green {
  152. text-decoration: none;
  153. }
  154. .jqx-expander-header.jqx-fill-state-hover-material-green,
  155. .jqx-expander-header.jqx-fill-state-normal-material-green,
  156. .jqx-expander-header.jqx-fill-state-pressed-material-green
  157. {
  158. background: #fff;
  159. border-color: #e0e0e0;
  160. }
  161. .jqx-expander-header.jqx-fill-state-hover-material-green {
  162. background: #F5F5F5;
  163. }
  164. .jqx-expander-header-material-green {
  165. padding:10px;
  166. }
  167. .jqx-button-material-green.jqx-fill-state-hover {
  168. opacity: 0.9;
  169. cursor: pointer;
  170. box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  171. *zoom: 1;
  172. }
  173. .jqx-button-material-green.jqx-fill-state-hover.outlined,
  174. .jqx-button-material-green.jqx-fill-state-hover.flat {
  175. color: #558B2F;
  176. box-shadow: none;
  177. }
  178. .jqx-button-material-green.jqx-fill-state-pressed {
  179. cursor: pointer;
  180. box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  181. }
  182. .jqx-button-material-green.jqx-fill-state-pressed.float {
  183. box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  184. }
  185. .jqx-slider-button-material-green.jqx-fill-state-pressed-material-green,
  186. .jqx-button-material-green.jqx-fill-state-pressed.outlined,
  187. .jqx-button-material-green.jqx-fill-state-pressed.flat {
  188. background: rgba(99,0,238,0.15);
  189. box-shadow: none;
  190. }
  191. .jqx-button-material-green.jqx-fill-state-focus {
  192. background: #55882F;
  193. box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  194. }
  195. .jqx-slider-button-material-green.jqx-fill-state-focus-material-green {
  196. background: transparent;
  197. border-color: transparent;
  198. box-shadow:none;
  199. }
  200. .jqx-button-material-green.jqx-fill-state-focus.outlined,
  201. .jqx-button-material-green.jqx-fill-state-focus.flat {
  202. box-shadow: none;
  203. background: rgba(99,0,238,0.15);
  204. color: #55882F;
  205. }
  206. .jqx-dropdownlist-state-normal-material-green, .jqx-dropdownlist-state-hover-material-green, .jqx-dropdownlist-state-selected-material-green,
  207. .jqx-scrollbar-button-state-hover-material-green, .jqx-scrollbar-button-state-normal-material-green, .jqx-scrollbar-button-state-pressed-material-green,
  208. .jqx-scrollbar-thumb-state-normal-horizontal-material-green, .jqx-scrollbar-thumb-state-hover-horizontal-material-green, .jqx-scrollbar-thumb-state-pressed-horizontal-material-green,
  209. .jqx-scrollbar-thumb-state-normal-material-green, .jqx-scrollbar-thumb-state-pressed-material-green, .jqx-tree-item-hover-material-green, .jqx-tree-item-selected-material-green,
  210. .jqx-tree-item-material-green, .jqx-menu-item-material-green, .jqx-menu-item-hover-material-green, .jqx-menu-item-selected-material-green, .jqx-menu-item-top-material-green, .jqx-menu-item-top-hover-material-green,
  211. .jqx-menu-item-top-selected-material-green, .jqx-slider-button-material-green, .jqx-slider-slider-material-green {
  212. -webkit-transition: background-color 100ms linear;
  213. -moz-transition: background-color 100ms linear;
  214. -o-transition: background-color 100ms linear;
  215. -ms-transition: background-color 100ms linear;
  216. transition: background-color 100ms linear;
  217. }
  218. .jqx-primary-material-green.jqx-input-label-material-green {
  219. color: #1ca8dd !important;
  220. }
  221. .jqx-primary-material-green.jqx-input-bar-material-green:before {
  222. background: #1ca8dd !important;
  223. }
  224. .jqx-success-material-green.jqx-input-label-material-green {
  225. color: #5cb85c !important;
  226. }
  227. .jqx-success-material-green.jqx-input-bar-material-green:before {
  228. background: #5cb85c !important;
  229. }
  230. .jqx-inverse-material-green.jqx-input-label-material-green {
  231. color: #666 !important;
  232. }
  233. .jqx-inverse-material-green.jqx-input-bar-material-green:before {
  234. background: #666 !important;
  235. }
  236. .jqx-danger-material-green.jqx-input-label-material-green {
  237. color: #d9534f !important;
  238. }
  239. .jqx-danger-material-green.jqx-input-bar-material-green:before {
  240. background: #d9534f !important;
  241. }
  242. .jqx-warning-material-green.jqx-input-label-material-green {
  243. color: #f0ad4e !important;
  244. }
  245. .jqx-warning-material-green.jqx-input-bar-material-green:before {
  246. background: #f0ad4e !important;
  247. }
  248. .jqx-info-material-green.jqx-input-label-material-green {
  249. color: #5bc0de !important;
  250. }
  251. .jqx-info-material-green.jqx-input-bar-material-green:before {
  252. background: #5bc0de !important;
  253. }
  254. .jqx-primary-material-green {
  255. color: #1ca8dd !important;
  256. background: #fff !important;
  257. border-color: #1ca8dd !important;
  258. text-shadow: none !important;
  259. }
  260. .jqx-primary-material-green.jqx-dropdownlist-state-normal-material-green,
  261. .jqx-primary-material-green.jqx-slider-button-material-green,
  262. .jqx-primary-material-green.jqx-slider-slider-material-green,
  263. .jqx-primary-material-green.jqx-combobox-arrow-normal-material-green,
  264. .jqx-primary-material-green.jqx-combobox-arrow-hover-material-green,
  265. .jqx-primary-material-green.jqx-action-button-material-green,
  266. .jqx-primary-material-green:hover,
  267. .jqx-primary-material-green:focus,
  268. .jqx-primary-material-green:active,
  269. .jqx-primary-material-green.active,
  270. .jqx-primary-material-green.disabled,
  271. .jqx-primary-material-green[disabled] {
  272. color: #fff !important;
  273. background: #1ca8dd !important;
  274. border-color: #1ca8dd !important;
  275. text-shadow: none !important;
  276. }
  277. .jqx-fill-state-pressed-material-green.jqx-primary-material-green,
  278. .jqx-primary-material-green:active,
  279. .jqx-primary-material-green.active {
  280. color: #fff !important;
  281. background-color: #1ca8dd !important;
  282. border-color: #1ca8dd !important;
  283. text-shadow: none !important;
  284. }
  285. .jqx-success-material-green {
  286. color: #5cb85c !important;
  287. background: #fff !important;
  288. border-color: #5cb85c !important;
  289. text-shadow: none !important;
  290. }
  291. .jqx-success-material-green.jqx-dropdownlist-state-normal-material-green,
  292. .jqx-success-material-green.jqx-slider-button-material-green,
  293. .jqx-success-material-green.jqx-slider-slider-material-green,
  294. .jqx-success-material-green.jqx-combobox-arrow-normal-material-green,
  295. .jqx-success-material-green.jqx-combobox-arrow-hover-material-green,
  296. .jqx-success-material-green.jqx-action-button-material-green,
  297. .jqx-success-material-green:hover,
  298. .jqx-success-material-green:focus,
  299. .jqx-success-material-green:active,
  300. .jqx-success-material-green.active,
  301. .jqx-success-material-green.disabled,
  302. .jqx-success-material-green[disabled] {
  303. color: #fff !important;
  304. background: #5cb85c !important;
  305. border-color: #5cb85c !important;
  306. text-shadow: none !important;
  307. }
  308. .jqx-fill-state-pressed-material-green.jqx-success-material-green,
  309. .jqx-success-material-green:active,
  310. .jqx-success-material-green.active {
  311. text-shadow: none !important;
  312. color: #fff !important;
  313. background: #5cb85c !important;
  314. border-color: #5cb85c !important;
  315. }
  316. .jqx-inverse-material-green {
  317. text-shadow: none !important;
  318. color: #666 !important;
  319. background: #fff !important;
  320. border-color: #cccccc !important;
  321. }
  322. .jqx-inverse-material-green.jqx-dropdownlist-state-normal-material-green,
  323. .jqx-inverse-material-green.jqx-slider-button-material-green,
  324. .jqx-inverse-material-green.jqx-slider-slider-material-green,
  325. .jqx-inverse-material-green.jqx-combobox-arrow-hover-material-green,
  326. .jqx-inverse-material-green.jqx-combobox-arrow-normal-material-green,
  327. .jqx-inverse-material-green.jqx-action-button-material-green,
  328. .jqx-inverse-material-green:hover,
  329. .jqx-inverse-material-green:focus,
  330. .jqx-inverse-material-green:active,
  331. .jqx-inverse-material-green.active,
  332. .jqx-inverse-material-green.disabled,
  333. .jqx-inverse-material-green[disabled] {
  334. text-shadow: none !important;
  335. color: #666 !important;
  336. background: #cccccc !important;
  337. border-color: #cccccc !important;
  338. }
  339. .jqx-fill-state-pressed-material-green.jqx-inverse-material-green,
  340. .jqx-inverse-material-green:active,
  341. .jqx-inverse-material-green.active {
  342. text-shadow: none !important;
  343. color: #666 !important;
  344. background: #cccccc !important;
  345. border-color: #cccccc !important;
  346. }
  347. .jqx-danger-material-green {
  348. text-shadow: none !important;
  349. color: #d9534f !important;
  350. background: #fff !important;
  351. border-color: #d9534f !important;
  352. }
  353. .jqx-danger-material-green.jqx-dropdownlist-state-normal-material-green,
  354. .jqx-danger-material-green.jqx-slider-button-material-green,
  355. .jqx-danger-material-green.jqx-slider-slider-material-green,
  356. .jqx-danger-material-green.jqx-combobox-arrow-hover-material-green,
  357. .jqx-danger-material-green.jqx-combobox-arrow-normal-material-green,
  358. .jqx-danger-material-green.jqx-action-button-material-green,
  359. .jqx-danger-material-green:hover,
  360. .jqx-danger-material-green:focus,
  361. .jqx-danger-material-green:active,
  362. .jqx-danger-material-green.active,
  363. .jqx-danger-material-green.disabled,
  364. .jqx-danger-material-green[disabled] {
  365. text-shadow: none !important;
  366. color: #fff !important;
  367. background: #d9534f !important;
  368. border-color: #d9534f !important;
  369. }
  370. .jqx-fill-state-pressed-material-green.jqx-danger-material-green,
  371. .jqx-danger-material-green:active,
  372. .jqx-danger-material-green.active {
  373. text-shadow: none !important;
  374. color: #fff !important;
  375. background: #d9534f !important;
  376. border-color: #d9534f !important;
  377. }
  378. .jqx-validator-error-label-material-green {
  379. color: #d9534f !important;
  380. }
  381. .jqx-warning-material-green {
  382. text-shadow: none !important;
  383. color: #f0ad4e !important;
  384. background: #fff !important;
  385. border-color: #f0ad4e !important;
  386. }
  387. .jqx-warning-material-green.jqx-dropdownlist-state-normal-material-green,
  388. .jqx-warning-material-green.jqx-slider-button-material-green,
  389. .jqx-warning-material-green.jqx-slider-slider-material-green,
  390. .jqx-warning-material-green.jqx-combobox-arrow-hover-material-green,
  391. .jqx-warning-material-green.jqx-combobox-arrow-normal-material-green,
  392. .jqx-warning-material-green.jqx-action-button-material-green,
  393. .jqx-warning-material-green:hover,
  394. .jqx-warning-material-green:focus,
  395. .jqx-warning-material-green:active,
  396. .jqx-warning-material-green.active,
  397. .jqx-warning-material-green.disabled,
  398. .jqx-warning-material-green[disabled] {
  399. text-shadow: none !important;
  400. color: #fff !important;
  401. background: #f0ad4e !important;
  402. border-color: #f0ad4e !important;
  403. }
  404. .jqx-fill-state-pressed-material-green.jqx-warning-material-green,
  405. .jqx-warning-material-green:active,
  406. .jqx-warning-material-green.active {
  407. text-shadow: none !important;
  408. color: #fff !important;
  409. background: #f0ad4e !important;
  410. border-color: #f0ad4e !important;
  411. }
  412. .jqx-info-material-green {
  413. text-shadow: none !important;
  414. color: #5bc0de !important;
  415. background: #fff !important;
  416. border-color: #5bc0de !important;
  417. }
  418. .jqx-info-material-green.jqx-dropdownlist-state-normal-material-green,
  419. .jqx-info-material-green.jqx-slider-button-material-green,
  420. .jqx-info-material-green.jqx-slider-slider-material-green,
  421. .jqx-info-material-green.jqx-combobox-arrow-hover-material-green,
  422. .jqx-info-material-green.jqx-combobox-arrow-normal-material-green,
  423. .jqx-info-material-green.jqx-action-button-material-green,
  424. .jqx-info-material-green:hover,
  425. .jqx-info-material-green:focus,
  426. .jqx-info-material-green:active,
  427. .jqx-info-material-green.active,
  428. .jqx-info-material-green.disabled,
  429. .jqx-info-material-green[disabled] {
  430. color: #fff !important;
  431. background: #5bc0de !important;
  432. border-color: #5bc0de !important;
  433. text-shadow: none !important;
  434. }
  435. .jqx-fill-state-pressed-material-green.jqx-info-material-green,
  436. .jqx-info-material-green:active,
  437. .jqx-info-material-green.active {
  438. text-shadow: none !important;
  439. color: #fff !important;
  440. background: #5bc0de !important;
  441. border-color: #5bc0de !important;
  442. }
  443. .jqx-slider-tooltip-material-green.jqx-primary-slider, .jqx-slider-tooltip-material-green.jqx-primary-slider .jqx-fill-state-normal-material-green {
  444. border-color: #1ca8dd;
  445. background: #1ca8dd;
  446. }
  447. .jqx-slider-tooltip-material-green.jqx-success-slider, .jqx-slider-tooltip-material-green.jqx-success-slider .jqx-fill-state-normal-material-green {
  448. border-color: #5cb85c;
  449. background: #5cb85c;
  450. }
  451. .jqx-slider-tooltip-material-green.jqx-inverse-slider, .jqx-slider-tooltip-material-green.jqx-inverse-slider .jqx-fill-state-normal-material-green {
  452. border-color: #666;
  453. background: #666;
  454. }
  455. .jqx-slider-tooltip-material-green.jqx-danger-slider, .jqx-slider-tooltip-material-green.jqx-danger-slider .jqx-fill-state-normal-material-green {
  456. border-color: #d9534f;
  457. background: #d9534f;
  458. }
  459. .jqx-slider-tooltip-material-green.jqx-warning-slider, .jqx-slider-tooltip-material-green.jqx-warning-slider .jqx-fill-state-normal-material-green {
  460. border-color: #f0ad4e;
  461. background: #f0ad4e;
  462. }
  463. .jqx-slider-tooltip-material-green.jqx-info-slider, .jqx-slider-tooltip-material-green.jqx-info-slider .jqx-fill-state-normal-material-green {
  464. border-color: #5bc0de;
  465. background: #5bc0de;
  466. }
  467. .jqx-fill-state-pressed-material-green {
  468. background-image: none;
  469. outline: 0;
  470. }
  471. .jqx-grid-group-column-material-green {
  472. border-color: transparent;
  473. }
  474. .jqx-grid-column-menubutton-material-green {
  475. border-width: 0px;
  476. }
  477. .jqx-grid-groups-row-material-green > span {
  478. padding-left: 4px;
  479. }
  480. .jqx-grid-cell-material-green {
  481. -webkit-box-shadow: none;
  482. -moz-box-shadow: none;
  483. box-shadow: none;
  484. }
  485. .jqx-grid-pager-top-material-green .jqx-button-material-green,
  486. .jqx-grid-pager-material-green .jqx-button-material-green {
  487. color: rgba(0,0,0,.54) !important;
  488. background-color: transparent;
  489. border-color: transparent;
  490. top: -4px;
  491. position: relative;
  492. height:30px !important;
  493. width:30px !important;
  494. border-radius:50%;
  495. }
  496. .jqx-grid-pager-input-material-green {
  497. padding:0px !important;
  498. }
  499. .jqx-grid-pager-top-material-green .jqx-button-material-green > div,
  500. .jqx-grid-pager-material-green .jqx-button-material-green > div {
  501. top: 3px;
  502. position: relative;
  503. left: 3px;
  504. }
  505. .jqx-grid-pager-top-material-green .jqx-button-material-green.jqx-fill-state-hover,
  506. .jqx-grid-pager-top-material-green .jqx-button-material-green.jqx-fill-state-pressed,
  507. .jqx-grid-pager-material-green .jqx-button-material-green.jqx-fill-state-hover,
  508. .jqx-grid-pager-material-green .jqx-button-material-green.jqx-fill-state-pressed
  509. {
  510. color: rgba(0,0,0,.54) !important;
  511. background-color: transparent;
  512. border-color: transparent;
  513. box-shadow: none;
  514. }
  515. .jqx-grid-pager-top-material-green .jqx-grid-pager-number-material-green,
  516. .jqx-grid-pager-material-green .jqx-grid-pager-number-material-green {
  517. background-color: transparent;
  518. border-color: transparent;
  519. color: rgba(0,0,0,.54) !important;
  520. font-size:12px;
  521. }
  522. .jqx-grid-pager-top-material-green .jqx-grid-pager-number-material-green:hover,
  523. .jqx-grid-pager-material-green .jqx-grid-pager-number-material-green:hover {
  524. font-size:12px;
  525. }
  526. .jqx-grid-pager-top-material-green .jqx-grid-pager-number-material-green.jqx-fill-state-pressed-material-green ,
  527. .jqx-grid-pager-material-green .jqx-grid-pager-number-material-green.jqx-fill-state-pressed-material-green {
  528. color: #558B2F !important;
  529. font-weight: bold !important;
  530. }
  531. .jqx-grid-column-menubutton-material-green {
  532. background-color: transparent;
  533. border-color: #E0E0E0 !important;
  534. }
  535. .jqx-cell-material-green {
  536. font-size: 14px;
  537. }
  538. .jqx-calendar-material-green > div {
  539. padding: 10px;
  540. box-sizing: border-box;
  541. }
  542. .jqx-calendar-row-header-material-green, .jqx-calendar-top-left-header-material-green {
  543. background-color: #f0f0f0;
  544. border: 0px solid #f2f2f2;
  545. }
  546. .jqx-calendar-column-header-material-green {
  547. background-color: #FFF;
  548. border-top: 1px solid #FFF;
  549. border-bottom: 1px solid #e9e9e9;
  550. }
  551. .jqx-expander-header-material-green {
  552. padding-top: 10px;
  553. padding-bottom: 10px;
  554. }
  555. .jqx-ribbon-header-vertical-material-green, .jqx-widget-header-vertical-material-green {
  556. background: #fff;
  557. }
  558. .jqx-scrollbar-state-normal-material-green {
  559. background-color: #f5f5f5;
  560. border: 1px solid #f5f5f5;
  561. border-left-color: #ddd;
  562. }
  563. .jqx-scrollbar-thumb-state-normal-material-green, .jqx-scrollbar-thumb-state-normal-horizontal-material-green {
  564. background: #f5f5f5;
  565. border-color: #b3b3b3;
  566. }
  567. .jqx-scrollbar-thumb-state-hover-material-green, .jqx-scrollbar-thumb-state-hover-horizontal-material-green {
  568. background: #e6e6e6;
  569. border-color: #b3b3b3;
  570. box-shadow: none;
  571. -webkit-box-shadow: none;
  572. -moz-box-shadow: none;
  573. }
  574. .jqx-progressbar-material-green {
  575. background: #f7f7f7 !important;
  576. -webkit-box-shadow: none;
  577. -moz-box-shadow: none;
  578. box-shadow: none;
  579. }
  580. .jqx-progressbar-value-material-green, .jqx-splitter-collapse-button-horizontal-material-green {
  581. background: #558B2F;
  582. }
  583. .jqx-splitter-collapse-button-vertical-material-green, .jqx-progressbar-value-vertical-material-green {
  584. background: #558B2F;
  585. }
  586. .jqx-scrollbar-thumb-state-pressed-material-green, .jqx-splitter-splitbar-vertical-material-green, .jqx-splitter-splitbar-horizontal-material-green, .jqx-scrollbar-thumb-state-pressed-horizontal-material-green,
  587. .jqx-scrollbar-button-state-pressed-material-green {
  588. background: #d9d9d9;
  589. border-color: #b3b3b3;
  590. box-shadow: none;
  591. -webkit-box-shadow: none;
  592. -moz-box-shadow: none;
  593. }
  594. .jqx-grid-column-sortdescbutton-material-green, jqx-grid-column-filterbutton-material-green, .jqx-grid-column-sortascbutton-material-green {
  595. background-color: transparent;
  596. border-style: solid;
  597. border-width: 0px 0px 0px 0px;
  598. border-color: #E0E0E0;
  599. }
  600. .jqx-menu-vertical-material-green {
  601. background: #ffffff;
  602. filter: none;
  603. }
  604. .jqx-grid-bottomright-material-green, .jqx-panel-bottomright-material-green, .jqx-listbox-bottomright-material-green {
  605. background-color: #fafafa;
  606. }
  607. .jqx-window-material-green, .jqx-tooltip-material-green {
  608. box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15);
  609. }
  610. .jqx-tooltip-material-green, .jqx-tooltip-material-green.jqx-popup-material-green, .jqx-tooltip-material-green .jqx-fill-state-normal-material-green {
  611. background: #6F6F6F;
  612. border-color: #6F6F6F;
  613. box-shadow:none;
  614. color: #fff;
  615. }
  616. .jqx-docking-material-green .jqx-window-material-green {
  617. box-shadow: none;
  618. }
  619. .jqx-docking-panel-material-green .jqx-window-material-green {
  620. box-shadow: none;
  621. }
  622. .jqx-checkbox-material-green {
  623. line-height:20px;
  624. overflow: visible;
  625. }
  626. .jqx-radiobutton-material-green {
  627. overflow: visible;
  628. box-shadow: none;
  629. -webkit-box-shadow: none;
  630. -moz-box-shadow: none;
  631. background-repeat: no-repeat;
  632. background: none;
  633. line-height:20px;
  634. }
  635. .jqx-radiobutton-material-green-material-green, .jqx-radiobutton-hover-material-green {
  636. -moz-border-radius: 100%;
  637. -webkit-border-radius: 100%;
  638. border-radius: 100%;
  639. background-repeat: no-repeat;
  640. transition: background-color ease-in .3s;
  641. }
  642. .jqx-radiobutton-check-checked-material-green {
  643. filter: none;
  644. background: #fff;
  645. background-repeat: no-repeat;
  646. -moz-border-radius: 100%;
  647. -webkit-border-radius: 100%;
  648. border-radius: 100%;
  649. }
  650. .jqx-radiobutton-check-indeterminate-material-green {
  651. filter: none;
  652. background: #999;
  653. -moz-border-radius: 100%;
  654. -webkit-border-radius: 100%;
  655. border-radius: 100%;
  656. }
  657. .jqx-radiobutton-check-indeterminate-disabled-material-green {
  658. filter: none;
  659. background: #999;
  660. -moz-border-radius: 100%;
  661. -webkit-border-radius: 100%;
  662. border-radius: 100%;
  663. }
  664. .jqx-checkbox-default-material-green,
  665. .jqx-radiobutton-default-material-green
  666. {
  667. border-width: 1px;
  668. border-color: #E0E0E0;
  669. background-color: #fff;
  670. overflow: visible;
  671. }
  672. .jqx-tree-material-green .jqx-checkbox-material-green .jqx-checkbox-default-material-green,
  673. .jqx-checkbox-material-green[checked] .jqx-checkbox-default-material-green,
  674. .jqx-tree-grid-checkbox[checked].jqx-checkbox-default-material-green,
  675. .jqx-radiobutton-material-green[checked] .jqx-radiobutton-default-material-green
  676. {
  677. background-color: #558B2F;
  678. border-color: #558B2F;
  679. }
  680. .jqx-checkbox-check-checked-material-green {
  681. background: transparent url(images/material_check_white.png) center center no-repeat;
  682. }
  683. .jqx-checkbox-check-indeterminate-material-green {
  684. width:14px !important;
  685. height:14px !important;
  686. position:relative;
  687. top: 1px;
  688. left: 1px;
  689. background: white;
  690. }
  691. .jqx-tree-material-green .jqx-checkbox-check-indeterminate-material-green {
  692. width:12px !important;
  693. height:12px !important;
  694. top: 2px;
  695. left:2px;
  696. }
  697. .jqx-checkbox-hover-material-green,
  698. .jqx-radiobutton-hover-material-green {
  699. background-color: #558B2F;
  700. border-color: #558B2F;
  701. }
  702. .jqx-slider-slider-material-green {
  703. transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  704. }
  705. .jqx-slider-slider-material-green:active {
  706. transform: scale(1.2);
  707. box-shadow: rgba(0,0,0,0.3) 0 0 10px;
  708. }
  709. .jqx-slider-material-green[discrete] .jqx-slider-slider-material-green:active
  710. {
  711. transform: scaleX(0);
  712. }
  713. .jqx-slider-slider-horizontal-material-green {
  714. background: #558B2F;
  715. }
  716. .jqx-slider-slider-vertical-material-green {
  717. background: #558B2F;
  718. }
  719. .jqx-slider-tooltip-material-green {
  720. width: 25px;
  721. height: 25px;
  722. transform-origin: 50% 100%;
  723. border-radius: 50%;
  724. transform: scale(0) rotate(45deg);
  725. padding:0px;
  726. background: transparent !important;
  727. }
  728. .jqx-slider-tooltip-material-green.init {
  729. transform: scale(1) rotate(45deg);
  730. }
  731. .jqx-slider-tooltip-material-green.hide {
  732. transition: transform 0.2s ease;
  733. transform-origin:50% 100%;
  734. transform: scale(0) rotate(45deg);
  735. }
  736. .jqx-slider-tooltip-material-green.show {
  737. transition: transform 0.2s ease;
  738. transform: scale(1) rotate(45deg);
  739. }
  740. .jqx-slider-tooltip-material-green .jqx-tooltip-arrow-t-b,
  741. .jqx-slider-tooltip-material-green .jqx-tooltip-arrow-l-r {
  742. display:none;
  743. visibility:hidden;
  744. }
  745. .jqx-slider-tooltip-material-green, .jqx-slider-tooltip-material-green .jqx-fill-state-normal-material-green {
  746. border-radius: 15px 15px 0px;
  747. display: flex;
  748. align-items: center;
  749. justify-content: center;
  750. background: #558B2F;
  751. color: #fff;
  752. font-size:11px;
  753. }
  754. .jqx-slider-tooltip-material-green.far, .jqx-slider-tooltip-material-green.far .jqx-fill-state-normal-material-green {
  755. border-radius: 0px 15px 15px 15px;
  756. }
  757. .jqx-slider-tooltip-material-green.vertical, .jqx-slider-tooltip-material-green.vertical .jqx-fill-state-normal-material-green {
  758. border-radius: 15px 0px 15px 15px;
  759. }
  760. .jqx-slider-tooltip-material-green.vertical.far, .jqx-slider-tooltip-material-green.vertical.far .jqx-fill-state-normal-material-green {
  761. border-radius: 15px 15px 15px 0px;
  762. }
  763. .jqx-slider-tooltip-material-green {
  764. background:transparent;
  765. border:none !important;
  766. box-shadow:none;
  767. }
  768. .jqx-slider-tooltip-material-green .jqx-tooltip-main-material-green {
  769. top: -7px;
  770. right: 11px;
  771. }
  772. .jqx-slider-tooltip-material-green.far .jqx-tooltip-main-material-green {
  773. top: 3px;
  774. right: 4px;
  775. }
  776. .jqx-slider-tooltip-material-green.vertical .jqx-tooltip-main-material-green {
  777. top: -3px;
  778. right: 3px;
  779. }
  780. .jqx-slider-tooltip-material-green .jqx-tooltip-text {
  781. background: transparent;
  782. border:none;
  783. padding: 0px;
  784. overflow:visible;
  785. }
  786. .jqx-slider-tooltip-material-green .jqx-tooltip-text>span {
  787. transform: rotate(-45deg);
  788. }
  789. .jqx-slider-tooltip-material-green.range {
  790. width: 35px;
  791. height:35px;
  792. }
  793. .jqx-slider-rangebar-material-green {
  794. border-color: #558B2F;
  795. background: #558B2F;
  796. }
  797. .jqx-slider-track-horizontal-material-green, .jqx-slider-track-vertical-material-green {
  798. border-color: #E0E0E0;
  799. background: #f0f0f0;
  800. }
  801. .jqx-slider-button-material-green {
  802. -moz-border-radius: 100%;
  803. -webkit-border-radius: 100%;
  804. border-radius: 100%;
  805. }
  806. .jqx-slider-button-material-green.jqx-fill-state-normal-material-green,
  807. .jqx-slider-button-material-green.jqx-fill-state-hover-material-green,
  808. .jqx-slider-button-material-green.jqx-fill-state-pressed-material-green
  809. {
  810. background: transparent !important;
  811. }
  812. .jqx-listitem-state-hover-material-green,
  813. .jqx-listitem-state-selected-material-green,
  814. .jqx-listitem-state-normal-material-green {
  815. padding: 5px;
  816. }
  817. .jqx-scheduler-edit-dialog-label-material-green {
  818. line-height: 35px;
  819. padding-top: 6px;
  820. padding-bottom: 6px;
  821. }
  822. .jqx-scheduler-edit-dialog-field-material-green {
  823. line-height: 35px;
  824. padding-top: 6px;
  825. padding-bottom: 6px;
  826. }
  827. .jqx-scheduler-edit-dialog-label-rtl-material-green {
  828. line-height: 35px;
  829. padding-top: 6px;
  830. padding-bottom: 6px;
  831. }
  832. .jqx-scheduler-edit-dialog-field-rtl-material-green {
  833. line-height: 35px;
  834. padding-top: 6px;
  835. padding-bottom: 6px;
  836. }
  837. /*applied to a list item when the item is selected.*/
  838. .jqx-listitem-state-hover-material-green, .jqx-menu-item-hover-material-green, .jqx-tree-item-hover-material-green, .jqx-calendar-cell-hover-material-green, .jqx-grid-cell-hover-material-green,
  839. .jqx-menu-vertical-material-green .jqx-menu-item-top-hover-material-green, .jqx-input-popup-material-green .jqx-fill-state-hover-material-green,
  840. .jqx-input-popup-material-green .jqx-fill-state-pressed-material-green {
  841. color: #333 !important;
  842. border-color: #F5F5F5;
  843. text-decoration: none;
  844. background-color: #F5F5F5;
  845. background-repeat: repeat-x;
  846. outline: 0;
  847. background: #F5F5F5; /* Old browsers */
  848. -webkit-box-shadow: none;
  849. -moz-box-shadow: none;
  850. box-shadow: none;
  851. background-position: 0 0;
  852. }
  853. .jqx-scheduler-cell-hover-material-green {
  854. border-color: #F5F5F5 !important;
  855. background: #F5F5F5 !important;
  856. }
  857. .jqx-listitem-state-selected-material-green, .jqx-menu-item-selected-material-green, .jqx-tree-item-selected-material-green, .jqx-calendar-cell-selected-material-green, .jqx-grid-cell-selected-material-green,
  858. .jqx-menu-vertical-material-green .jqx-menu-item-top-selected-material-green, .jqx-grid-selectionarea-material-green, .jqx-input-button-header-material-green, .jqx-input-button-innerHeader-material-green {
  859. color: #558B2F !important;
  860. border-color: rgba(85,139,47,0.2) !important;
  861. background: rgba(85,139,47,0.2);
  862. box-shadow: none;
  863. }
  864. .jqx-scheduler-cell-selected-material-green {
  865. border-color: rgba(85,139,47,0.2) !important;
  866. background: rgba(85,139,47,0.2) !important;
  867. }
  868. .jqx-grid-cell-material-green .jqx-button-material-green, .jqx-grid-cell-material-green .jqx-button-material-green.jqx-fill-state-hover-material-green, .jqx-grid-cell-material-green .jqx-button-material-green.jqx-fill-state-pressed-material-green {
  869. -webkit-box-shadow: none;
  870. -moz-box-shadow: none;
  871. box-shadow: none;
  872. -webkit-transition: none;
  873. -moz-transition: none;
  874. -o-transition: none;
  875. transition: none;
  876. }
  877. .jqx-popup-material-green {
  878. border: 1px solid #E0E0E0;
  879. *border-right-width: 2px;
  880. *border-bottom-width: 2px;
  881. -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  882. -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  883. }
  884. .jqx-grid-column-sortascbutton-material-green, .jqx-expander-arrow-bottom-material-green, .jqx-window-collapse-button-material-green, .jqx-menu-item-arrow-up-material-green, .jqx-menu-item-arrow-up-selected-material-green, .jqx-menu-item-arrow-top-up-material-green, .jqx-icon-arrow-up-material-green, .jqx-icon-arrow-up-hover-material-green, .jqx-icon-arrow-up-selected-material-green {
  885. background-image: url('images/material-icon-up.png');
  886. background-repeat: no-repeat;
  887. background-position: center;
  888. }
  889. .jqx-widget-material-green .jqx-grid-group-expand-material-green, .jqx-grid-group-expand-material-green, .jqx-grid-column-menubutton-material-green, .jqx-grid-column-sortdescbutton-material-green, .jqx-expander-arrow-top-material-green, .jqx-window-collapse-button-collapsed-material-green, .jqx-menu-item-arrow-down-material-green, .jqx-menu-item-arrow-down-selected-material-green, .jqx-menu-item-arrow-down-material-green, .jqx-icon-arrow-down-material-green, .jqx-icon-arrow-down-hover-material-green, .jqx-icon-arrow-down-selected-material-green {
  890. background-image: url('images/material-icon-down.png');
  891. background-repeat: no-repeat;
  892. background-position: center;
  893. }
  894. .jqx-tabs-arrow-left-material-green, .jqx-menu-item-arrow-left-selected-material-green, .jqx-menu-item-arrow-top-left, .jqx-icon-arrow-left-material-green, .jqx-icon-arrow-down-left-material-green, .jqx-icon-arrow-left-selected-material-green {
  895. background-image: url('images/material-icon-left.png');
  896. background-repeat: no-repeat;
  897. background-position: center;
  898. }
  899. .jqx-widget-material-green .jqx-grid-group-collapse-material-green, .jqx-grid-group-collapse-material-green, .jqx-tabs-arrow-right-material-green, .jqx-menu-item-arrow-right-selected-material-green, .jqx-menu-item-arrow-top-right-material-green, .jqx-icon-arrow-right-material-green, .jqx-icon-arrow-right-hover-material-green, .jqx-icon-arrow-right-selected-material-green {
  900. background-image: url('images/material-icon-right.png');
  901. background-repeat: no-repeat;
  902. background-position: center;
  903. }
  904. .jqx-tree-item-arrow-collapse-rtl-material-green, .jqx-tree-item-arrow-collapse-hover-rtl-material-green {
  905. background-image: url(images/material-icon-left.png);
  906. }
  907. .jqx-menu-item-arrow-left-selected-material-green {
  908. background-image: url('images/material-icon-left.png');
  909. background-repeat: no-repeat;
  910. background-position: center;
  911. }
  912. .jqx-menu-item-arrow-right-selected-material-green {
  913. background-image: url('images/material-icon-right.png');
  914. background-repeat: no-repeat;
  915. background-position: center;
  916. }
  917. .jqx-input-button-content-material-green {
  918. font-size: 10px;
  919. }
  920. .jqx-widget .jqx-grid-column-header-cell-material-green {
  921. padding-top: 8px;
  922. padding-bottom: 8px;
  923. height:30px;
  924. }
  925. .jqx-widget .jqx-grid-row-cell-material-green {
  926. padding-top: 8px;
  927. padding-bottom: 8px;
  928. height:30px;
  929. }
  930. .jqx-widget .jqx-grid-cell, .jqx-widget .jqx-grid-column-header, .jqx-widget .jqx-grid-group-cell {
  931. border-color: #E0E0E0;
  932. }
  933. .jqx-combobox-material-green .jqx-icon-close-material-green {
  934. background-image:url(images/close_white.png)
  935. }
  936. .jqx-combobox-material-green, .jqx-input-material-green {
  937. border-color: #E0E0E0;
  938. color: #555555;
  939. background-color: #ffffff;
  940. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  941. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  942. }
  943. .jqx-combobox-content-material-green,
  944. .jqx-datetimeinput-content-material-green
  945. {
  946. border-color: transparent;
  947. }
  948. .jqx-combobox-arrow-normal-material-green {
  949. background: #fff;
  950. border-color: transparent;
  951. }
  952. .jqx-combobox-content-focus-material-green,
  953. .jqx-combobox-state-focus-material-green,
  954. .jqx-numberinput-focus-material-green {
  955. outline: none;
  956. }
  957. .jqx-input-group-material-green {
  958. position: relative;
  959. display: inline-block;
  960. overflow: visible;
  961. border: none;
  962. box-shadow: none;
  963. }
  964. .jqx-input-group-material-green input {
  965. width: 100%;
  966. height: 100%;
  967. box-sizing: border-box;
  968. }
  969. .jqx-input-group-material-green textarea {
  970. width: 100%;
  971. height: 100%;
  972. outline: none;
  973. resize: none;
  974. border-left: none;
  975. border-right: none;
  976. border-top: none;
  977. border-bottom-color: #e0e0e0;
  978. }
  979. .jqx-numberinput-material-green,
  980. .jqx-maskedinput-material-green
  981. {
  982. position:relative;
  983. }
  984. .jqx-numberinput-material-green input {
  985. height:100% !important;
  986. }
  987. .jqx-input-material-green.jqx-validator-error-element {
  988. border-color: transparent !important;
  989. border-bottom: 1px solid #df2227 !important;
  990. }
  991. .jqx-input-material-green input,
  992. .jqx-dropdownlist-state-normal-material-green,
  993. .jqx-combobox-state-normal-material-green,
  994. .jqx-datetimeinput-material-green,
  995. .jqx-numberinput-material-green,
  996. .jqx-maskedinput-material-green
  997. {
  998. background: #fff;
  999. border-color: #fff;
  1000. border-radius: 0;
  1001. box-shadow: none;
  1002. border-bottom: 1px solid #E0E0E0;
  1003. outline: none;
  1004. }
  1005. .jqx-datetimeinput-material-green .jqx-action-button-material-green,
  1006. .jqx-datetimeinput-material-green .jqx-action-button-rtl-material-green
  1007. {
  1008. background-color: transparent;
  1009. border-color: transparent;
  1010. }
  1011. .jqx-datetimeinput-material-green, .jqx-datetimeinput-material-green > div,
  1012. .jqx-numberinput-material-green, .jqx-numberinput-material-green > div,
  1013. .jqx-maskedinput-material-green, .jqx-maskedinput-material-green > div,
  1014. .jqx-dropdownlist-state-normal-material-green, .jqx-dropdownlist-state-normal-material-green > div, .jqx-dropdownlist-state-normal-material-green > div > div,
  1015. .jqx-combobox-state-normal-material-green, .jqx-combobox-state-normal-material-green > div, .jqx-combobox-state-normal-material-green > div > div {
  1016. overflow: visible !important;
  1017. }
  1018. .jqx-input-material-green input:focus {
  1019. border-radius: 0;
  1020. box-shadow: none;
  1021. }
  1022. .jqx-input-material-green input, input[type="text"].jqx-input-material-green, input[type="password"].jqx-input-material-green, input[type="text"].jqx-widget-content-material-green, input[type="textarea"].jqx-widget-content-material-green, textarea.jqx-input-material-green {
  1023. font-size: 14px;
  1024. resize: none;
  1025. background: #fff;
  1026. border: none;
  1027. border-radius: 0;
  1028. box-sizing:border-box;
  1029. box-shadow: none;
  1030. border-bottom: 1px solid #E0E0E0;
  1031. }
  1032. .jqx-input-label {
  1033. visibility:inherit;
  1034. }
  1035. .jqx-input-bar{
  1036. visibility:inherit;
  1037. }
  1038. input:focus ~ .jqx-input-label-material-green,
  1039. textarea:focus ~ .jqx-input-label-material-green,
  1040. .jqx-input-widget-material-green[hint=true] .jqx-input-label,
  1041. .jqx-text-area-material-green[hint=true] .jqx-input-label,
  1042. .jqx-dropdownlist-state-selected-material-green .jqx-input-label,
  1043. .jqx-dropdownlist-state-normal-material-green[hint=true] .jqx-input-label,
  1044. .jqx-combobox-state-normal-material-green[hint=true] .jqx-input-label,
  1045. .jqx-combobox-material-green .jqx-input-label.focused,
  1046. .jqx-dropdownlist-material-green .jqx-input-label.focused,
  1047. .jqx-datetimeinput-material-green[hint=true] .jqx-input-label,
  1048. .jqx-maskedinput-material-green[hint=true] .jqx-input-label,
  1049. .jqx-numberinput-material-green[hint=true] .jqx-input-label,
  1050. .jqx-formattedinput-material-green[hint=true] .jqx-input-label
  1051. {
  1052. top: -15px;
  1053. font-size: 12px;
  1054. color: #558B2F;
  1055. }
  1056. .jqx-dropdownlist-material-green[default-placeholder="true"] .jqx-input-label {
  1057. visibility: hidden;
  1058. }
  1059. input:focus ~ .jqx-input-bar-material-green:before,
  1060. textarea:focus ~ .jqx-input-bar-material-green:before,
  1061. .jqx-dropdownlist-state-selected-material-green .jqx-input-bar:before,
  1062. .jqx-dropdownlist-material-green .jqx-input-bar.focused:before,
  1063. .jqx-complex-input-group-material-green .jqx-input-bar.focused::before,
  1064. .jqx-combobox-material-green .jqx-input-bar.focused:before,
  1065. .jqx-combobox-state-selected-material-green .jqx-input-bar:before {
  1066. width: 100%;
  1067. }
  1068. .jqx-complex-input-group-material-green .jqx-fill-state-normal-material-green {
  1069. border-color: #fafafa;
  1070. }
  1071. input[type="password"] {
  1072. letter-spacing: 0.3em;
  1073. }
  1074. .jqx-input-widget-material-green.jqx-rtl > input {
  1075. direction: rtl
  1076. }
  1077. .jqx-input-label-material-green {
  1078. color: #E0E0E0;
  1079. font-size: 14px;
  1080. font-weight: normal;
  1081. position: absolute;
  1082. pointer-events: none;
  1083. left: 2px;
  1084. top:10px;
  1085. top: calc(50% - 7px);
  1086. transition: 300ms ease all;
  1087. }
  1088. .jqx-input-label.initial {
  1089. transition: none;
  1090. }
  1091. .jqx-input-bar {
  1092. position: relative;
  1093. display: block;
  1094. z-index:1;
  1095. }
  1096. .jqx-input-bar-material-green:before {
  1097. content: '';
  1098. height: 2px;
  1099. width: 0;
  1100. bottom: 0px;
  1101. position: absolute;
  1102. background: #558B2F;
  1103. transition: 300ms ease all;
  1104. left: 0%;
  1105. }
  1106. .jqx-formatted-input-spin-button-material-green, .jqx-input-group-addon-material-green {
  1107. border-color: #fff;
  1108. background: #fff;
  1109. }
  1110. .jqx-dropdownlist-state-selected-material-green,
  1111. .jqx-combobox-state-selected-material-green {
  1112. color: #558B2F;
  1113. }
  1114. .jqx-dropdownlist-state-normal-material-green .jqx-icon-arrow-down-material-green,
  1115. .jqx-combobox-state-normal-material-green .jqx-icon-arrow-down-material-green,
  1116. .sorticon.descending .jqx-grid-column-sorticon-material-green,
  1117. .jqx-tree-item-arrow-expand-material-green,
  1118. .jqx-expander-header-material-green .jqx-icon-arrow-down
  1119. {
  1120. transform: rotate(0deg);
  1121. transition: transform 0.2s ease-out;
  1122. }
  1123. .jqx-expander-header-material-green .jqx-icon-arrow-up {
  1124. transform: rotate(180deg);
  1125. transition: transform 0.2s ease-out;
  1126. background-image: url('images/material-icon-down.png');
  1127. }
  1128. .jqx-tree-item-arrow-collapse-material-green
  1129. {
  1130. transform: rotate(-90deg);
  1131. background-image: url('images/material-icon-down.png');
  1132. background-repeat: no-repeat;
  1133. background-position: center;
  1134. transition: transform 0.2s ease-out;
  1135. }
  1136. .jqx-dropdownlist-state-selected-material-green .jqx-icon-arrow-down-material-green,
  1137. .jqx-combobox-state-selected-material-green .jqx-icon-arrow-down-material-green,
  1138. .sorticon.ascending .jqx-grid-column-sorticon-material-green
  1139. {
  1140. transform: rotate(180deg);
  1141. transition: transform 0.2s ease-out;
  1142. left: -1px;
  1143. }
  1144. .jqx-combobox-state-selected-material-green .jqx-icon-arrow-down-material-green{
  1145. left:-1px;
  1146. }
  1147. .jqx-listbox-container {
  1148. margin-top: 1px;
  1149. }
  1150. input[type="text"].jqx-input-material-green:-moz-placeholder, input[type="text"].jqx-widget-content-material-green:-moz-placeholder, input[type="textarea"].jqx-widget-content-material-green:-moz-placeholder, textarea.jqx-input-material-green:-moz-placeholder {
  1151. color: #999999;
  1152. }
  1153. input[type="text"].jqx-input-material-green:-webkit-input-placeholder, input[type="text"].jqx-widget-content-material-green:-webkit-input-placeholder, input[type="textarea"].jqx-widget-content-material-green:-webkit-input-placeholder, textarea.jqx-input-material-green:-webkit-input-placeholder {
  1154. color: #999999;
  1155. }
  1156. input[type="text"].jqx-input-material-green:-ms-input-placeholder, input[type="text"].jqx-widget-content-material-green:-ms-input-placeholder, input[type="textarea"].jqx-widget-content-material-green:-ms-input-placeholder, textarea.jqx-input-material-green:-ms-input-placeholder {
  1157. color: #999999;
  1158. }
  1159. .jqx-combobox-content-focus-material-green, .jqx-combobox-state-focus-material-green, .jqx-fill-state-focus-material-green,
  1160. .jqx-numberinput-focus-material-green {
  1161. outline: none;
  1162. }
  1163. .jqx-popup-material-green.jqx-fill-state-focus-material-green {
  1164. outline: none;
  1165. border-color: #E0E0E0 !important;
  1166. }
  1167. .jqx-datetimeinput-content, .jqx-datetimeinput-container {
  1168. overflow: visible !important;
  1169. }
  1170. .jqx-text-area-material-green, .jqx-text-area-material-green > div {
  1171. overflow:visible !important;
  1172. }
  1173. .jqx-text-area-element-material-green {
  1174. box-sizing: border-box;
  1175. }
  1176. .jqx-pivotgrid-content-wrapper.jqx-fill-state-normal-material-green {
  1177. border-color: #E0E0E0;
  1178. }
  1179. .jqx-grid-cell-material-green.jqx-grid-cell-selected-material-green > .jqx-grid-group-expand-material-green {
  1180. background-image: url('images/material-icon-down.png');
  1181. background-repeat: no-repeat;
  1182. background-position: center;
  1183. }
  1184. .jqx-grid-cell-material-green.jqx-grid-cell-selected-material-green > .jqx-grid-group-collapse-material-green {
  1185. background-image: url('images/material-icon-right.png');
  1186. background-repeat: no-repeat;
  1187. background-position: center;
  1188. }
  1189. .jqx-grid-cell-material-green.jqx-grid-cell-selected-material-green > .jqx-grid-group-collapse-rtl-material-green {
  1190. background-image: url('images/material-icon-left.png');
  1191. background-repeat: no-repeat;
  1192. background-position: center;
  1193. }
  1194. .jqx-grid-cell-material-green.jqx-grid-cell-selected-material-green > .jqx-grid-group-expand-rtl-material-green {
  1195. background-image: url('images/material-icon-down.png');
  1196. background-repeat: no-repeat;
  1197. background-position: center;
  1198. }
  1199. .jqx-tabs-title-selected-top-material-green, .jqx-tabs-selection-tracker-top-material-green {
  1200. border-color: transparent;
  1201. filter: none;
  1202. background: #fff;
  1203. color: #333;
  1204. -webkit-box-shadow: none;
  1205. -moz-box-shadow: none;
  1206. box-shadow: none;
  1207. }
  1208. .jqx-tabs-title-material-green, .jqx-ribbon-item-material-green {
  1209. color: #333;
  1210. }
  1211. .jqx-tabs-title-selected-bottom-material-green,
  1212. .jqx-tabs-title-selected-top-material-green
  1213. {
  1214. color: #558B2F;
  1215. font-weight:500;
  1216. padding-top:5px;
  1217. padding-bottom:5px;
  1218. }
  1219. .jqx-tabs-title.jqx-fill-state-hover-material-green {
  1220. border-color: transparent;
  1221. }
  1222. .jqx-ribbon-item-material-green {
  1223. cursor: pointer;
  1224. }
  1225. .jqx-ribbon-item-selected-material-green {
  1226. color: #558B2F;
  1227. font-weight:500;
  1228. border-color: transparent;
  1229. }
  1230. .jqx-ribbon-item-hover-material-green {
  1231. background: transparent;
  1232. }
  1233. .jqx-ribbon-header-top-material-green {
  1234. border-color: transparent;
  1235. border-bottom-color: #E0E0E0;
  1236. }
  1237. .jqx-ribbon-header-bottom-material-green {
  1238. border-color: transparent;
  1239. border-top-color: #E0E0E0;
  1240. }
  1241. .jqx-ribbon-header-right-material-green {
  1242. border-color: transparent;
  1243. border-left-color:#E0E0E0;
  1244. }
  1245. .jqx-ribbon-header-left-material-green {
  1246. border-color: transparent;
  1247. border-right-color:#E0E0E0;
  1248. }
  1249. .jqx-tabs-title-selected-bottom-material-green, .jqx-tabs-selection-tracker-bottom-material-green {
  1250. border-color: transparent;
  1251. border-top: 1px solid #fff;
  1252. filter: none;
  1253. background: #fff;
  1254. -webkit-box-shadow: none;
  1255. -moz-box-shadow: none;
  1256. box-shadow: none;
  1257. }
  1258. .jqx-tabs-material-green, .jqx-ribbon-material-green {
  1259. border-color: transparent;
  1260. }
  1261. .jqx-tabs-header-material-green, .jqx-ribbon-header-material-green {
  1262. background: transparent;
  1263. }
  1264. .jqx-tabs-position-bottom .jqx-tabs-header-material-green {
  1265. border-color: transparent;
  1266. }
  1267. .jqx-layout-material-green .jqx-tabs-header-material-green, .jqx-layout-material-green .jqx-ribbon-header-material-green {
  1268. background: #fff;
  1269. border-color: #E0E0E0;
  1270. }
  1271. .jqx-tabs-title-bottom {
  1272. border-color: transparent;
  1273. }
  1274. .jqx-tabs-title-hover-top-material-green, .jqx-tabs-title-hover-bottom-material-green, .jqx-tabs-header-material-green {
  1275. -webkit-box-shadow: none !important;
  1276. -moz-box-shadow: none !important;
  1277. box-shadow: none !important;
  1278. background: transparent;
  1279. }
  1280. .jqx-tabs-content-material-green {
  1281. box-sizing: border-box;
  1282. border: 1px solid #E0E0E0;
  1283. border-top-color: transparent;
  1284. padding:5px;
  1285. }
  1286. .jqx-tabs-bar-material-green {
  1287. position: absolute;
  1288. bottom: 0;
  1289. background: #558B2F;
  1290. height: 2px;
  1291. z-index:10;
  1292. transition: .5s cubic-bezier(.35,0,.25,1);
  1293. }
  1294. .jqx-tabs-bar-material-green.vertical {
  1295. width: 2px;
  1296. }
  1297. .jqx-tabs-position-bottom .jqx-tabs-bar-material-green {
  1298. top: 0;
  1299. }
  1300. .jqx-layout-material-green {
  1301. background-color: #cccccc;
  1302. }
  1303. .jqx-kanban-column-header-collapsed-material-green {
  1304. background: -moz-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* ff3.6+ */
  1305. 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 */
  1306. background: -webkit-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* safari5.1+,chrome10+ */
  1307. background: -o-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* opera 11.10+ */
  1308. background: -ms-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* ie10+ */
  1309. background: linear-gradient(90deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* w3c */
  1310. }
  1311. .jqx-calendar-material-green > div {
  1312. padding: 10px;
  1313. box-sizing: border-box;
  1314. }
  1315. .jqx-calendar-cell-material-green {
  1316. border-radius: 50%;
  1317. font-size:12px;
  1318. }
  1319. .jqx-calendar-cell-year-material-green,
  1320. .jqx-calendar-cell-decade-material-green {
  1321. border-radius: 25%;
  1322. }
  1323. .jqx-calendar-title-content-material-green {
  1324. font-weight:bold;
  1325. }
  1326. .jqx-calendar-column-cell-material-green {
  1327. color: rgba(0,0,0,.38);
  1328. font-size:12px;
  1329. }
  1330. .jqx-grid-column-menubutton-material-green {
  1331. background-image: url('images/material-icon-down.png');
  1332. }
  1333. .jqx-tabs-close-button-material-green {
  1334. background-image: url(images/close.png);
  1335. background-repeat: no-repeat;
  1336. background-position: center;
  1337. }
  1338. .jqx-tabs-close-button-selected-material-green {
  1339. background-image: url(images/close.png);
  1340. background-repeat: no-repeat;
  1341. background-position: center;
  1342. }
  1343. .jqx-tabs-close-button-hover-material-green {
  1344. background-image: url(images/close.png);
  1345. background-repeat: no-repeat;
  1346. background-position: center;
  1347. }
  1348. .jqx-scrollbar-button-state-pressed-material-green .jqx-icon-arrow-up-selected-material-green {
  1349. background-image: url('images/material-icon-up.png');
  1350. background-repeat: no-repeat;
  1351. background-position: center;
  1352. }
  1353. .jqx-scrollbar-button-state-pressed-material-green .jqx-icon-arrow-down-selected-material-green {
  1354. background-image: url('images/material-icon-down.png');
  1355. background-repeat: no-repeat;
  1356. background-position: center;
  1357. }
  1358. .jqx-scrollbar-button-state-pressed-material-green .jqx-icon-arrow-left-selected-material-green {
  1359. background-image: url('images/material-icon-left.png');
  1360. background-repeat: no-repeat;
  1361. background-position: center;
  1362. }
  1363. .jqx-scrollbar-button-state-pressed-material-green .jqx-icon-arrow-right-selected-material-green {
  1364. background-image: url('images/material-icon-right.png');
  1365. background-repeat: no-repeat;
  1366. background-position: center;
  1367. }
  1368. .jqx-grid-cell-material-green.jqx-grid-cell-selected-material-green > .jqx-grid-group-expand-material-green {
  1369. background-image: url('images/material-icon-down.png');
  1370. background-repeat: no-repeat;
  1371. background-position: center;
  1372. }
  1373. .jqx-grid-cell-material-green.jqx-grid-cell-selected-material-green > .jqx-grid-group-collapse-material-green {
  1374. background-image: url('images/material-icon-right.png');
  1375. background-repeat: no-repeat;
  1376. background-position: center;
  1377. }
  1378. .jqx-grid-cell-material-green.jqx-grid-cell-selected-material-green > .jqx-grid-group-collapse-rtl-material-green {
  1379. background-image: url('images/material-icon-left.png');
  1380. background-repeat: no-repeat;
  1381. background-position: center;
  1382. }
  1383. .jqx-grid-cell-material-green.jqx-grid-cell-selected-material-green > .jqx-grid-group-expand-rtl-material-green {
  1384. background-image: url('images/material-icon-down.png');
  1385. background-repeat: no-repeat;
  1386. background-position: center;
  1387. }
  1388. .jqx-grid-group-collapse-material-green {
  1389. background-image: url(images/material-icon-right.png);
  1390. background-position: 50% 50%;
  1391. background-repeat: no-repeat;
  1392. }
  1393. .jqx-grid-group-collapse-rtl-material-green {
  1394. padding-right: 0px;
  1395. background-image: url(images/material-icon-left.png);
  1396. background-position: 50% 50%;
  1397. background-repeat: no-repeat;
  1398. }
  1399. .jqx-grid-group-expand-material-green, .jqx-grid-group-expand-rtl-material-green {
  1400. padding-right: 0px;
  1401. background-image: url(images/material-icon-down.png);
  1402. background-position: 50% 50%;
  1403. background-repeat: no-repeat;
  1404. }
  1405. .jqx-grid-cell-filter-row-material-green {
  1406. background-color: #fafafa;
  1407. }
  1408. .jqx-icon-arrow-first-material-green {
  1409. background-image: url('images/material-icon-first.png');
  1410. background-repeat: no-repeat;
  1411. background-position: center;
  1412. }
  1413. .jqx-icon-arrow-last-material-green {
  1414. background-image: url('images/material-icon-last.png');
  1415. background-repeat: no-repeat;
  1416. background-position: center;
  1417. }
  1418. .jqx-icon-arrow-first-hover-material-green {
  1419. background-image: url('images/material-icon-first.png');
  1420. background-repeat: no-repeat;
  1421. background-position: center;
  1422. }
  1423. .jqx-icon-arrow-last-hover-material-green {
  1424. background-image: url('images/material-icon-last.png');
  1425. background-repeat: no-repeat;
  1426. background-position: center;
  1427. }
  1428. .jqx-icon-arrow-first-selected-material-green {
  1429. background-image: url('images/material-icon-first.png');
  1430. background-repeat: no-repeat;
  1431. background-position: center;
  1432. }
  1433. .jqx-icon-arrow-last-selected-material-green {
  1434. background-image: url('images/material-icon-last.png');
  1435. background-repeat: no-repeat;
  1436. background-position: center;
  1437. }
  1438. .jqx-fill-state-pressed-material-green .jqx-icon-arrow-first-selected-material-green {
  1439. background-image: url('images/material-icon-first-white.png');
  1440. background-repeat: no-repeat;
  1441. background-position: center;
  1442. }
  1443. .jqx-fill-state-pressed-material-green .jqx-icon-arrow-last-selected-material-green {
  1444. background-image: url('images/material-icon-last-white.png');
  1445. background-repeat: no-repeat;
  1446. background-position: center;
  1447. }
  1448. .jqx-fill-state-pressed-material-green .jqx-icon-arrow-left-selected-material-green {
  1449. background-image: url('images/material-icon-left-white.png');
  1450. background-repeat: no-repeat;
  1451. background-position: center;
  1452. }
  1453. .jqx-fill-state-pressed-material-green .jqx-icon-arrow-right-selected-material-green {
  1454. background-image: url('images/material-icon-right-white.png');
  1455. background-repeat: no-repeat;
  1456. background-position: center;
  1457. }
  1458. .jqx-primary .jqx-icon-arrow-down-material-green, .jqx-warning .jqx-icon-arrow-down-material-green, .jqx-danger .jqx-icon-arrow-down-material-green, .jqx-success .jqx-icon-arrow-down-material-green, .jqx-info .jqx-icon-arrow-down-material-green {
  1459. background-image: url('images/material-icon-down.png');
  1460. }
  1461. .jqx-primary .jqx-icon-arrow-down-selected-material-green, .jqx-warning .jqx-icon-arrow-down-selected-material-green, .jqx-danger .jqx-icon-arrow-down-selected-material-green, .jqx-success .jqx-icon-arrow-down-selected-material-green, .jqx-info .jqx-icon-arrow-down-selected-material-green {
  1462. background-image: url('images/material-icon-down.png');
  1463. }
  1464. .jqx-primary .jqx-icon-arrow-down-hover-material-green, .jqx-warning .jqx-icon-arrow-down-hover-material-green, .jqx-danger .jqx-icon-arrow-down-hover-material-green, .jqx-success .jqx-icon-arrow-down-hover-material-green, .jqx-info .jqx-icon-arrow-down-hover-material-green {
  1465. background-image: url('images/material-icon-down.png');
  1466. }
  1467. .jqx-primary .jqx-icon-arrow-up-material-green, .jqx-warning .jqx-icon-arrow-up-material-green, .jqx-danger .jqx-icon-arrow-up-material-green, .jqx-success .jqx-icon-arrow-up-material-green, .jqx-info .jqx-icon-arrow-up-material-green {
  1468. background-image: url('images/material-icon-up.png');
  1469. }
  1470. .jqx-primary .jqx-icon-arrow-up-selected-material-green, .jqx-warning .jqx-icon-arrow-up-selected-material-green, .jqx-danger .jqx-icon-arrow-up-selected-material-green, .jqx-success .jqx-icon-arrow-up-selected-material-green, .jqx-info .jqx-icon-arrow-up-selected-material-green {
  1471. background-image: url('images/material-icon-up.png');
  1472. }
  1473. .jqx-primary .jqx-icon-arrow-up-hover-material-green, .jqx-warning .jqx-icon-arrow-up-hover-material-green, .jqx-danger .jqx-icon-arrow-up-hover-material-green, .jqx-success .jqx-icon-arrow-up-hover-material-green, .jqx-info .jqx-icon-arrow-up-hover-material-green {
  1474. background-image: url('images/material-icon-up.png');
  1475. }
  1476. .jqx-primary .jqx-icon-arrow-left-material-green, .jqx-warning .jqx-icon-arrow-left-material-green, .jqx-danger .jqx-icon-arrow-left-material-green, .jqx-success .jqx-icon-arrow-left-material-green, .jqx-info .jqx-icon-arrow-left-material-green {
  1477. background-image: url('images/material-icon-left.png');
  1478. }
  1479. .jqx-primary .jqx-icon-arrow-left-selected-material-green, .jqx-warning .jqx-icon-arrow-left-selected-material-green, .jqx-danger .jqx-icon-arrow-left-selected-material-green, .jqx-success .jqx-icon-arrow-left-selected-material-green, .jqx-info .jqx-icon-arrow-left-selected-material-green {
  1480. background-image: url('images/material-icon-left.png');
  1481. }
  1482. .jqx-primary .jqx-icon-arrow-left-hover-material-green, .jqx-warning .jqx-icon-arrow-left-hover-material-green, .jqx-danger .jqx-icon-arrow-left-hover-material-green, .jqx-success .jqx-icon-arrow-left-hover-material-green, .jqx-info .jqx-icon-arrow-left-hover-material-green {
  1483. background-image: url('images/material-icon-left.png');
  1484. }
  1485. .jqx-primary .jqx-icon-arrow-right-material-green, .jqx-warning .jqx-icon-arrow-right-material-green, .jqx-danger .jqx-icon-arrow-right-material-green, .jqx-success .jqx-icon-arrow-right-material-green, .jqx-info .jqx-icon-arrow-right-material-green {
  1486. background-image: url('images/material-icon-right.png');
  1487. }
  1488. .jqx-primary .jqx-icon-arrow-right-selected-material-green, .jqx-warning .jqx-icon-arrow-right-selected-material-green, .jqx-danger .jqx-icon-arrow-right-selected-material-green, .jqx-success .jqx-icon-arrow-right-selected-material-green, .jqx-info .jqx-icon-arrow-right-selected-material-green {
  1489. background-image: url('images/material-icon-right.png');
  1490. }
  1491. .jqx-primary .jqx-icon-arrow-right-hover-material-green, .jqx-warning .jqx-icon-arrow-right-hover-material-green, .jqx-danger .jqx-icon-arrow-right-hover-material-green, .jqx-success .jqx-icon-arrow-right-hover-material-green, .jqx-info .jqx-icon-arrow-right-hover-material-green {
  1492. background-image: url('images/material-icon-right.png');
  1493. }
  1494. /* Ripple effect */
  1495. .ripple {
  1496. position: relative;
  1497. transform: translate3d(0, 0, 0);
  1498. overflow:hidden;
  1499. }
  1500. .ink {
  1501. display: block;
  1502. position: absolute;
  1503. pointer-events: none;
  1504. border-radius: 0%;
  1505. transform: scaleX(0);
  1506. background: rgba(85,139,47,0.5);
  1507. opacity: 0.25;
  1508. }
  1509. .outlined .ink, .flat .ink {
  1510. background: rgba(85,139,47,0.5);
  1511. overflow:hidden;
  1512. }
  1513. .ink.animate {
  1514. animation: ripple .7s ease;
  1515. animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  1516. }
  1517. .jqx-checkbox-material-green .ripple,
  1518. .jqx-radiobutton-material-green .ripple
  1519. {
  1520. overflow:visible;
  1521. }
  1522. .jqx-checkbox-material-green .ink,
  1523. .jqx-radiobutton-material-green .ink
  1524. {
  1525. transform: scale(0);
  1526. background: #558B2F;
  1527. border-radius: 50%;
  1528. }
  1529. .jqx-checkbox-material-green .ink.animate,
  1530. .jqx-radiobutton-material-green .ink.animate
  1531. {
  1532. animation: checkRipple 0.3s ease;
  1533. animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  1534. }
  1535. .jqx-checkbox-material-green .ink.active,
  1536. .jqx-radiobutton-material-green .ink.active
  1537. {
  1538. opacity: 0.2;
  1539. transform: scale(2);
  1540. }
  1541. .jqx-checkbox-default-material-green.active .ink,
  1542. .jqx-radiobutton-default-material-green.active .ink
  1543. {
  1544. opacity: 0.2;
  1545. transform: scale(2);
  1546. }
  1547. /* Ripple effect */
  1548. .buttonRipple {
  1549. background-position: center;
  1550. transition: background 0.8s;
  1551. }
  1552. .buttonRipple:hover {
  1553. background: #558B2F radial-gradient(circle, transparent 1%, #558B2F 1%) center/15000%;
  1554. }
  1555. .buttonRipple:active {
  1556. background-color: #ECE0FD;
  1557. background-size: 100%;
  1558. transition: background 0s;
  1559. }
  1560. .buttonRipple:active:not(:hover) {
  1561. color: #333;
  1562. }
  1563. @keyframes ripple {
  1564. 100% {
  1565. opacity: 0;
  1566. transform: scale(5);
  1567. animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  1568. }
  1569. }
  1570. @keyframes checkRipple {
  1571. 100% {
  1572. opacity: 0.2;
  1573. transform: scale(2);
  1574. animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  1575. }
  1576. }
  1577. .jqx-fill-state-pressed-material-green .jqx-icon-delete-material-green
  1578. {
  1579. background-image: url('images/icon-delete-white.png');
  1580. }
  1581. .jqx-fill-state-pressed-material-green .jqx-icon-edit-material-green
  1582. {
  1583. background-image: url('images/icon-edit-white.png');
  1584. }
  1585. .jqx-fill-state-pressed-material-green .jqx-icon-save-material-green
  1586. {
  1587. background-image: url('images/icon-save-white.png');
  1588. }
  1589. .jqx-fill-state-pressed-material-green .jqx-icon-cancel-material-green
  1590. {
  1591. background-image: url('images/icon-cancel-white.png');
  1592. }
  1593. .jqx-fill-state-pressed-material-green .jqx-icon-search-material-green
  1594. {
  1595. background-image: url(images/search_white.png);
  1596. }
  1597. .jqx-fill-state-pressed-material-green .jqx-icon-plus-material-green
  1598. {
  1599. background-image: url(images/plus_white.png);
  1600. }
  1601. .jqx-fill-state-pressed-material-green .jqx-menu-minimized-button-material-green {
  1602. background-image: url('images/icon-menu-minimized-white.png');
  1603. }
  1604. .jqx-fill-state-hover-material-green .jqx-editor-toolbar-icon-material-green, .jqx-fill-state-pressed-material-green .jqx-editor-toolbar-icon-material-green {
  1605. background: url('images/html_editor_white.png') no-repeat;
  1606. }
  1607. .jqx-fill-state-hover-material-green .jqx-editor-toolbar-icon-fontsize-material-green,
  1608. .jqx-fill-state-pressed-material-green .jqx-editor-toolbar-icon-fontsize-material-green,
  1609. .jqx-fill-state-hover-material-green .jqx-editor-toolbar-icon-forecolor-material-green,
  1610. .jqx-fill-state-pressed-material-green .jqx-editor-toolbar-icon-forecolor-material-green
  1611. {
  1612. background: url('images/html_editor.png') no-repeat;
  1613. }
  1614. .jqx-editor-toolbar-button-material-green {
  1615. border-color: #ddd;
  1616. box-shadow: none !important;
  1617. color: #333;
  1618. }
  1619. /*applied to the timepicker*/
  1620. .jqx-needle-central-circle-material-green {
  1621. fill: rgb(85, 139, 47);
  1622. }
  1623. .jqx-needle-material-green {
  1624. fill: rgb(85, 139, 47);
  1625. }
  1626. .jqx-time-picker .jqx-header .jqx-selected-material-green:focus {
  1627. outline: 2px solid rgba(85, 139, 47, 0.5);
  1628. box-shadow: 0px 0px 4px 2px rgba(85, 139, 47, 0.125);
  1629. }
  1630. .jqx-svg-picker-material-green:focus {
  1631. border: 1px solid rgb(85, 139, 47) !important;
  1632. }