easyui.css 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435
  1. .panel {
  2. overflow: hidden;
  3. text-align: left;
  4. margin: 0;
  5. border: 0;
  6. -moz-border-radius: 0 0 0 0;
  7. -webkit-border-radius: 0 0 0 0;
  8. border-radius: 0 0 0 0;
  9. }
  10. .panel-header,
  11. .panel-body {
  12. border-width: 1px;
  13. border-style: solid;
  14. }
  15. .panel-header {
  16. padding: 5px;
  17. position: relative;
  18. }
  19. .panel-title {
  20. background: url('images/blank.gif') no-repeat;
  21. }
  22. .panel-header-noborder {
  23. border-width: 0 0 1px 0;
  24. }
  25. .panel-body {
  26. overflow: auto;
  27. border-top-width: 0;
  28. padding: 0;
  29. }
  30. .panel-body-noheader {
  31. border-top-width: 1px;
  32. }
  33. .panel-body-noborder {
  34. border-width: 0px;
  35. }
  36. .panel-body-nobottom {
  37. border-bottom-width: 0;
  38. }
  39. .panel-with-icon {
  40. padding-left: 18px;
  41. }
  42. .panel-icon,
  43. .panel-tool {
  44. position: absolute;
  45. top: 50%;
  46. margin-top: -8px;
  47. height: 16px;
  48. overflow: hidden;
  49. }
  50. .panel-icon {
  51. left: 5px;
  52. width: 16px;
  53. }
  54. .panel-tool {
  55. right: 5px;
  56. width: auto;
  57. }
  58. .panel-tool a {
  59. display: inline-block;
  60. width: 16px;
  61. height: 16px;
  62. opacity: 0.6;
  63. filter: alpha(opacity=60);
  64. margin: 0 0 0 2px;
  65. vertical-align: top;
  66. }
  67. .panel-tool a:hover {
  68. opacity: 1;
  69. filter: alpha(opacity=100);
  70. background-color: #eaf2ff;
  71. -moz-border-radius: 3px 3px 3px 3px;
  72. -webkit-border-radius: 3px 3px 3px 3px;
  73. border-radius: 3px 3px 3px 3px;
  74. }
  75. .panel-loading {
  76. padding: 11px 0px 10px 30px;
  77. }
  78. .panel-noscroll {
  79. overflow: hidden;
  80. }
  81. .panel-fit,
  82. .panel-fit body {
  83. height: 100%;
  84. margin: 0;
  85. padding: 0;
  86. border: 0;
  87. overflow: hidden;
  88. }
  89. .panel-loading {
  90. background: url('images/loading.gif') no-repeat 10px 10px;
  91. }
  92. .panel-tool-close {
  93. background: url('images/panel_tools.png') no-repeat -16px 0px;
  94. }
  95. .panel-tool-min {
  96. background: url('images/panel_tools.png') no-repeat 0px 0px;
  97. }
  98. .panel-tool-max {
  99. background: url('images/panel_tools.png') no-repeat 0px -16px;
  100. }
  101. .panel-tool-restore {
  102. background: url('images/panel_tools.png') no-repeat -16px -16px;
  103. }
  104. .panel-tool-collapse {
  105. background: url('images/panel_tools.png') no-repeat -32px 0;
  106. }
  107. .panel-tool-expand {
  108. background: url('images/panel_tools.png') no-repeat -32px -16px;
  109. }
  110. .panel-header,
  111. .panel-body {
  112. border-color: #95B8E7;
  113. }
  114. .panel-header {
  115. background-color: #E0ECFF;
  116. background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  117. background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  118. background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  119. background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%);
  120. background-repeat: repeat-x;
  121. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);
  122. }
  123. .panel-body {
  124. background-color: #ffffff;
  125. color: #000000;
  126. font-size: 14px;
  127. }
  128. .panel-title {
  129. font-size: 14px;
  130. font-weight: bold;
  131. color: #0E2D5F;
  132. height: 20px;
  133. line-height: 20px;
  134. }
  135. .panel-footer {
  136. border: 1px solid #95B8E7;
  137. overflow: hidden;
  138. background: #F4F4F4;
  139. }
  140. .panel-footer-noborder {
  141. border-width: 1px 0 0 0;
  142. }
  143. .panel-hleft,
  144. .panel-hright {
  145. position: relative;
  146. }
  147. .panel-hleft>.panel-body,
  148. .panel-hright>.panel-body {
  149. position: absolute;
  150. }
  151. .panel-hleft>.panel-header {
  152. float: left;
  153. }
  154. .panel-hright>.panel-header {
  155. float: right;
  156. }
  157. .panel-hleft>.panel-body {
  158. border-top-width: 1px;
  159. border-left-width: 0;
  160. }
  161. .panel-hright>.panel-body {
  162. border-top-width: 1px;
  163. border-right-width: 0;
  164. }
  165. .panel-hleft>.panel-body-nobottom {
  166. border-bottom-width: 1px;
  167. border-right-width: 0;
  168. }
  169. .panel-hright>.panel-body-nobottom {
  170. border-bottom-width: 1px;
  171. border-left-width: 0;
  172. }
  173. .panel-hleft>.panel-footer {
  174. position: absolute;
  175. right: 0;
  176. }
  177. .panel-hright>.panel-footer {
  178. position: absolute;
  179. left: 0;
  180. }
  181. .panel-hleft>.panel-header-noborder {
  182. border-width: 0 1px 0 0;
  183. }
  184. .panel-hright>.panel-header-noborder {
  185. border-width: 0 0 0 1px;
  186. }
  187. .panel-hleft>.panel-body-noborder {
  188. border-width: 0;
  189. }
  190. .panel-hright>.panel-body-noborder {
  191. border-width: 0;
  192. }
  193. .panel-hleft>.panel-body-noheader {
  194. border-left-width: 1px;
  195. }
  196. .panel-hright>.panel-body-noheader {
  197. border-right-width: 1px;
  198. }
  199. .panel-hleft>.panel-footer-noborder {
  200. border-width: 0 0 0 1px;
  201. }
  202. .panel-hright>.panel-footer-noborder {
  203. border-width: 0 1px 0 0;
  204. }
  205. .panel-hleft>.panel-header .panel-icon,
  206. .panel-hright>.panel-header .panel-icon {
  207. margin-top: 0;
  208. top: 5px;
  209. left: 50%;
  210. margin-left: -8px;
  211. }
  212. .panel-hleft>.panel-header .panel-title,
  213. .panel-hright>.panel-header .panel-title {
  214. position: absolute;
  215. min-width: 16px;
  216. left: 25px;
  217. top: 5px;
  218. bottom: auto;
  219. white-space: nowrap;
  220. word-wrap: normal;
  221. -webkit-transform: rotate(90deg);
  222. -webkit-transform-origin: 0 0;
  223. -moz-transform: rotate(90deg);
  224. -moz-transform-origin: 0 0;
  225. -o-transform: rotate(90deg);
  226. -o-transform-origin: 0 0;
  227. transform: rotate(90deg);
  228. transform-origin: 0 0;
  229. }
  230. .panel-hleft>.panel-header .panel-title-up,
  231. .panel-hright>.panel-header .panel-title-up {
  232. position: absolute;
  233. min-width: 16px;
  234. left: 21px;
  235. top: auto;
  236. bottom: 0px;
  237. text-align: right;
  238. white-space: nowrap;
  239. word-wrap: normal;
  240. -webkit-transform: rotate(-90deg);
  241. -webkit-transform-origin: 0 0;
  242. -moz-transform: rotate(-90deg);
  243. -moz-transform-origin: 0 0;
  244. -o-transform: rotate(-90deg);
  245. -o-transform-origin: 0 0;
  246. transform: rotate(-90deg);
  247. transform-origin: 0 16px;
  248. }
  249. .panel-hleft>.panel-header .panel-with-icon.panel-title-up,
  250. .panel-hright>.panel-header .panel-with-icon.panel-title-up {
  251. padding-left: 0;
  252. padding-right: 18px;
  253. }
  254. .panel-hleft>.panel-header .panel-tool,
  255. .panel-hright>.panel-header .panel-tool {
  256. top: auto;
  257. bottom: 5px;
  258. width: 16px;
  259. height: auto;
  260. left: 50%;
  261. margin-left: -8px;
  262. margin-top: 0;
  263. }
  264. .panel-hleft>.panel-header .panel-tool a,
  265. .panel-hright>.panel-header .panel-tool a {
  266. margin: 2px 0 0 0;
  267. }
  268. .accordion {
  269. overflow: hidden;
  270. border-width: 1px;
  271. border-style: solid;
  272. }
  273. .accordion .accordion-header {
  274. border-width: 0 0 1px;
  275. cursor: pointer;
  276. }
  277. .accordion .accordion-body {
  278. border-width: 0 0 1px;
  279. }
  280. .accordion-noborder {
  281. border-width: 0;
  282. }
  283. .accordion-noborder .accordion-header {
  284. border-width: 0 0 1px;
  285. }
  286. .accordion-noborder .accordion-body {
  287. border-width: 0 0 1px;
  288. }
  289. .accordion-collapse {
  290. background: url('images/accordion_arrows.png') no-repeat 0 0;
  291. }
  292. .accordion-expand {
  293. background: url('images/accordion_arrows.png') no-repeat -16px 0;
  294. }
  295. .accordion {
  296. background: #ffffff;
  297. border-color: #95B8E7;
  298. }
  299. .accordion .accordion-header {
  300. background: #E0ECFF;
  301. filter: none;
  302. }
  303. .accordion .accordion-header-selected {
  304. background: #ffe48d;
  305. }
  306. .accordion .accordion-header-selected .panel-title {
  307. color: #000000;
  308. }
  309. .accordion .panel-last > .accordion-header {
  310. border-bottom-color: #E0ECFF;
  311. }
  312. .accordion .panel-last > .accordion-body {
  313. border-bottom-color: #ffffff;
  314. }
  315. .accordion .panel-last > .accordion-header-selected,
  316. .accordion .panel-last > .accordion-header-border {
  317. border-bottom-color: #95B8E7;
  318. }
  319. .accordion> .panel-hleft {
  320. float: left;
  321. }
  322. .accordion> .panel-hleft>.panel-header {
  323. border-width: 0 1px 0 0;
  324. }
  325. .accordion> .panel-hleft> .panel-body {
  326. border-width: 0 1px 0 0;
  327. }
  328. .accordion> .panel-hleft.panel-last > .accordion-header {
  329. border-right-color: #E0ECFF;
  330. }
  331. .accordion> .panel-hleft.panel-last > .accordion-body {
  332. border-right-color: #ffffff;
  333. }
  334. .accordion> .panel-hleft.panel-last > .accordion-header-selected,
  335. .accordion> .panel-hleft.panel-last > .accordion-header-border {
  336. border-right-color: #95B8E7;
  337. }
  338. .accordion> .panel-hright {
  339. float: right;
  340. }
  341. .accordion> .panel-hright>.panel-header {
  342. border-width: 0 0 0 1px;
  343. }
  344. .accordion> .panel-hright> .panel-body {
  345. border-width: 0 0 0 1px;
  346. }
  347. .accordion> .panel-hright.panel-last > .accordion-header {
  348. border-left-color: #E0ECFF;
  349. }
  350. .accordion> .panel-hright.panel-last > .accordion-body {
  351. border-left-color: #ffffff;
  352. }
  353. .accordion> .panel-hright.panel-last > .accordion-header-selected,
  354. .accordion> .panel-hright.panel-last > .accordion-header-border {
  355. border-left-color: #95B8E7;
  356. }
  357. .window {
  358. overflow: hidden;
  359. padding: 5px;
  360. border-width: 1px;
  361. border-style: solid;
  362. }
  363. .window .window-header {
  364. background: transparent;
  365. padding: 0px 0px 6px 0px;
  366. }
  367. .window .window-body {
  368. border-width: 1px;
  369. border-style: solid;
  370. border-top-width: 0px;
  371. }
  372. .window .window-body-noheader {
  373. border-top-width: 1px;
  374. }
  375. .window .panel-body-nobottom {
  376. border-bottom-width: 0;
  377. }
  378. .window .window-header .panel-icon,
  379. .window .window-header .panel-tool {
  380. top: 50%;
  381. margin-top: -11px;
  382. }
  383. .window .window-header .panel-icon {
  384. left: 1px;
  385. }
  386. .window .window-header .panel-tool {
  387. right: 1px;
  388. }
  389. .window .window-header .panel-with-icon {
  390. padding-left: 18px;
  391. }
  392. .window-proxy {
  393. position: absolute;
  394. overflow: hidden;
  395. }
  396. .window-proxy-mask {
  397. position: absolute;
  398. filter: alpha(opacity=5);
  399. opacity: 0.05;
  400. }
  401. .window-mask {
  402. position: absolute;
  403. left: 0;
  404. top: 0;
  405. width: 100%;
  406. height: 100%;
  407. filter: alpha(opacity=40);
  408. opacity: 0.40;
  409. font-size: 1px;
  410. overflow: hidden;
  411. }
  412. .window,
  413. .window-shadow {
  414. position: absolute;
  415. -moz-border-radius: 5px 5px 5px 5px;
  416. -webkit-border-radius: 5px 5px 5px 5px;
  417. border-radius: 5px 5px 5px 5px;
  418. }
  419. .window-shadow {
  420. background: #ccc;
  421. -moz-box-shadow: 2px 2px 3px #cccccc;
  422. -webkit-box-shadow: 2px 2px 3px #cccccc;
  423. box-shadow: 2px 2px 3px #cccccc;
  424. filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
  425. }
  426. .window,
  427. .window .window-body {
  428. border-color: #95B8E7;
  429. }
  430. .window {
  431. background-color: #E0ECFF;
  432. background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
  433. background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
  434. background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 20%);
  435. background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 20%);
  436. background-repeat: repeat-x;
  437. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);
  438. }
  439. .window-proxy {
  440. border: 1px dashed #95B8E7;
  441. }
  442. .window-proxy-mask,
  443. .window-mask {
  444. background: #ccc;
  445. }
  446. .window .panel-footer {
  447. border: 1px solid #95B8E7;
  448. position: relative;
  449. top: -1px;
  450. }
  451. .window-thinborder {
  452. padding: 0;
  453. }
  454. .window-thinborder .window-header {
  455. padding: 5px 5px 6px 5px;
  456. }
  457. .window-thinborder .window-body {
  458. border-width: 0px;
  459. }
  460. .window-thinborder .window-footer {
  461. border-left: transparent;
  462. border-right: transparent;
  463. border-bottom: transparent;
  464. }
  465. .window-thinborder .window-header .panel-icon,
  466. .window-thinborder .window-header .panel-tool {
  467. margin-top: -9px;
  468. margin-left: 5px;
  469. margin-right: 5px;
  470. }
  471. .window-noborder {
  472. border: 0;
  473. }
  474. .window.panel-hleft .window-header {
  475. padding: 0 6px 0 0;
  476. }
  477. .window.panel-hright .window-header {
  478. padding: 0 0 0 6px;
  479. }
  480. .window.panel-hleft>.panel-header .panel-title {
  481. top: auto;
  482. left: 16px;
  483. }
  484. .window.panel-hright>.panel-header .panel-title {
  485. top: auto;
  486. right: 16px;
  487. }
  488. .window.panel-hleft>.panel-header .panel-title-up,
  489. .window.panel-hright>.panel-header .panel-title-up {
  490. bottom: 0;
  491. }
  492. .window.panel-hleft .window-body {
  493. border-width: 1px 1px 1px 0;
  494. }
  495. .window.panel-hright .window-body {
  496. border-width: 1px 0 1px 1px;
  497. }
  498. .window.panel-hleft .window-header .panel-icon {
  499. top: 1px;
  500. margin-top: 0;
  501. left: 0;
  502. }
  503. .window.panel-hright .window-header .panel-icon {
  504. top: 1px;
  505. margin-top: 0;
  506. left: auto;
  507. right: 1px;
  508. }
  509. .window.panel-hleft .window-header .panel-tool,
  510. .window.panel-hright .window-header .panel-tool {
  511. margin-top: 0;
  512. top: auto;
  513. bottom: 1px;
  514. right: auto;
  515. margin-right: 0;
  516. left: 50%;
  517. margin-left: -11px;
  518. }
  519. .window.panel-hright .window-header .panel-tool {
  520. left: auto;
  521. right: 1px;
  522. }
  523. .window-thinborder.panel-hleft .window-header {
  524. padding: 5px 6px 5px 5px;
  525. }
  526. .window-thinborder.panel-hright .window-header {
  527. padding: 5px 5px 5px 6px;
  528. }
  529. .window-thinborder.panel-hleft>.panel-header .panel-title {
  530. left: 21px;
  531. }
  532. .window-thinborder.panel-hleft>.panel-header .panel-title-up,
  533. .window-thinborder.panel-hright>.panel-header .panel-title-up {
  534. bottom: 5px;
  535. }
  536. .window-thinborder.panel-hleft .window-header .panel-icon,
  537. .window-thinborder.panel-hright .window-header .panel-icon {
  538. margin-top: 5px;
  539. }
  540. .window-thinborder.panel-hleft .window-header .panel-tool,
  541. .window-thinborder.panel-hright .window-header .panel-tool {
  542. left: 16px;
  543. bottom: 5px;
  544. }
  545. .dialog-content {
  546. overflow: auto;
  547. }
  548. .dialog-toolbar {
  549. position: relative;
  550. padding: 2px 5px;
  551. }
  552. .dialog-tool-separator {
  553. float: left;
  554. height: 24px;
  555. border-left: 1px solid #ccc;
  556. border-right: 1px solid #fff;
  557. margin: 2px 1px;
  558. }
  559. .dialog-button {
  560. position: relative;
  561. top: -1px;
  562. padding: 5px;
  563. text-align: right;
  564. }
  565. .dialog-button .l-btn {
  566. margin-left: 5px;
  567. }
  568. .dialog-toolbar,
  569. .dialog-button {
  570. background: #F4F4F4;
  571. border-width: 1px;
  572. border-style: solid;
  573. }
  574. .dialog-toolbar {
  575. border-color: #95B8E7 #95B8E7 #dddddd #95B8E7;
  576. }
  577. .dialog-button {
  578. border-color: #dddddd #95B8E7 #95B8E7 #95B8E7;
  579. }
  580. .window-thinborder .dialog-toolbar {
  581. border-left: transparent;
  582. border-right: transparent;
  583. border-top-color: #F4F4F4;
  584. }
  585. .window-thinborder .dialog-button {
  586. top: 0px;
  587. padding: 5px 8px 8px 8px;
  588. border-left: transparent;
  589. border-right: transparent;
  590. border-bottom: transparent;
  591. }
  592. .l-btn {
  593. text-decoration: none;
  594. display: inline-block;
  595. overflow: hidden;
  596. margin: 0;
  597. padding: 0;
  598. cursor: pointer;
  599. outline: none;
  600. text-align: center;
  601. vertical-align: middle;
  602. line-height: normal;
  603. }
  604. .l-btn-plain {
  605. border-width: 0;
  606. padding: 1px;
  607. }
  608. .l-btn-left {
  609. display: inline-block;
  610. position: relative;
  611. overflow: hidden;
  612. margin: 0;
  613. padding: 0;
  614. vertical-align: top;
  615. }
  616. .l-btn-text {
  617. display: inline-block;
  618. vertical-align: top;
  619. width: auto;
  620. line-height: 28px;
  621. font-size: 14px;
  622. padding: 0;
  623. margin: 0 6px;
  624. }
  625. .l-btn-icon {
  626. display: inline-block;
  627. width: 16px;
  628. height: 16px;
  629. line-height: 16px;
  630. position: absolute;
  631. top: 50%;
  632. margin-top: -8px;
  633. font-size: 1px;
  634. }
  635. .l-btn span span .l-btn-empty {
  636. display: inline-block;
  637. margin: 0;
  638. width: 16px;
  639. height: 24px;
  640. font-size: 1px;
  641. vertical-align: top;
  642. }
  643. .l-btn span .l-btn-icon-left {
  644. padding: 0 0 0 20px;
  645. background-position: left center;
  646. }
  647. .l-btn span .l-btn-icon-right {
  648. padding: 0 20px 0 0;
  649. background-position: right center;
  650. }
  651. .l-btn-icon-left .l-btn-text {
  652. margin: 0 6px 0 26px;
  653. }
  654. .l-btn-icon-left .l-btn-icon {
  655. left: 6px;
  656. }
  657. .l-btn-icon-right .l-btn-text {
  658. margin: 0 26px 0 6px;
  659. }
  660. .l-btn-icon-right .l-btn-icon {
  661. right: 6px;
  662. }
  663. .l-btn-icon-top .l-btn-text {
  664. margin: 20px 4px 0 4px;
  665. }
  666. .l-btn-icon-top .l-btn-icon {
  667. top: 4px;
  668. left: 50%;
  669. margin: 0 0 0 -8px;
  670. }
  671. .l-btn-icon-bottom .l-btn-text {
  672. margin: 0 4px 20px 4px;
  673. }
  674. .l-btn-icon-bottom .l-btn-icon {
  675. top: auto;
  676. bottom: 4px;
  677. left: 50%;
  678. margin: 0 0 0 -8px;
  679. }
  680. .l-btn-left .l-btn-empty {
  681. margin: 0 6px;
  682. width: 16px;
  683. }
  684. .l-btn-plain:hover {
  685. padding: 0;
  686. }
  687. .l-btn-focus {
  688. outline: #0000FF dotted thin;
  689. }
  690. .l-btn-large .l-btn-text {
  691. line-height: 44px;
  692. }
  693. .l-btn-large .l-btn-icon {
  694. width: 32px;
  695. height: 32px;
  696. line-height: 32px;
  697. margin-top: -16px;
  698. }
  699. .l-btn-large .l-btn-icon-left .l-btn-text {
  700. margin-left: 40px;
  701. }
  702. .l-btn-large .l-btn-icon-right .l-btn-text {
  703. margin-right: 40px;
  704. }
  705. .l-btn-large .l-btn-icon-top .l-btn-text {
  706. margin-top: 36px;
  707. line-height: 24px;
  708. min-width: 32px;
  709. }
  710. .l-btn-large .l-btn-icon-top .l-btn-icon {
  711. margin: 0 0 0 -16px;
  712. }
  713. .l-btn-large .l-btn-icon-bottom .l-btn-text {
  714. margin-bottom: 36px;
  715. line-height: 24px;
  716. min-width: 32px;
  717. }
  718. .l-btn-large .l-btn-icon-bottom .l-btn-icon {
  719. margin: 0 0 0 -16px;
  720. }
  721. .l-btn-large .l-btn-left .l-btn-empty {
  722. margin: 0 6px;
  723. width: 32px;
  724. }
  725. .l-btn {
  726. color: #444;
  727. background: #fafafa;
  728. background-repeat: repeat-x;
  729. border: 1px solid #bbb;
  730. background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  731. background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  732. background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  733. background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%);
  734. background-repeat: repeat-x;
  735. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0);
  736. -moz-border-radius: 5px 5px 5px 5px;
  737. -webkit-border-radius: 5px 5px 5px 5px;
  738. border-radius: 5px 5px 5px 5px;
  739. }
  740. .l-btn:hover {
  741. background: #eaf2ff;
  742. color: #000000;
  743. border: 1px solid #b7d2ff;
  744. filter: none;
  745. }
  746. .l-btn-plain {
  747. background: transparent;
  748. border-width: 0;
  749. filter: none;
  750. }
  751. .l-btn-outline {
  752. border-width: 1px;
  753. border-color: #b7d2ff;
  754. padding: 0;
  755. }
  756. .l-btn-plain:hover {
  757. background: #eaf2ff;
  758. color: #000000;
  759. border: 1px solid #b7d2ff;
  760. -moz-border-radius: 5px 5px 5px 5px;
  761. -webkit-border-radius: 5px 5px 5px 5px;
  762. border-radius: 5px 5px 5px 5px;
  763. }
  764. .l-btn-disabled,
  765. .l-btn-disabled:hover {
  766. opacity: 0.5;
  767. cursor: default;
  768. background: #fafafa;
  769. color: #444;
  770. background: -webkit-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  771. background: -moz-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  772. background: -o-linear-gradient(top,#ffffff 0,#eeeeee 100%);
  773. background: linear-gradient(to bottom,#ffffff 0,#eeeeee 100%);
  774. background-repeat: repeat-x;
  775. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#eeeeee,GradientType=0);
  776. }
  777. .l-btn-disabled .l-btn-text,
  778. .l-btn-disabled .l-btn-icon {
  779. filter: alpha(opacity=50);
  780. }
  781. .l-btn-plain-disabled,
  782. .l-btn-plain-disabled:hover {
  783. background: transparent;
  784. filter: alpha(opacity=50);
  785. }
  786. .l-btn-selected,
  787. .l-btn-selected:hover {
  788. background: #ddd;
  789. filter: none;
  790. }
  791. .l-btn-plain-selected,
  792. .l-btn-plain-selected:hover {
  793. background: #ddd;
  794. }
  795. .textbox {
  796. position: relative;
  797. border: 1px solid #95B8E7;
  798. background-color: #fff;
  799. vertical-align: middle;
  800. display: inline-block;
  801. overflow: hidden;
  802. white-space: nowrap;
  803. margin: 0;
  804. padding: 0;
  805. -moz-border-radius: 5px 5px 5px 5px;
  806. -webkit-border-radius: 5px 5px 5px 5px;
  807. border-radius: 5px 5px 5px 5px;
  808. }
  809. .textbox .textbox-text {
  810. font-size: 14px;
  811. border: 0;
  812. margin: 0;
  813. padding: 0 4px;
  814. white-space: normal;
  815. vertical-align: top;
  816. outline-style: none;
  817. resize: none;
  818. -moz-border-radius: 5px 5px 5px 5px;
  819. -webkit-border-radius: 5px 5px 5px 5px;
  820. border-radius: 5px 5px 5px 5px;
  821. height: 28px;
  822. line-height: 28px;
  823. }
  824. .textbox textarea.textbox-text {
  825. line-height: normal;
  826. }
  827. .textbox .textbox-text::-ms-clear,
  828. .textbox .textbox-text::-ms-reveal {
  829. display: none;
  830. }
  831. .textbox textarea.textbox-text {
  832. white-space: pre-wrap;
  833. }
  834. .textbox .textbox-prompt {
  835. font-size: 14px;
  836. color: #aaa;
  837. }
  838. .textbox .textbox-bgicon {
  839. background-position: 3px center;
  840. padding-left: 21px;
  841. }
  842. .textbox .textbox-button,
  843. .textbox .textbox-button:hover {
  844. position: absolute;
  845. top: 0;
  846. padding: 0;
  847. vertical-align: top;
  848. -moz-border-radius: 0 0 0 0;
  849. -webkit-border-radius: 0 0 0 0;
  850. border-radius: 0 0 0 0;
  851. }
  852. .textbox .textbox-button-right,
  853. .textbox .textbox-button-right:hover {
  854. right: 0;
  855. border-width: 0 0 0 1px;
  856. }
  857. .textbox .textbox-button-left,
  858. .textbox .textbox-button-left:hover {
  859. left: 0;
  860. border-width: 0 1px 0 0;
  861. }
  862. .textbox .textbox-button-top,
  863. .textbox .textbox-button-top:hover {
  864. left: 0;
  865. border-width: 0 0 1px 0;
  866. }
  867. .textbox .textbox-button-bottom,
  868. .textbox .textbox-button-bottom:hover {
  869. top: auto;
  870. bottom: 0;
  871. left: 0;
  872. border-width: 1px 0 0 0;
  873. }
  874. .textbox-addon {
  875. position: absolute;
  876. top: 0;
  877. }
  878. .textbox-label {
  879. display: inline-block;
  880. width: 80px;
  881. height: 30px;
  882. line-height: 30px;
  883. vertical-align: middle;
  884. overflow: hidden;
  885. text-overflow: ellipsis;
  886. white-space: nowrap;
  887. margin: 0;
  888. padding-right: 5px;
  889. }
  890. .textbox-label-after {
  891. padding-left: 5px;
  892. padding-right: 0;
  893. }
  894. .textbox-label-top {
  895. display: block;
  896. width: auto;
  897. padding: 0;
  898. }
  899. .textbox-disabled,
  900. .textbox-label-disabled {
  901. opacity: 0.6;
  902. filter: alpha(opacity=60);
  903. }
  904. .textbox-icon {
  905. display: inline-block;
  906. width: 18px;
  907. height: 20px;
  908. overflow: hidden;
  909. vertical-align: top;
  910. background-position: center center;
  911. cursor: pointer;
  912. opacity: 0.6;
  913. filter: alpha(opacity=60);
  914. text-decoration: none;
  915. outline-style: none;
  916. }
  917. .textbox-icon-disabled,
  918. .textbox-icon-readonly {
  919. cursor: default;
  920. }
  921. .textbox-icon:hover {
  922. opacity: 1.0;
  923. filter: alpha(opacity=100);
  924. }
  925. .textbox-icon-disabled:hover {
  926. opacity: 0.6;
  927. filter: alpha(opacity=60);
  928. }
  929. .textbox-focused {
  930. border-color: #6b9cde;
  931. -moz-box-shadow: 0 0 3px 0 #95B8E7;
  932. -webkit-box-shadow: 0 0 3px 0 #95B8E7;
  933. box-shadow: 0 0 3px 0 #95B8E7;
  934. }
  935. .textbox-invalid {
  936. border-color: #ffa8a8;
  937. background-color: #fff3f3;
  938. }
  939. .passwordbox-open {
  940. background: url('images/passwordbox_open.png') no-repeat center center;
  941. }
  942. .passwordbox-close {
  943. background: url('images/passwordbox_close.png') no-repeat center center;
  944. }
  945. .filebox .textbox-value {
  946. vertical-align: top;
  947. position: absolute;
  948. top: 0;
  949. left: -5000px;
  950. }
  951. .filebox-label {
  952. display: inline-block;
  953. position: absolute;
  954. width: 100%;
  955. height: 100%;
  956. cursor: pointer;
  957. left: 0;
  958. top: 0;
  959. z-index: 10;
  960. background: url('images/blank.gif') no-repeat;
  961. }
  962. .l-btn-disabled .filebox-label {
  963. cursor: default;
  964. }
  965. .combo-arrow {
  966. width: 18px;
  967. height: 20px;
  968. overflow: hidden;
  969. display: inline-block;
  970. vertical-align: top;
  971. cursor: pointer;
  972. opacity: 0.6;
  973. filter: alpha(opacity=60);
  974. }
  975. .combo-arrow-hover {
  976. opacity: 1.0;
  977. filter: alpha(opacity=100);
  978. }
  979. .combo-panel {
  980. overflow: auto;
  981. }
  982. .combo-arrow {
  983. background: url('images/combo_arrow.png') no-repeat center center;
  984. }
  985. .combo-panel {
  986. background-color: #ffffff;
  987. }
  988. .combo-arrow {
  989. background-color: #E0ECFF;
  990. }
  991. .combo-arrow-hover {
  992. background-color: #eaf2ff;
  993. }
  994. .combo-arrow:hover {
  995. background-color: #eaf2ff;
  996. }
  997. .combo .textbox-icon-disabled:hover {
  998. cursor: default;
  999. }
  1000. .combobox-item,
  1001. .combobox-group,
  1002. .combobox-stick {
  1003. font-size: 14px;
  1004. padding: 6px 4px;
  1005. line-height: 20px;
  1006. }
  1007. .combobox-item-disabled {
  1008. opacity: 0.5;
  1009. filter: alpha(opacity=50);
  1010. }
  1011. .combobox-gitem {
  1012. padding-left: 10px;
  1013. }
  1014. .combobox-group,
  1015. .combobox-stick {
  1016. font-weight: bold;
  1017. }
  1018. .combobox-stick {
  1019. position: absolute;
  1020. top: 1px;
  1021. left: 1px;
  1022. right: 1px;
  1023. background: inherit;
  1024. }
  1025. .combobox-item-hover {
  1026. background-color: #eaf2ff;
  1027. color: #000000;
  1028. }
  1029. .combobox-item-selected {
  1030. background-color: #ffe48d;
  1031. color: #000000;
  1032. }
  1033. .combobox-icon {
  1034. display: inline-block;
  1035. width: 16px;
  1036. height: 16px;
  1037. vertical-align: middle;
  1038. margin-right: 2px;
  1039. }
  1040. .tagbox {
  1041. cursor: text;
  1042. }
  1043. .tagbox .textbox-text {
  1044. float: left;
  1045. }
  1046. .tagbox-label {
  1047. position: relative;
  1048. display: block;
  1049. margin: 4px 0 0 4px;
  1050. padding: 0 20px 0 4px;
  1051. float: left;
  1052. vertical-align: top;
  1053. text-decoration: none;
  1054. -moz-border-radius: 5px 5px 5px 5px;
  1055. -webkit-border-radius: 5px 5px 5px 5px;
  1056. border-radius: 5px 5px 5px 5px;
  1057. background: #eaf2ff;
  1058. color: #000000;
  1059. }
  1060. .tagbox-remove {
  1061. background: url('images/tagbox_icons.png') no-repeat -16px center;
  1062. position: absolute;
  1063. display: block;
  1064. width: 16px;
  1065. height: 16px;
  1066. right: 2px;
  1067. top: 50%;
  1068. margin-top: -8px;
  1069. opacity: 0.6;
  1070. filter: alpha(opacity=60);
  1071. }
  1072. .tagbox-remove:hover {
  1073. opacity: 1;
  1074. filter: alpha(opacity=100);
  1075. }
  1076. .textbox-disabled .tagbox-label {
  1077. cursor: default;
  1078. }
  1079. .textbox-disabled .tagbox-remove:hover {
  1080. cursor: default;
  1081. opacity: 0.6;
  1082. filter: alpha(opacity=60);
  1083. }
  1084. .layout {
  1085. position: relative;
  1086. overflow: hidden;
  1087. margin: 0;
  1088. padding: 0;
  1089. z-index: 0;
  1090. }
  1091. .layout-panel {
  1092. position: absolute;
  1093. overflow: hidden;
  1094. }
  1095. .layout-body {
  1096. min-width: 1px;
  1097. min-height: 1px;
  1098. }
  1099. .layout-panel-east,
  1100. .layout-panel-west {
  1101. z-index: 2;
  1102. }
  1103. .layout-panel-north,
  1104. .layout-panel-south {
  1105. z-index: 3;
  1106. }
  1107. .layout-expand {
  1108. position: absolute;
  1109. padding: 0px;
  1110. font-size: 1px;
  1111. cursor: pointer;
  1112. z-index: 1;
  1113. }
  1114. .layout-expand .panel-header,
  1115. .layout-expand .panel-body {
  1116. background: transparent;
  1117. filter: none;
  1118. overflow: hidden;
  1119. }
  1120. .layout-expand .panel-header {
  1121. border-bottom-width: 0px;
  1122. }
  1123. .layout-expand .panel-body {
  1124. position: relative;
  1125. }
  1126. .layout-expand .panel-body .panel-icon {
  1127. margin-top: 0;
  1128. top: 0;
  1129. left: 50%;
  1130. margin-left: -8px;
  1131. }
  1132. .layout-expand-west .panel-header .panel-icon,
  1133. .layout-expand-east .panel-header .panel-icon {
  1134. display: none;
  1135. }
  1136. .layout-expand-title {
  1137. position: absolute;
  1138. top: 0;
  1139. left: 21px;
  1140. white-space: nowrap;
  1141. word-wrap: normal;
  1142. -webkit-transform: rotate(90deg);
  1143. -webkit-transform-origin: 0 0;
  1144. -moz-transform: rotate(90deg);
  1145. -moz-transform-origin: 0 0;
  1146. -o-transform: rotate(90deg);
  1147. -o-transform-origin: 0 0;
  1148. transform: rotate(90deg);
  1149. transform-origin: 0 0;
  1150. }
  1151. .layout-expand-title-up {
  1152. position: absolute;
  1153. top: 0;
  1154. left: 0;
  1155. text-align: right;
  1156. padding-left: 5px;
  1157. white-space: nowrap;
  1158. word-wrap: normal;
  1159. -webkit-transform: rotate(-90deg);
  1160. -webkit-transform-origin: 0 0;
  1161. -moz-transform: rotate(-90deg);
  1162. -moz-transform-origin: 0 0;
  1163. -o-transform: rotate(-90deg);
  1164. -o-transform-origin: 0 0;
  1165. transform: rotate(-90deg);
  1166. transform-origin: 0 0;
  1167. }
  1168. .layout-expand-with-icon {
  1169. top: 18px;
  1170. }
  1171. .layout-expand .panel-body-noheader .layout-expand-title,
  1172. .layout-expand .panel-body-noheader .panel-icon {
  1173. top: 5px;
  1174. }
  1175. .layout-expand .panel-body-noheader .layout-expand-with-icon {
  1176. top: 23px;
  1177. }
  1178. .layout-split-proxy-h,
  1179. .layout-split-proxy-v {
  1180. position: absolute;
  1181. font-size: 1px;
  1182. display: none;
  1183. z-index: 5;
  1184. }
  1185. .layout-split-proxy-h {
  1186. width: 5px;
  1187. cursor: e-resize;
  1188. }
  1189. .layout-split-proxy-v {
  1190. height: 5px;
  1191. cursor: n-resize;
  1192. }
  1193. .layout-mask {
  1194. position: absolute;
  1195. background: #fafafa;
  1196. filter: alpha(opacity=10);
  1197. opacity: 0.10;
  1198. z-index: 4;
  1199. }
  1200. .layout-button-up {
  1201. background: url('images/layout_arrows.png') no-repeat -16px -16px;
  1202. }
  1203. .layout-button-down {
  1204. background: url('images/layout_arrows.png') no-repeat -16px 0;
  1205. }
  1206. .layout-button-left {
  1207. background: url('images/layout_arrows.png') no-repeat 0 0;
  1208. }
  1209. .layout-button-right {
  1210. background: url('images/layout_arrows.png') no-repeat 0 -16px;
  1211. }
  1212. .layout-split-proxy-h,
  1213. .layout-split-proxy-v {
  1214. background-color: #aac5e7;
  1215. }
  1216. .layout-split-north {
  1217. border-bottom: 5px solid #E6EEF8;
  1218. }
  1219. .layout-split-south {
  1220. border-top: 5px solid #E6EEF8;
  1221. }
  1222. .layout-split-east {
  1223. border-left: 5px solid #E6EEF8;
  1224. }
  1225. .layout-split-west {
  1226. border-right: 5px solid #E6EEF8;
  1227. }
  1228. .layout-expand {
  1229. background-color: #E0ECFF;
  1230. }
  1231. .layout-expand-over {
  1232. background-color: #E0ECFF;
  1233. }
  1234. .tabs-container {
  1235. overflow: hidden;
  1236. }
  1237. .tabs-header {
  1238. border-width: 1px;
  1239. border-style: solid;
  1240. border-bottom-width: 0;
  1241. position: relative;
  1242. padding: 0;
  1243. padding-top: 2px;
  1244. overflow: hidden;
  1245. }
  1246. .tabs-scroller-left,
  1247. .tabs-scroller-right {
  1248. position: absolute;
  1249. top: auto;
  1250. bottom: 0;
  1251. width: 18px;
  1252. font-size: 1px;
  1253. display: none;
  1254. cursor: pointer;
  1255. border-width: 1px;
  1256. border-style: solid;
  1257. }
  1258. .tabs-scroller-left {
  1259. left: 0;
  1260. }
  1261. .tabs-scroller-right {
  1262. right: 0;
  1263. }
  1264. .tabs-tool {
  1265. position: absolute;
  1266. bottom: 0;
  1267. padding: 1px;
  1268. overflow: hidden;
  1269. border-width: 1px;
  1270. border-style: solid;
  1271. }
  1272. .tabs-header-plain .tabs-tool {
  1273. padding: 0 1px;
  1274. }
  1275. .tabs-wrap {
  1276. position: relative;
  1277. left: 0;
  1278. overflow: hidden;
  1279. width: 100%;
  1280. margin: 0;
  1281. padding: 0;
  1282. }
  1283. .tabs-scrolling {
  1284. margin-left: 18px;
  1285. margin-right: 18px;
  1286. }
  1287. .tabs-disabled {
  1288. opacity: 0.3;
  1289. filter: alpha(opacity=30);
  1290. }
  1291. .tabs {
  1292. list-style-type: none;
  1293. height: 26px;
  1294. margin: 0px;
  1295. padding: 0px;
  1296. padding-left: 4px;
  1297. width: 50000px;
  1298. border-style: solid;
  1299. border-width: 0 0 1px 0;
  1300. }
  1301. .tabs li {
  1302. float: left;
  1303. display: inline-block;
  1304. margin: 0 4px -1px 0;
  1305. padding: 0;
  1306. position: relative;
  1307. border: 0;
  1308. }
  1309. .tabs li a.tabs-inner {
  1310. display: inline-block;
  1311. text-decoration: none;
  1312. margin: 0;
  1313. padding: 0 10px;
  1314. height: 25px;
  1315. line-height: 25px;
  1316. text-align: center;
  1317. white-space: nowrap;
  1318. border-width: 1px;
  1319. border-style: solid;
  1320. -moz-border-radius: 5px 5px 0 0;
  1321. -webkit-border-radius: 5px 5px 0 0;
  1322. border-radius: 5px 5px 0 0;
  1323. }
  1324. .tabs li.tabs-selected a.tabs-inner {
  1325. font-weight: bold;
  1326. outline: none;
  1327. }
  1328. .tabs li.tabs-selected a:hover.tabs-inner {
  1329. cursor: default;
  1330. pointer: default;
  1331. }
  1332. .tabs li a.tabs-close,
  1333. .tabs-p-tool {
  1334. position: absolute;
  1335. font-size: 1px;
  1336. display: block;
  1337. height: 12px;
  1338. padding: 0;
  1339. top: 50%;
  1340. margin-top: -6px;
  1341. overflow: hidden;
  1342. }
  1343. .tabs li a.tabs-close {
  1344. width: 12px;
  1345. right: 5px;
  1346. opacity: 0.6;
  1347. filter: alpha(opacity=60);
  1348. }
  1349. .tabs-p-tool {
  1350. right: 16px;
  1351. }
  1352. .tabs-p-tool a {
  1353. display: inline-block;
  1354. font-size: 1px;
  1355. width: 12px;
  1356. height: 12px;
  1357. margin: 0;
  1358. opacity: 0.6;
  1359. filter: alpha(opacity=60);
  1360. }
  1361. .tabs li a:hover.tabs-close,
  1362. .tabs-p-tool a:hover {
  1363. opacity: 1;
  1364. filter: alpha(opacity=100);
  1365. cursor: hand;
  1366. cursor: pointer;
  1367. }
  1368. .tabs-with-icon {
  1369. padding-left: 18px;
  1370. }
  1371. .tabs-icon {
  1372. position: absolute;
  1373. width: 16px;
  1374. height: 16px;
  1375. left: 10px;
  1376. top: 50%;
  1377. margin-top: -8px;
  1378. }
  1379. .tabs-title {
  1380. font-size: 14px;
  1381. }
  1382. .tabs-closable {
  1383. padding-right: 8px;
  1384. }
  1385. .tabs-panels {
  1386. margin: 0px;
  1387. padding: 0px;
  1388. border-width: 1px;
  1389. border-style: solid;
  1390. border-top-width: 0;
  1391. overflow: hidden;
  1392. }
  1393. .tabs-header-bottom {
  1394. border-width: 0 1px 1px 1px;
  1395. padding: 0 0 2px 0;
  1396. }
  1397. .tabs-header-bottom .tabs {
  1398. border-width: 1px 0 0 0;
  1399. }
  1400. .tabs-header-bottom .tabs li {
  1401. margin: -1px 4px 0 0;
  1402. }
  1403. .tabs-header-bottom .tabs li a.tabs-inner {
  1404. -moz-border-radius: 0 0 5px 5px;
  1405. -webkit-border-radius: 0 0 5px 5px;
  1406. border-radius: 0 0 5px 5px;
  1407. }
  1408. .tabs-header-bottom .tabs-tool {
  1409. top: 0;
  1410. }
  1411. .tabs-header-bottom .tabs-scroller-left,
  1412. .tabs-header-bottom .tabs-scroller-right {
  1413. top: 0;
  1414. bottom: auto;
  1415. }
  1416. .tabs-panels-top {
  1417. border-width: 1px 1px 0 1px;
  1418. }
  1419. .tabs-header-left {
  1420. float: left;
  1421. border-width: 1px 0 1px 1px;
  1422. padding: 0;
  1423. }
  1424. .tabs-header-right {
  1425. float: right;
  1426. border-width: 1px 1px 1px 0;
  1427. padding: 0;
  1428. }
  1429. .tabs-header-left .tabs-wrap,
  1430. .tabs-header-right .tabs-wrap {
  1431. height: 100%;
  1432. }
  1433. .tabs-header-left .tabs {
  1434. height: 100%;
  1435. padding: 4px 0 0 2px;
  1436. border-width: 0 1px 0 0;
  1437. }
  1438. .tabs-header-right .tabs {
  1439. height: 100%;
  1440. padding: 4px 2px 0 0;
  1441. border-width: 0 0 0 1px;
  1442. }
  1443. .tabs-header-left .tabs li,
  1444. .tabs-header-right .tabs li {
  1445. display: block;
  1446. width: 100%;
  1447. position: relative;
  1448. }
  1449. .tabs-header-left .tabs li {
  1450. left: auto;
  1451. right: 0;
  1452. margin: 0 -1px 4px 0;
  1453. float: right;
  1454. }
  1455. .tabs-header-right .tabs li {
  1456. left: 0;
  1457. right: auto;
  1458. margin: 0 0 4px -1px;
  1459. float: left;
  1460. }
  1461. .tabs-justified li a.tabs-inner {
  1462. padding-left: 0;
  1463. padding-right: 0;
  1464. }
  1465. .tabs-header-left .tabs li a.tabs-inner {
  1466. display: block;
  1467. text-align: left;
  1468. padding-left: 10px;
  1469. padding-right: 10px;
  1470. -moz-border-radius: 5px 0 0 5px;
  1471. -webkit-border-radius: 5px 0 0 5px;
  1472. border-radius: 5px 0 0 5px;
  1473. }
  1474. .tabs-header-right .tabs li a.tabs-inner {
  1475. display: block;
  1476. text-align: left;
  1477. padding-left: 10px;
  1478. padding-right: 10px;
  1479. -moz-border-radius: 0 5px 5px 0;
  1480. -webkit-border-radius: 0 5px 5px 0;
  1481. border-radius: 0 5px 5px 0;
  1482. }
  1483. .tabs-panels-right {
  1484. float: right;
  1485. border-width: 1px 1px 1px 0;
  1486. }
  1487. .tabs-panels-left {
  1488. float: left;
  1489. border-width: 1px 0 1px 1px;
  1490. }
  1491. .tabs-header-noborder,
  1492. .tabs-panels-noborder {
  1493. border: 0px;
  1494. }
  1495. .tabs-header-plain {
  1496. border: 0px;
  1497. background: transparent;
  1498. }
  1499. .tabs-pill {
  1500. padding-bottom: 3px;
  1501. }
  1502. .tabs-header-bottom .tabs-pill {
  1503. padding-top: 3px;
  1504. padding-bottom: 0;
  1505. }
  1506. .tabs-header-left .tabs-pill {
  1507. padding-right: 3px;
  1508. }
  1509. .tabs-header-right .tabs-pill {
  1510. padding-left: 3px;
  1511. }
  1512. .tabs-header .tabs-pill li a.tabs-inner {
  1513. -moz-border-radius: 5px 5px 5px 5px;
  1514. -webkit-border-radius: 5px 5px 5px 5px;
  1515. border-radius: 5px 5px 5px 5px;
  1516. }
  1517. .tabs-header-narrow,
  1518. .tabs-header-narrow .tabs-narrow {
  1519. padding: 0;
  1520. }
  1521. .tabs-narrow li,
  1522. .tabs-header-bottom .tabs-narrow li {
  1523. margin-left: 0;
  1524. margin-right: -1px;
  1525. }
  1526. .tabs-narrow li.tabs-last,
  1527. .tabs-header-bottom .tabs-narrow li.tabs-last {
  1528. margin-right: 0;
  1529. }
  1530. .tabs-header-left .tabs-narrow,
  1531. .tabs-header-right .tabs-narrow {
  1532. padding-top: 0;
  1533. }
  1534. .tabs-header-left .tabs-narrow li {
  1535. margin-bottom: -1px;
  1536. margin-right: -1px;
  1537. }
  1538. .tabs-header-left .tabs-narrow li.tabs-last,
  1539. .tabs-header-right .tabs-narrow li.tabs-last {
  1540. margin-bottom: 0;
  1541. }
  1542. .tabs-header-right .tabs-narrow li {
  1543. margin-bottom: -1px;
  1544. margin-left: -1px;
  1545. }
  1546. .tabs-scroller-left {
  1547. background: #E0ECFF url('images/tabs_icons.png') no-repeat 1px center;
  1548. }
  1549. .tabs-scroller-right {
  1550. background: #E0ECFF url('images/tabs_icons.png') no-repeat -15px center;
  1551. }
  1552. .tabs li a.tabs-close {
  1553. background: url('images/tabs_icons.png') no-repeat -34px center;
  1554. }
  1555. .tabs li a.tabs-inner:hover {
  1556. background: #eaf2ff;
  1557. color: #000000;
  1558. filter: none;
  1559. }
  1560. .tabs li.tabs-selected a.tabs-inner {
  1561. background-color: #ffffff;
  1562. color: #0E2D5F;
  1563. background: -webkit-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
  1564. background: -moz-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
  1565. background: -o-linear-gradient(top,#EFF5FF 0,#ffffff 100%);
  1566. background: linear-gradient(to bottom,#EFF5FF 0,#ffffff 100%);
  1567. background-repeat: repeat-x;
  1568. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=0);
  1569. }
  1570. .tabs-header-bottom .tabs li.tabs-selected a.tabs-inner {
  1571. background: -webkit-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
  1572. background: -moz-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
  1573. background: -o-linear-gradient(top,#ffffff 0,#EFF5FF 100%);
  1574. background: linear-gradient(to bottom,#ffffff 0,#EFF5FF 100%);
  1575. background-repeat: repeat-x;
  1576. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=0);
  1577. }
  1578. .tabs-header-left .tabs li.tabs-selected a.tabs-inner {
  1579. background: -webkit-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
  1580. background: -moz-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
  1581. background: -o-linear-gradient(left,#EFF5FF 0,#ffffff 100%);
  1582. background: linear-gradient(to right,#EFF5FF 0,#ffffff 100%);
  1583. background-repeat: repeat-y;
  1584. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#ffffff,GradientType=1);
  1585. }
  1586. .tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  1587. background: -webkit-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
  1588. background: -moz-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
  1589. background: -o-linear-gradient(left,#ffffff 0,#EFF5FF 100%);
  1590. background: linear-gradient(to right,#ffffff 0,#EFF5FF 100%);
  1591. background-repeat: repeat-y;
  1592. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff,endColorstr=#EFF5FF,GradientType=1);
  1593. }
  1594. .tabs li a.tabs-inner {
  1595. color: #0E2D5F;
  1596. background-color: #E0ECFF;
  1597. background: -webkit-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  1598. background: -moz-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  1599. background: -o-linear-gradient(top,#EFF5FF 0,#E0ECFF 100%);
  1600. background: linear-gradient(to bottom,#EFF5FF 0,#E0ECFF 100%);
  1601. background-repeat: repeat-x;
  1602. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#EFF5FF,endColorstr=#E0ECFF,GradientType=0);
  1603. }
  1604. .tabs-header,
  1605. .tabs-tool {
  1606. background-color: #E0ECFF;
  1607. }
  1608. .tabs-header-plain {
  1609. background: transparent;
  1610. }
  1611. .tabs-header,
  1612. .tabs-scroller-left,
  1613. .tabs-scroller-right,
  1614. .tabs-tool,
  1615. .tabs,
  1616. .tabs-panels,
  1617. .tabs li a.tabs-inner,
  1618. .tabs li.tabs-selected a.tabs-inner,
  1619. .tabs-header-bottom .tabs li.tabs-selected a.tabs-inner,
  1620. .tabs-header-left .tabs li.tabs-selected a.tabs-inner,
  1621. .tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  1622. border-color: #95B8E7;
  1623. }
  1624. .tabs-p-tool a:hover,
  1625. .tabs li a:hover.tabs-close,
  1626. .tabs-scroller-over {
  1627. background-color: #eaf2ff;
  1628. }
  1629. .tabs li.tabs-selected a.tabs-inner {
  1630. border-bottom: 1px solid #ffffff;
  1631. }
  1632. .tabs-header-bottom .tabs li.tabs-selected a.tabs-inner {
  1633. border-top: 1px solid #ffffff;
  1634. }
  1635. .tabs-header-left .tabs li.tabs-selected a.tabs-inner {
  1636. border-right: 1px solid #ffffff;
  1637. }
  1638. .tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  1639. border-left: 1px solid #ffffff;
  1640. }
  1641. .tabs-header .tabs-pill li.tabs-selected a.tabs-inner {
  1642. background: #ffe48d;
  1643. color: #000000;
  1644. filter: none;
  1645. border-color: #95B8E7;
  1646. }
  1647. .datagrid .panel-body {
  1648. overflow: hidden;
  1649. position: relative;
  1650. }
  1651. .datagrid-view {
  1652. position: relative;
  1653. overflow: hidden;
  1654. }
  1655. .datagrid-view1,
  1656. .datagrid-view2 {
  1657. position: absolute;
  1658. overflow: hidden;
  1659. top: 0;
  1660. }
  1661. .datagrid-view1 {
  1662. left: 0;
  1663. }
  1664. .datagrid-view2 {
  1665. right: 0;
  1666. }
  1667. .datagrid-mask {
  1668. position: absolute;
  1669. left: 0;
  1670. top: 0;
  1671. width: 100%;
  1672. height: 100%;
  1673. opacity: 0.3;
  1674. filter: alpha(opacity=30);
  1675. display: none;
  1676. }
  1677. .datagrid-mask-msg {
  1678. position: absolute;
  1679. top: 50%;
  1680. margin-top: -20px;
  1681. padding: 10px 5px 10px 30px;
  1682. width: auto;
  1683. height: 16px;
  1684. border-width: 2px;
  1685. border-style: solid;
  1686. display: none;
  1687. }
  1688. .datagrid-empty {
  1689. position: absolute;
  1690. left: 0;
  1691. top: 0;
  1692. width: 100%;
  1693. height: 25px;
  1694. line-height: 25px;
  1695. text-align: center;
  1696. }
  1697. .datagrid-sort-icon {
  1698. padding: 0;
  1699. display: none;
  1700. }
  1701. .datagrid-toolbar {
  1702. height: auto;
  1703. padding: 1px 2px;
  1704. border-width: 0 0 1px 0;
  1705. border-style: solid;
  1706. }
  1707. .datagrid-btn-separator {
  1708. float: left;
  1709. height: 24px;
  1710. border-left: 1px solid #ccc;
  1711. border-right: 1px solid #fff;
  1712. margin: 2px 1px;
  1713. }
  1714. .datagrid .datagrid-pager {
  1715. display: block;
  1716. margin: 0;
  1717. border-width: 1px 0 0 0;
  1718. border-style: solid;
  1719. }
  1720. .datagrid .datagrid-pager-top {
  1721. border-width: 0 0 1px 0;
  1722. }
  1723. .datagrid-header {
  1724. overflow: hidden;
  1725. cursor: default;
  1726. border-width: 0 0 1px 0;
  1727. border-style: solid;
  1728. }
  1729. .datagrid-header-inner {
  1730. float: left;
  1731. width: 10000px;
  1732. }
  1733. .datagrid-header-row,
  1734. .datagrid-row {
  1735. height: 32px;
  1736. }
  1737. .datagrid-header td,
  1738. .datagrid-body td,
  1739. .datagrid-footer td {
  1740. border-width: 0 1px 1px 0;
  1741. border-style: dotted;
  1742. margin: 0;
  1743. padding: 0;
  1744. }
  1745. .datagrid-cell,
  1746. .datagrid-cell-group,
  1747. .datagrid-header-rownumber,
  1748. .datagrid-cell-rownumber {
  1749. margin: 0;
  1750. padding: 0 4px;
  1751. white-space: nowrap;
  1752. word-wrap: normal;
  1753. overflow: hidden;
  1754. height: 18px;
  1755. line-height: 18px;
  1756. font-size: 14px;
  1757. }
  1758. .datagrid-header .datagrid-cell {
  1759. height: auto;
  1760. }
  1761. .datagrid-header .datagrid-cell span {
  1762. font-size: 14px;
  1763. }
  1764. .datagrid-cell-group {
  1765. text-align: center;
  1766. text-overflow: ellipsis;
  1767. }
  1768. .datagrid-header-rownumber,
  1769. .datagrid-cell-rownumber {
  1770. width: 30px;
  1771. text-align: center;
  1772. margin: 0;
  1773. padding: 0;
  1774. }
  1775. .datagrid-body {
  1776. margin: 0;
  1777. padding: 0;
  1778. overflow: auto;
  1779. zoom: 1;
  1780. }
  1781. .datagrid-view1 .datagrid-body-inner {
  1782. padding-bottom: 20px;
  1783. }
  1784. .datagrid-view1 .datagrid-body {
  1785. overflow: hidden;
  1786. }
  1787. .datagrid-footer {
  1788. overflow: hidden;
  1789. }
  1790. .datagrid-footer-inner {
  1791. border-width: 1px 0 0 0;
  1792. border-style: solid;
  1793. width: 10000px;
  1794. float: left;
  1795. }
  1796. .datagrid-row-editing .datagrid-cell {
  1797. height: auto;
  1798. }
  1799. .datagrid-header-check,
  1800. .datagrid-cell-check {
  1801. padding: 0;
  1802. width: 27px;
  1803. height: 18px;
  1804. font-size: 1px;
  1805. text-align: center;
  1806. overflow: hidden;
  1807. }
  1808. .datagrid-header-check input,
  1809. .datagrid-cell-check input {
  1810. margin: 0;
  1811. padding: 0;
  1812. width: 15px;
  1813. height: 18px;
  1814. }
  1815. .datagrid-resize-proxy {
  1816. position: absolute;
  1817. width: 1px;
  1818. height: 10000px;
  1819. top: 0;
  1820. cursor: e-resize;
  1821. display: none;
  1822. }
  1823. .datagrid-body .datagrid-editable {
  1824. margin: 0;
  1825. padding: 0;
  1826. }
  1827. .datagrid-body .datagrid-editable table {
  1828. width: 100%;
  1829. height: 100%;
  1830. }
  1831. .datagrid-body .datagrid-editable td {
  1832. border: 0;
  1833. margin: 0;
  1834. padding: 0;
  1835. }
  1836. .datagrid-view .datagrid-editable-input {
  1837. margin: 0;
  1838. padding: 2px 4px;
  1839. border: 1px solid #95B8E7;
  1840. font-size: 14px;
  1841. outline-style: none;
  1842. -moz-border-radius: 0 0 0 0;
  1843. -webkit-border-radius: 0 0 0 0;
  1844. border-radius: 0 0 0 0;
  1845. }
  1846. .datagrid-view .validatebox-invalid {
  1847. border-color: #ffa8a8;
  1848. }
  1849. .datagrid-sort .datagrid-sort-icon {
  1850. display: inline;
  1851. padding: 0 13px 0 0;
  1852. background: url('images/datagrid_icons.png') no-repeat -64px center;
  1853. }
  1854. .datagrid-sort-desc .datagrid-sort-icon {
  1855. display: inline;
  1856. padding: 0 13px 0 0;
  1857. background: url('images/datagrid_icons.png') no-repeat -16px center;
  1858. }
  1859. .datagrid-sort-asc .datagrid-sort-icon {
  1860. display: inline;
  1861. padding: 0 13px 0 0;
  1862. background: url('images/datagrid_icons.png') no-repeat 0px center;
  1863. }
  1864. .datagrid-row-collapse {
  1865. background: url('images/datagrid_icons.png') no-repeat -48px center;
  1866. }
  1867. .datagrid-row-expand {
  1868. background: url('images/datagrid_icons.png') no-repeat -32px center;
  1869. }
  1870. .datagrid-mask-msg {
  1871. background: #ffffff url('images/loading.gif') no-repeat scroll 5px center;
  1872. }
  1873. .datagrid-header,
  1874. .datagrid-td-rownumber {
  1875. background-color: #efefef;
  1876. background: -webkit-linear-gradient(top,#F9F9F9 0,#efefef 100%);
  1877. background: -moz-linear-gradient(top,#F9F9F9 0,#efefef 100%);
  1878. background: -o-linear-gradient(top,#F9F9F9 0,#efefef 100%);
  1879. background: linear-gradient(to bottom,#F9F9F9 0,#efefef 100%);
  1880. background-repeat: repeat-x;
  1881. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F9F9F9,endColorstr=#efefef,GradientType=0);
  1882. }
  1883. .datagrid-cell-rownumber {
  1884. color: #000000;
  1885. }
  1886. .datagrid-resize-proxy {
  1887. background: #aac5e7;
  1888. }
  1889. .datagrid-mask {
  1890. background: #ccc;
  1891. }
  1892. .datagrid-mask-msg {
  1893. border-color: #95B8E7;
  1894. }
  1895. .datagrid-toolbar,
  1896. .datagrid-pager {
  1897. background: #F4F4F4;
  1898. }
  1899. .datagrid-header,
  1900. .datagrid-toolbar,
  1901. .datagrid-pager,
  1902. .datagrid-footer-inner {
  1903. border-color: #dddddd;
  1904. }
  1905. .datagrid-header td,
  1906. .datagrid-body td,
  1907. .datagrid-footer td {
  1908. border-color: #ccc;
  1909. }
  1910. .datagrid-htable,
  1911. .datagrid-btable,
  1912. .datagrid-ftable {
  1913. color: #000000;
  1914. border-collapse: separate;
  1915. }
  1916. .datagrid-row-alt {
  1917. background: #fafafa;
  1918. }
  1919. .datagrid-row-over,
  1920. .datagrid-header td.datagrid-header-over {
  1921. background: #eaf2ff;
  1922. color: #000000;
  1923. cursor: default;
  1924. }
  1925. .datagrid-row-selected {
  1926. background: #ffe48d;
  1927. color: #000000;
  1928. }
  1929. .datagrid-row-editing .textbox,
  1930. .datagrid-row-editing .textbox-text {
  1931. -moz-border-radius: 0 0 0 0;
  1932. -webkit-border-radius: 0 0 0 0;
  1933. border-radius: 0 0 0 0;
  1934. }
  1935. .datagrid-header .datagrid-filter-row td.datagrid-header-over {
  1936. background: inherit;
  1937. }
  1938. .propertygrid .datagrid-view1 .datagrid-body td {
  1939. padding-bottom: 1px;
  1940. border-width: 0 1px 0 0;
  1941. }
  1942. .propertygrid .datagrid-group {
  1943. overflow: hidden;
  1944. border-width: 0 0 1px 0;
  1945. border-style: solid;
  1946. }
  1947. .propertygrid .datagrid-group span {
  1948. font-weight: bold;
  1949. }
  1950. .propertygrid .datagrid-view1 .datagrid-body td {
  1951. border-color: #dddddd;
  1952. }
  1953. .propertygrid .datagrid-view1 .datagrid-group {
  1954. border-color: #E0ECFF;
  1955. }
  1956. .propertygrid .datagrid-view2 .datagrid-group {
  1957. border-color: #dddddd;
  1958. }
  1959. .propertygrid .datagrid-group,
  1960. .propertygrid .datagrid-view1 .datagrid-body,
  1961. .propertygrid .datagrid-view1 .datagrid-row-over,
  1962. .propertygrid .datagrid-view1 .datagrid-row-selected {
  1963. background: #E0ECFF;
  1964. }
  1965. .datalist .datagrid-header {
  1966. border-width: 0;
  1967. }
  1968. .datalist .datagrid-group,
  1969. .m-list .m-list-group {
  1970. height: 25px;
  1971. line-height: 25px;
  1972. font-weight: bold;
  1973. overflow: hidden;
  1974. background-color: #efefef;
  1975. border-style: solid;
  1976. border-width: 0 0 1px 0;
  1977. border-color: #ccc;
  1978. }
  1979. .datalist .datagrid-group-expander {
  1980. display: none;
  1981. }
  1982. .datalist .datagrid-group-title {
  1983. padding: 0 4px;
  1984. }
  1985. .datalist .datagrid-btable {
  1986. width: 100%;
  1987. table-layout: fixed;
  1988. }
  1989. .datalist .datagrid-row td {
  1990. border-style: solid;
  1991. border-left-color: transparent;
  1992. border-right-color: transparent;
  1993. border-bottom-width: 0;
  1994. }
  1995. .datalist-lines .datagrid-row td {
  1996. border-bottom-width: 1px;
  1997. }
  1998. .datalist .datagrid-cell,
  1999. .m-list li {
  2000. width: auto;
  2001. height: auto;
  2002. padding: 2px 4px;
  2003. line-height: 18px;
  2004. position: relative;
  2005. white-space: nowrap;
  2006. text-overflow: ellipsis;
  2007. overflow: hidden;
  2008. }
  2009. .datalist-link,
  2010. .m-list li>a {
  2011. display: block;
  2012. position: relative;
  2013. cursor: pointer;
  2014. color: #000000;
  2015. text-decoration: none;
  2016. overflow: hidden;
  2017. margin: -2px -4px;
  2018. padding: 2px 4px;
  2019. padding-right: 16px;
  2020. line-height: 18px;
  2021. white-space: nowrap;
  2022. text-overflow: ellipsis;
  2023. overflow: hidden;
  2024. }
  2025. .datalist-link::after,
  2026. .m-list li>a::after {
  2027. position: absolute;
  2028. display: block;
  2029. width: 8px;
  2030. height: 8px;
  2031. content: '';
  2032. right: 6px;
  2033. top: 50%;
  2034. margin-top: -4px;
  2035. border-style: solid;
  2036. border-width: 1px 1px 0 0;
  2037. -ms-transform: rotate(45deg);
  2038. -moz-transform: rotate(45deg);
  2039. -webkit-transform: rotate(45deg);
  2040. -o-transform: rotate(45deg);
  2041. transform: rotate(45deg);
  2042. }
  2043. .m-list {
  2044. margin: 0;
  2045. padding: 0;
  2046. list-style: none;
  2047. }
  2048. .m-list li {
  2049. border-style: solid;
  2050. border-width: 0 0 1px 0;
  2051. border-color: #ccc;
  2052. }
  2053. .m-list li>a:hover {
  2054. background: #eaf2ff;
  2055. color: #000000;
  2056. }
  2057. .m-list .m-list-group {
  2058. padding: 0 4px;
  2059. }
  2060. .pagination {
  2061. zoom: 1;
  2062. padding: 2px;
  2063. }
  2064. .pagination table {
  2065. float: left;
  2066. height: 30px;
  2067. }
  2068. .pagination td {
  2069. border: 0;
  2070. }
  2071. .pagination-btn-separator {
  2072. float: left;
  2073. height: 24px;
  2074. border-left: 1px solid #ccc;
  2075. border-right: 1px solid #fff;
  2076. margin: 3px 1px;
  2077. }
  2078. .pagination .pagination-num {
  2079. border-width: 1px;
  2080. border-style: solid;
  2081. margin: 0 2px;
  2082. padding: 2px;
  2083. width: 3em;
  2084. height: auto;
  2085. text-align: center;
  2086. font-size: 14px;
  2087. }
  2088. .pagination-page-list {
  2089. margin: 0px 6px;
  2090. padding: 1px 2px;
  2091. width: auto;
  2092. height: auto;
  2093. border-width: 1px;
  2094. border-style: solid;
  2095. }
  2096. .pagination-info {
  2097. float: right;
  2098. margin: 0 6px;
  2099. padding: 0;
  2100. height: 30px;
  2101. line-height: 30px;
  2102. font-size: 14px;
  2103. }
  2104. .pagination span {
  2105. font-size: 14px;
  2106. }
  2107. .pagination-link .l-btn-text {
  2108. box-sizing: border-box;
  2109. text-align: center;
  2110. margin: 0;
  2111. padding: 0 .5em;
  2112. width: auto;
  2113. min-width: 28px;
  2114. }
  2115. .pagination-first {
  2116. background: url('images/pagination_icons.png') no-repeat 0 center;
  2117. }
  2118. .pagination-prev {
  2119. background: url('images/pagination_icons.png') no-repeat -16px center;
  2120. }
  2121. .pagination-next {
  2122. background: url('images/pagination_icons.png') no-repeat -32px center;
  2123. }
  2124. .pagination-last {
  2125. background: url('images/pagination_icons.png') no-repeat -48px center;
  2126. }
  2127. .pagination-load {
  2128. background: url('images/pagination_icons.png') no-repeat -64px center;
  2129. }
  2130. .pagination-loading {
  2131. background: url('images/loading.gif') no-repeat center center;
  2132. }
  2133. .pagination-page-list,
  2134. .pagination .pagination-num {
  2135. border-color: #95B8E7;
  2136. }
  2137. .calendar {
  2138. border-width: 1px;
  2139. border-style: solid;
  2140. padding: 1px;
  2141. overflow: hidden;
  2142. }
  2143. .calendar table {
  2144. table-layout: fixed;
  2145. border-collapse: separate;
  2146. font-size: 14px;
  2147. width: 100%;
  2148. height: 100%;
  2149. }
  2150. .calendar table td,
  2151. .calendar table th {
  2152. font-size: 14px;
  2153. }
  2154. .calendar-noborder {
  2155. border: 0;
  2156. }
  2157. .calendar-header {
  2158. position: relative;
  2159. height: 28px;
  2160. }
  2161. .calendar-title {
  2162. text-align: center;
  2163. height: 28px;
  2164. }
  2165. .calendar-title span {
  2166. position: relative;
  2167. display: inline-block;
  2168. top: 0px;
  2169. padding: 0 3px;
  2170. height: 28px;
  2171. line-height: 28px;
  2172. font-size: 14px;
  2173. cursor: pointer;
  2174. -moz-border-radius: 5px 5px 5px 5px;
  2175. -webkit-border-radius: 5px 5px 5px 5px;
  2176. border-radius: 5px 5px 5px 5px;
  2177. }
  2178. .calendar-prevmonth,
  2179. .calendar-nextmonth,
  2180. .calendar-prevyear,
  2181. .calendar-nextyear {
  2182. position: absolute;
  2183. top: 50%;
  2184. margin-top: -8px;
  2185. width: 16px;
  2186. height: 16px;
  2187. cursor: pointer;
  2188. font-size: 1px;
  2189. -moz-border-radius: 5px 5px 5px 5px;
  2190. -webkit-border-radius: 5px 5px 5px 5px;
  2191. border-radius: 5px 5px 5px 5px;
  2192. }
  2193. .calendar-prevmonth {
  2194. left: 20px;
  2195. background: url('images/calendar_arrows.png') no-repeat -16px 0;
  2196. }
  2197. .calendar-nextmonth {
  2198. right: 20px;
  2199. background: url('images/calendar_arrows.png') no-repeat -32px 0;
  2200. }
  2201. .calendar-prevyear {
  2202. left: 3px;
  2203. background: url('images/calendar_arrows.png') no-repeat 0px 0;
  2204. }
  2205. .calendar-nextyear {
  2206. right: 3px;
  2207. background: url('images/calendar_arrows.png') no-repeat -48px 0;
  2208. }
  2209. .calendar-body {
  2210. position: relative;
  2211. }
  2212. .calendar-body th,
  2213. .calendar-body td {
  2214. text-align: center;
  2215. }
  2216. .calendar-day {
  2217. border: 0;
  2218. padding: 1px;
  2219. cursor: pointer;
  2220. -moz-border-radius: 5px 5px 5px 5px;
  2221. -webkit-border-radius: 5px 5px 5px 5px;
  2222. border-radius: 5px 5px 5px 5px;
  2223. }
  2224. .calendar-other-month {
  2225. opacity: 0.3;
  2226. filter: alpha(opacity=30);
  2227. }
  2228. .calendar-disabled {
  2229. opacity: 0.6;
  2230. filter: alpha(opacity=60);
  2231. cursor: default;
  2232. }
  2233. .calendar-menu {
  2234. position: absolute;
  2235. top: 0;
  2236. left: 0;
  2237. width: 180px;
  2238. height: 150px;
  2239. padding: 5px;
  2240. font-size: 14px;
  2241. display: none;
  2242. overflow: hidden;
  2243. }
  2244. .calendar-menu-year-inner {
  2245. text-align: center;
  2246. padding-bottom: 5px;
  2247. }
  2248. .calendar-menu-year {
  2249. width: 80px;
  2250. line-height: 26px;
  2251. text-align: center;
  2252. border-width: 1px;
  2253. border-style: solid;
  2254. outline-style: none;
  2255. resize: none;
  2256. margin: 0;
  2257. padding: 0;
  2258. font-weight: bold;
  2259. font-size: 14px;
  2260. -moz-border-radius: 5px 5px 5px 5px;
  2261. -webkit-border-radius: 5px 5px 5px 5px;
  2262. border-radius: 5px 5px 5px 5px;
  2263. }
  2264. .calendar-menu-prev,
  2265. .calendar-menu-next {
  2266. display: inline-block;
  2267. width: 25px;
  2268. height: 28px;
  2269. vertical-align: top;
  2270. cursor: pointer;
  2271. -moz-border-radius: 5px 5px 5px 5px;
  2272. -webkit-border-radius: 5px 5px 5px 5px;
  2273. border-radius: 5px 5px 5px 5px;
  2274. }
  2275. .calendar-menu-prev {
  2276. margin-right: 10px;
  2277. background: url('images/calendar_arrows.png') no-repeat 5px center;
  2278. }
  2279. .calendar-menu-next {
  2280. margin-left: 10px;
  2281. background: url('images/calendar_arrows.png') no-repeat -44px center;
  2282. }
  2283. .calendar-menu-month {
  2284. text-align: center;
  2285. cursor: pointer;
  2286. font-weight: bold;
  2287. -moz-border-radius: 5px 5px 5px 5px;
  2288. -webkit-border-radius: 5px 5px 5px 5px;
  2289. border-radius: 5px 5px 5px 5px;
  2290. }
  2291. .calendar-body th,
  2292. .calendar-menu-month {
  2293. color: #4d4d4d;
  2294. }
  2295. .calendar-day {
  2296. color: #000000;
  2297. }
  2298. .calendar-sunday {
  2299. color: #CC2222;
  2300. }
  2301. .calendar-saturday {
  2302. color: #00ee00;
  2303. }
  2304. .calendar-today {
  2305. color: #0000ff;
  2306. }
  2307. .calendar-menu-year {
  2308. border-color: #95B8E7;
  2309. }
  2310. .calendar {
  2311. border-color: #95B8E7;
  2312. }
  2313. .calendar-header {
  2314. background: #E0ECFF;
  2315. }
  2316. .calendar-body,
  2317. .calendar-menu {
  2318. background: #ffffff;
  2319. }
  2320. .calendar-body th {
  2321. background: #F4F4F4;
  2322. padding: 4px 0;
  2323. }
  2324. .calendar-hover,
  2325. .calendar-nav-hover,
  2326. .calendar-menu-hover {
  2327. background-color: #eaf2ff;
  2328. color: #000000;
  2329. }
  2330. .calendar-hover {
  2331. border: 1px solid #b7d2ff;
  2332. padding: 0;
  2333. }
  2334. .calendar-selected {
  2335. background-color: #ffe48d;
  2336. color: #000000;
  2337. border: 1px solid #ffab3f;
  2338. padding: 0;
  2339. }
  2340. .datebox-calendar-inner {
  2341. height: 250px;
  2342. }
  2343. .datebox-button {
  2344. padding: 4px 0;
  2345. text-align: center;
  2346. }
  2347. .datebox-button a {
  2348. line-height: 22px;
  2349. font-size: 14px;
  2350. font-weight: bold;
  2351. text-decoration: none;
  2352. opacity: 0.6;
  2353. filter: alpha(opacity=60);
  2354. }
  2355. .datebox-button a:hover {
  2356. opacity: 1.0;
  2357. filter: alpha(opacity=100);
  2358. }
  2359. .datebox-current,
  2360. .datebox-close {
  2361. float: left;
  2362. }
  2363. .datebox-close {
  2364. float: right;
  2365. }
  2366. .datebox .combo-arrow {
  2367. background-image: url('images/datebox_arrow.png');
  2368. background-position: center center;
  2369. }
  2370. .datebox-button {
  2371. background-color: #F4F4F4;
  2372. }
  2373. .datebox-button a {
  2374. color: #444;
  2375. }
  2376. .spinner-arrow {
  2377. display: inline-block;
  2378. overflow: hidden;
  2379. vertical-align: top;
  2380. margin: 0;
  2381. padding: 0;
  2382. opacity: 1.0;
  2383. filter: alpha(opacity=100);
  2384. width: 18px;
  2385. }
  2386. .spinner-arrow.spinner-button-top,
  2387. .spinner-arrow.spinner-button-bottom,
  2388. .spinner-arrow.spinner-button-left,
  2389. .spinner-arrow.spinner-button-right {
  2390. background-color: #E0ECFF;
  2391. }
  2392. .spinner-arrow-up,
  2393. .spinner-arrow-down {
  2394. opacity: 0.6;
  2395. filter: alpha(opacity=60);
  2396. display: block;
  2397. font-size: 1px;
  2398. width: 18px;
  2399. height: 10px;
  2400. width: 100%;
  2401. height: 50%;
  2402. color: #444;
  2403. outline-style: none;
  2404. background-color: #E0ECFF;
  2405. }
  2406. .spinner-button-updown {
  2407. opacity: 1.0;
  2408. }
  2409. .spinner-button-updown .spinner-button-top,
  2410. .spinner-button-updown .spinner-button-bottom {
  2411. position: relative;
  2412. display: block;
  2413. width: 100%;
  2414. height: 50%;
  2415. }
  2416. .spinner-button-updown .spinner-arrow-up,
  2417. .spinner-button-updown .spinner-arrow-down {
  2418. opacity: 1.0;
  2419. filter: alpha(opacity=100);
  2420. cursor: pointer;
  2421. width: 16px;
  2422. height: 16px;
  2423. top: 50%;
  2424. left: 50%;
  2425. margin-top: -8px;
  2426. margin-left: -8px;
  2427. position: absolute;
  2428. }
  2429. .spinner-button-updown .spinner-button-top,
  2430. .spinner-button-updown .spinner-button-bottom {
  2431. cursor: pointer;
  2432. opacity: 0.6;
  2433. filter: alpha(opacity=60);
  2434. }
  2435. .spinner-button-updown .spinner-button-top:hover,
  2436. .spinner-button-updown .spinner-button-bottom:hover {
  2437. opacity: 1.0;
  2438. filter: alpha(opacity=100);
  2439. }
  2440. .spinner-button-updown .spinner-arrow-up,
  2441. .spinner-button-updown .spinner-arrow-down,
  2442. .spinner-button-updown .spinner-arrow-up:hover,
  2443. .spinner-button-updown .spinner-arrow-down:hover {
  2444. background-color: transparent;
  2445. }
  2446. .spinner-arrow-hover {
  2447. background-color: #eaf2ff;
  2448. opacity: 1.0;
  2449. filter: alpha(opacity=100);
  2450. }
  2451. .spinner-button-top:hover,
  2452. .spinner-button-bottom:hover,
  2453. .spinner-button-left:hover,
  2454. .spinner-button-right:hover,
  2455. .spinner-arrow-up:hover,
  2456. .spinner-arrow-down:hover {
  2457. opacity: 1.0;
  2458. filter: alpha(opacity=100);
  2459. background-color: #eaf2ff;
  2460. }
  2461. .textbox-disabled .spinner-button-top:hover,
  2462. .textbox-disabled .spinner-button-bottom:hover,
  2463. .textbox-disabled .spinner-button-left:hover,
  2464. .textbox-disabled .spinner-button-right:hover,
  2465. .textbox-icon-disabled .spinner-arrow-up:hover,
  2466. .textbox-icon-disabled .spinner-arrow-down:hover {
  2467. opacity: 0.6;
  2468. filter: alpha(opacity=60);
  2469. background-color: #E0ECFF;
  2470. cursor: default;
  2471. }
  2472. .spinner .textbox-icon-disabled {
  2473. opacity: 0.6;
  2474. filter: alpha(opacity=60);
  2475. }
  2476. .spinner-arrow-up {
  2477. background: url('images/spinner_arrows.png') no-repeat 1px center;
  2478. background-color: #E0ECFF;
  2479. }
  2480. .spinner-arrow-down {
  2481. background: url('images/spinner_arrows.png') no-repeat -15px center;
  2482. background-color: #E0ECFF;
  2483. }
  2484. .spinner-button-up {
  2485. background: url('images/spinner_arrows.png') no-repeat -32px center;
  2486. }
  2487. .spinner-button-down {
  2488. background: url('images/spinner_arrows.png') no-repeat -48px center;
  2489. }
  2490. .progressbar {
  2491. border-width: 1px;
  2492. border-style: solid;
  2493. -moz-border-radius: 5px 5px 5px 5px;
  2494. -webkit-border-radius: 5px 5px 5px 5px;
  2495. border-radius: 5px 5px 5px 5px;
  2496. overflow: hidden;
  2497. position: relative;
  2498. }
  2499. .progressbar-text {
  2500. text-align: center;
  2501. position: absolute;
  2502. }
  2503. .progressbar-value {
  2504. position: relative;
  2505. overflow: hidden;
  2506. width: 0;
  2507. -moz-border-radius: 5px 0 0 5px;
  2508. -webkit-border-radius: 5px 0 0 5px;
  2509. border-radius: 5px 0 0 5px;
  2510. }
  2511. .progressbar {
  2512. border-color: #95B8E7;
  2513. }
  2514. .progressbar-text {
  2515. color: #000000;
  2516. font-size: 14px;
  2517. }
  2518. .progressbar-value,
  2519. .progressbar-value .progressbar-text {
  2520. background-color: #ffe48d;
  2521. color: #000000;
  2522. }
  2523. .searchbox-button {
  2524. width: 18px;
  2525. height: 20px;
  2526. overflow: hidden;
  2527. display: inline-block;
  2528. vertical-align: top;
  2529. cursor: pointer;
  2530. opacity: 0.6;
  2531. filter: alpha(opacity=60);
  2532. }
  2533. .searchbox-button-hover {
  2534. opacity: 1.0;
  2535. filter: alpha(opacity=100);
  2536. }
  2537. .searchbox .l-btn-plain {
  2538. border: 0;
  2539. padding: 0;
  2540. vertical-align: top;
  2541. opacity: 0.6;
  2542. filter: alpha(opacity=60);
  2543. -moz-border-radius: 0 0 0 0;
  2544. -webkit-border-radius: 0 0 0 0;
  2545. border-radius: 0 0 0 0;
  2546. }
  2547. .searchbox .l-btn-plain:hover {
  2548. border: 0;
  2549. padding: 0;
  2550. opacity: 1.0;
  2551. filter: alpha(opacity=100);
  2552. -moz-border-radius: 0 0 0 0;
  2553. -webkit-border-radius: 0 0 0 0;
  2554. border-radius: 0 0 0 0;
  2555. }
  2556. .searchbox a.m-btn-plain-active {
  2557. -moz-border-radius: 0 0 0 0;
  2558. -webkit-border-radius: 0 0 0 0;
  2559. border-radius: 0 0 0 0;
  2560. }
  2561. .searchbox .m-btn-active {
  2562. border-width: 0 1px 0 0;
  2563. -moz-border-radius: 0 0 0 0;
  2564. -webkit-border-radius: 0 0 0 0;
  2565. border-radius: 0 0 0 0;
  2566. }
  2567. .searchbox .textbox-button-right {
  2568. border-width: 0 0 0 1px;
  2569. }
  2570. .searchbox .textbox-button-left {
  2571. border-width: 0 1px 0 0;
  2572. }
  2573. .searchbox-button {
  2574. background: url('images/searchbox_button.png') no-repeat center center;
  2575. }
  2576. .searchbox .l-btn-plain {
  2577. background: #E0ECFF;
  2578. }
  2579. .searchbox .l-btn-plain-disabled,
  2580. .searchbox .l-btn-plain-disabled:hover {
  2581. opacity: 0.5;
  2582. filter: alpha(opacity=50);
  2583. }
  2584. .slider-disabled {
  2585. opacity: 0.5;
  2586. filter: alpha(opacity=50);
  2587. }
  2588. .slider-h {
  2589. height: 22px;
  2590. }
  2591. .slider-v {
  2592. width: 22px;
  2593. }
  2594. .slider-inner {
  2595. position: relative;
  2596. height: 6px;
  2597. top: 7px;
  2598. border-width: 1px;
  2599. border-style: solid;
  2600. border-radius: 5px;
  2601. }
  2602. .slider-handle {
  2603. position: absolute;
  2604. display: block;
  2605. outline: none;
  2606. width: 20px;
  2607. height: 20px;
  2608. top: 50%;
  2609. margin-top: -10px;
  2610. margin-left: -10px;
  2611. }
  2612. .slider-tip {
  2613. position: absolute;
  2614. display: inline-block;
  2615. line-height: 12px;
  2616. font-size: 14px;
  2617. white-space: nowrap;
  2618. top: -22px;
  2619. }
  2620. .slider-rule {
  2621. position: relative;
  2622. top: 15px;
  2623. }
  2624. .slider-rule span {
  2625. position: absolute;
  2626. display: inline-block;
  2627. font-size: 0;
  2628. height: 5px;
  2629. border-width: 0 0 0 1px;
  2630. border-style: solid;
  2631. }
  2632. .slider-rulelabel {
  2633. position: relative;
  2634. top: 20px;
  2635. }
  2636. .slider-rulelabel span {
  2637. position: absolute;
  2638. display: inline-block;
  2639. font-size: 14px;
  2640. }
  2641. .slider-v .slider-inner {
  2642. width: 6px;
  2643. left: 7px;
  2644. top: 0;
  2645. float: left;
  2646. }
  2647. .slider-v .slider-handle {
  2648. left: 50%;
  2649. margin-top: -10px;
  2650. }
  2651. .slider-v .slider-tip {
  2652. left: -10px;
  2653. margin-top: -6px;
  2654. }
  2655. .slider-v .slider-rule {
  2656. float: left;
  2657. top: 0;
  2658. left: 16px;
  2659. }
  2660. .slider-v .slider-rule span {
  2661. width: 5px;
  2662. height: 'auto';
  2663. border-left: 0;
  2664. border-width: 1px 0 0 0;
  2665. border-style: solid;
  2666. }
  2667. .slider-v .slider-rulelabel {
  2668. float: left;
  2669. top: 0;
  2670. left: 23px;
  2671. }
  2672. .slider-handle {
  2673. background: url('images/slider_handle.png') no-repeat;
  2674. }
  2675. .slider-inner {
  2676. border-color: #95B8E7;
  2677. background: #E0ECFF;
  2678. }
  2679. .slider-rule span {
  2680. border-color: #95B8E7;
  2681. }
  2682. .slider-rulelabel span {
  2683. color: #000000;
  2684. }
  2685. .menu {
  2686. position: absolute;
  2687. margin: 0;
  2688. padding: 2px;
  2689. border-width: 1px;
  2690. border-style: solid;
  2691. overflow: hidden;
  2692. }
  2693. .menu-inline {
  2694. position: relative;
  2695. }
  2696. .menu-item {
  2697. position: relative;
  2698. margin: 0;
  2699. padding: 0;
  2700. overflow: hidden;
  2701. white-space: nowrap;
  2702. cursor: pointer;
  2703. border-width: 1px;
  2704. border-style: solid;
  2705. }
  2706. .menu-text {
  2707. height: 20px;
  2708. line-height: 20px;
  2709. float: left;
  2710. padding-left: 28px;
  2711. }
  2712. .menu-icon {
  2713. position: absolute;
  2714. width: 16px;
  2715. height: 16px;
  2716. left: 2px;
  2717. top: 50%;
  2718. margin-top: -8px;
  2719. }
  2720. .menu-rightarrow {
  2721. position: absolute;
  2722. width: 16px;
  2723. height: 16px;
  2724. right: 0;
  2725. top: 50%;
  2726. margin-top: -8px;
  2727. }
  2728. .menu-line {
  2729. position: absolute;
  2730. left: 26px;
  2731. top: 0;
  2732. height: 2000px;
  2733. font-size: 1px;
  2734. }
  2735. .menu-sep {
  2736. margin: 3px 0px 3px 25px;
  2737. font-size: 1px;
  2738. }
  2739. .menu-noline .menu-line {
  2740. display: none;
  2741. }
  2742. .menu-noline .menu-sep {
  2743. margin-left: 0;
  2744. margin-right: 0;
  2745. }
  2746. .menu-active {
  2747. -moz-border-radius: 5px 5px 5px 5px;
  2748. -webkit-border-radius: 5px 5px 5px 5px;
  2749. border-radius: 5px 5px 5px 5px;
  2750. }
  2751. .menu-item-disabled {
  2752. opacity: 0.5;
  2753. filter: alpha(opacity=50);
  2754. cursor: default;
  2755. }
  2756. .menu-text,
  2757. .menu-text span {
  2758. font-size: 14px;
  2759. }
  2760. .menu-shadow {
  2761. position: absolute;
  2762. -moz-border-radius: 5px 5px 5px 5px;
  2763. -webkit-border-radius: 5px 5px 5px 5px;
  2764. border-radius: 5px 5px 5px 5px;
  2765. background: #ccc;
  2766. -moz-box-shadow: 2px 2px 3px #cccccc;
  2767. -webkit-box-shadow: 2px 2px 3px #cccccc;
  2768. box-shadow: 2px 2px 3px #cccccc;
  2769. filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
  2770. }
  2771. .menu-rightarrow {
  2772. background: url('images/menu_arrows.png') no-repeat -32px center;
  2773. }
  2774. .menu-line {
  2775. border-left: 1px solid #ccc;
  2776. border-right: 1px solid #fff;
  2777. }
  2778. .menu-sep {
  2779. border-top: 1px solid #ccc;
  2780. border-bottom: 1px solid #fff;
  2781. }
  2782. .menu {
  2783. background-color: #fafafa;
  2784. border-color: #ddd;
  2785. color: #444;
  2786. }
  2787. .menu-content {
  2788. background: #ffffff;
  2789. }
  2790. .menu-item {
  2791. border-color: transparent;
  2792. _border-color: #fafafa;
  2793. }
  2794. .menu-active {
  2795. border-color: #b7d2ff;
  2796. color: #000000;
  2797. background: #eaf2ff;
  2798. }
  2799. .menu-active-disabled {
  2800. border-color: transparent;
  2801. background: transparent;
  2802. color: #444;
  2803. }
  2804. .m-btn-downarrow,
  2805. .s-btn-downarrow {
  2806. display: inline-block;
  2807. position: absolute;
  2808. width: 16px;
  2809. height: 16px;
  2810. font-size: 1px;
  2811. right: 0;
  2812. top: 50%;
  2813. margin-top: -8px;
  2814. }
  2815. .m-btn-active,
  2816. .s-btn-active {
  2817. background: #eaf2ff;
  2818. color: #000000;
  2819. border: 1px solid #b7d2ff;
  2820. filter: none;
  2821. }
  2822. .m-btn-plain-active,
  2823. .s-btn-plain-active {
  2824. background: transparent;
  2825. padding: 0;
  2826. border-width: 1px;
  2827. border-style: solid;
  2828. -moz-border-radius: 5px 5px 5px 5px;
  2829. -webkit-border-radius: 5px 5px 5px 5px;
  2830. border-radius: 5px 5px 5px 5px;
  2831. }
  2832. .m-btn .l-btn-left .l-btn-text {
  2833. margin-right: 20px;
  2834. }
  2835. .m-btn .l-btn-icon-right .l-btn-text {
  2836. margin-right: 40px;
  2837. }
  2838. .m-btn .l-btn-icon-right .l-btn-icon {
  2839. right: 20px;
  2840. }
  2841. .m-btn .l-btn-icon-top .l-btn-text {
  2842. margin-right: 4px;
  2843. margin-bottom: 14px;
  2844. }
  2845. .m-btn .l-btn-icon-bottom .l-btn-text {
  2846. margin-right: 4px;
  2847. margin-bottom: 34px;
  2848. }
  2849. .m-btn .l-btn-icon-bottom .l-btn-icon {
  2850. top: auto;
  2851. bottom: 20px;
  2852. }
  2853. .m-btn .l-btn-icon-top .m-btn-downarrow,
  2854. .m-btn .l-btn-icon-bottom .m-btn-downarrow {
  2855. top: auto;
  2856. bottom: 0px;
  2857. left: 50%;
  2858. margin-left: -8px;
  2859. }
  2860. .m-btn-line {
  2861. display: inline-block;
  2862. position: absolute;
  2863. font-size: 1px;
  2864. display: none;
  2865. }
  2866. .m-btn .l-btn-left .m-btn-line {
  2867. right: 0;
  2868. width: 16px;
  2869. height: 500px;
  2870. border-style: solid;
  2871. border-color: #aac5e7;
  2872. border-width: 0 0 0 1px;
  2873. }
  2874. .m-btn .l-btn-icon-top .m-btn-line,
  2875. .m-btn .l-btn-icon-bottom .m-btn-line {
  2876. left: 0;
  2877. bottom: 0;
  2878. width: 500px;
  2879. height: 16px;
  2880. border-width: 1px 0 0 0;
  2881. }
  2882. .m-btn-large .l-btn-icon-right .l-btn-text {
  2883. margin-right: 56px;
  2884. }
  2885. .m-btn-large .l-btn-icon-bottom .l-btn-text {
  2886. margin-bottom: 50px;
  2887. }
  2888. .m-btn-downarrow,
  2889. .s-btn-downarrow {
  2890. background: url('images/menu_arrows.png') no-repeat 0 center;
  2891. }
  2892. .m-btn-plain-active,
  2893. .s-btn-plain-active {
  2894. border-color: #b7d2ff;
  2895. background-color: #eaf2ff;
  2896. color: #000000;
  2897. }
  2898. .s-btn:hover .m-btn-line,
  2899. .s-btn-active .m-btn-line,
  2900. .s-btn-plain-active .m-btn-line {
  2901. display: inline-block;
  2902. }
  2903. .l-btn:hover .s-btn-downarrow,
  2904. .s-btn-active .s-btn-downarrow,
  2905. .s-btn-plain-active .s-btn-downarrow {
  2906. border-style: solid;
  2907. border-color: #aac5e7;
  2908. border-width: 0 0 0 1px;
  2909. }
  2910. .messager-body {
  2911. padding: 10px 10px 30px 10px;
  2912. overflow: auto;
  2913. }
  2914. .messager-button {
  2915. text-align: center;
  2916. padding: 5px;
  2917. }
  2918. .messager-button .l-btn {
  2919. width: 70px;
  2920. }
  2921. .messager-icon {
  2922. float: left;
  2923. width: 32px;
  2924. height: 32px;
  2925. margin: 0 10px 10px 0;
  2926. }
  2927. .messager-error {
  2928. background: url('images/messager_icons.png') no-repeat scroll -64px 0;
  2929. }
  2930. .messager-info {
  2931. background: url('images/messager_icons.png') no-repeat scroll 0 0;
  2932. }
  2933. .messager-question {
  2934. background: url('images/messager_icons.png') no-repeat scroll -32px 0;
  2935. }
  2936. .messager-warning {
  2937. background: url('images/messager_icons.png') no-repeat scroll -96px 0;
  2938. }
  2939. .messager-progress {
  2940. padding: 10px;
  2941. }
  2942. .messager-p-msg {
  2943. margin-bottom: 5px;
  2944. }
  2945. .messager-body .messager-input {
  2946. width: 100%;
  2947. padding: 4px 0;
  2948. outline-style: none;
  2949. border: 1px solid #95B8E7;
  2950. }
  2951. .window-thinborder .messager-button {
  2952. padding-bottom: 8px;
  2953. }
  2954. .tree {
  2955. margin: 0;
  2956. padding: 0;
  2957. list-style-type: none;
  2958. }
  2959. .tree li {
  2960. white-space: nowrap;
  2961. }
  2962. .tree li ul {
  2963. list-style-type: none;
  2964. margin: 0;
  2965. padding: 0;
  2966. }
  2967. .tree-node {
  2968. height: 26px;
  2969. white-space: nowrap;
  2970. cursor: pointer;
  2971. }
  2972. .tree-hit {
  2973. cursor: pointer;
  2974. }
  2975. .tree-expanded,
  2976. .tree-collapsed,
  2977. .tree-folder,
  2978. .tree-file,
  2979. .tree-checkbox,
  2980. .tree-indent {
  2981. display: inline-block;
  2982. width: 16px;
  2983. height: 18px;
  2984. margin: 4px 0;
  2985. vertical-align: middle;
  2986. overflow: hidden;
  2987. }
  2988. .tree-expanded {
  2989. background: url('images/tree_icons.png') no-repeat -18px 0px;
  2990. }
  2991. .tree-expanded-hover {
  2992. background: url('images/tree_icons.png') no-repeat -50px 0px;
  2993. }
  2994. .tree-collapsed {
  2995. background: url('images/tree_icons.png') no-repeat 0px 0px;
  2996. }
  2997. .tree-collapsed-hover {
  2998. background: url('images/tree_icons.png') no-repeat -32px 0px;
  2999. }
  3000. .tree-lines .tree-expanded,
  3001. .tree-lines .tree-root-first .tree-expanded {
  3002. background: url('images/tree_icons.png') no-repeat -144px 0;
  3003. }
  3004. .tree-lines .tree-collapsed,
  3005. .tree-lines .tree-root-first .tree-collapsed {
  3006. background: url('images/tree_icons.png') no-repeat -128px 0;
  3007. }
  3008. .tree-lines .tree-node-last .tree-expanded,
  3009. .tree-lines .tree-root-one .tree-expanded {
  3010. background: url('images/tree_icons.png') no-repeat -80px 0;
  3011. }
  3012. .tree-lines .tree-node-last .tree-collapsed,
  3013. .tree-lines .tree-root-one .tree-collapsed {
  3014. background: url('images/tree_icons.png') no-repeat -64px 0;
  3015. }
  3016. .tree-line {
  3017. background: url('images/tree_icons.png') no-repeat -176px 0;
  3018. }
  3019. .tree-join {
  3020. background: url('images/tree_icons.png') no-repeat -192px 0;
  3021. }
  3022. .tree-joinbottom {
  3023. background: url('images/tree_icons.png') no-repeat -160px 0;
  3024. }
  3025. .tree-folder {
  3026. background: url('images/tree_icons.png') no-repeat -208px 0;
  3027. }
  3028. .tree-folder-open {
  3029. background: url('images/tree_icons.png') no-repeat -224px 0;
  3030. }
  3031. .tree-file {
  3032. background: url('images/tree_icons.png') no-repeat -240px 0;
  3033. }
  3034. .tree-loading {
  3035. background: url('images/loading.gif') no-repeat center center;
  3036. }
  3037. .tree-checkbox0 {
  3038. background: url('images/tree_icons.png') no-repeat -208px -18px;
  3039. }
  3040. .tree-checkbox1 {
  3041. background: url('images/tree_icons.png') no-repeat -224px -18px;
  3042. }
  3043. .tree-checkbox2 {
  3044. background: url('images/tree_icons.png') no-repeat -240px -18px;
  3045. }
  3046. .tree-title {
  3047. font-size: 14px;
  3048. display: inline-block;
  3049. text-decoration: none;
  3050. vertical-align: middle;
  3051. white-space: nowrap;
  3052. padding: 0 2px;
  3053. margin: 4px 0;
  3054. height: 18px;
  3055. line-height: 18px;
  3056. }
  3057. .tree-node-proxy {
  3058. font-size: 14px;
  3059. line-height: 20px;
  3060. padding: 0 2px 0 20px;
  3061. border-width: 1px;
  3062. border-style: solid;
  3063. z-index: 9900000;
  3064. }
  3065. .tree-dnd-icon {
  3066. display: inline-block;
  3067. position: absolute;
  3068. width: 16px;
  3069. height: 18px;
  3070. left: 2px;
  3071. top: 50%;
  3072. margin-top: -9px;
  3073. }
  3074. .tree-dnd-yes {
  3075. background: url('images/tree_icons.png') no-repeat -256px 0;
  3076. }
  3077. .tree-dnd-no {
  3078. background: url('images/tree_icons.png') no-repeat -256px -18px;
  3079. }
  3080. .tree-node-top {
  3081. border-top: 1px dotted red;
  3082. }
  3083. .tree-node-bottom {
  3084. border-bottom: 1px dotted red;
  3085. }
  3086. .tree-node-append .tree-title {
  3087. border: 1px dotted red;
  3088. }
  3089. .tree-editor {
  3090. border: 1px solid #95B8E7;
  3091. font-size: 14px;
  3092. height: 26px;
  3093. line-height: 26px;
  3094. padding: 0 4px;
  3095. margin: 0;
  3096. width: 80px;
  3097. outline-style: none;
  3098. vertical-align: middle;
  3099. position: absolute;
  3100. top: 0;
  3101. }
  3102. .tree-node-proxy {
  3103. background-color: #ffffff;
  3104. color: #000000;
  3105. border-color: #95B8E7;
  3106. }
  3107. .tree-node-hover {
  3108. background: #eaf2ff;
  3109. color: #000000;
  3110. }
  3111. .tree-node-selected {
  3112. background: #ffe48d;
  3113. color: #000000;
  3114. }
  3115. .tree-node-hidden {
  3116. display: none;
  3117. }
  3118. .inputbox {
  3119. display: inline-block;
  3120. vertical-align: middle;
  3121. overflow: hidden;
  3122. white-space: nowrap;
  3123. margin: 0;
  3124. padding: 0;
  3125. }
  3126. .validatebox-invalid {
  3127. border-color: #ffa8a8;
  3128. background-color: #fff3f3;
  3129. color: #000;
  3130. }
  3131. .tooltip {
  3132. position: absolute;
  3133. display: none;
  3134. z-index: 9900000;
  3135. outline: none;
  3136. opacity: 1;
  3137. filter: alpha(opacity=100);
  3138. padding: 5px;
  3139. border-width: 1px;
  3140. border-style: solid;
  3141. border-radius: 5px;
  3142. -moz-border-radius: 5px 5px 5px 5px;
  3143. -webkit-border-radius: 5px 5px 5px 5px;
  3144. border-radius: 5px 5px 5px 5px;
  3145. }
  3146. .tooltip-content {
  3147. font-size: 14px;
  3148. }
  3149. .tooltip-arrow-outer,
  3150. .tooltip-arrow {
  3151. position: absolute;
  3152. width: 0;
  3153. height: 0;
  3154. line-height: 0;
  3155. font-size: 0;
  3156. border-style: solid;
  3157. border-width: 6px;
  3158. border-color: transparent;
  3159. _border-color: tomato;
  3160. _filter: chroma(color=tomato);
  3161. }
  3162. .tooltip-arrow {
  3163. display: none \9;
  3164. }
  3165. .tooltip-right .tooltip-arrow-outer {
  3166. left: 0;
  3167. top: 50%;
  3168. margin: -6px 0 0 -13px;
  3169. }
  3170. .tooltip-right .tooltip-arrow {
  3171. left: 0;
  3172. top: 50%;
  3173. margin: -6px 0 0 -12px;
  3174. }
  3175. .tooltip-left .tooltip-arrow-outer {
  3176. right: 0;
  3177. top: 50%;
  3178. margin: -6px -13px 0 0;
  3179. }
  3180. .tooltip-left .tooltip-arrow {
  3181. right: 0;
  3182. top: 50%;
  3183. margin: -6px -12px 0 0;
  3184. }
  3185. .tooltip-top .tooltip-arrow-outer {
  3186. bottom: 0;
  3187. left: 50%;
  3188. margin: 0 0 -13px -6px;
  3189. }
  3190. .tooltip-top .tooltip-arrow {
  3191. bottom: 0;
  3192. left: 50%;
  3193. margin: 0 0 -12px -6px;
  3194. }
  3195. .tooltip-bottom .tooltip-arrow-outer {
  3196. top: 0;
  3197. left: 50%;
  3198. margin: -13px 0 0 -6px;
  3199. }
  3200. .tooltip-bottom .tooltip-arrow {
  3201. top: 0;
  3202. left: 50%;
  3203. margin: -12px 0 0 -6px;
  3204. }
  3205. .tooltip {
  3206. background-color: #ffffff;
  3207. border-color: #95B8E7;
  3208. color: #000000;
  3209. }
  3210. .tooltip-right .tooltip-arrow-outer {
  3211. border-right-color: #95B8E7;
  3212. }
  3213. .tooltip-right .tooltip-arrow {
  3214. border-right-color: #ffffff;
  3215. }
  3216. .tooltip-left .tooltip-arrow-outer {
  3217. border-left-color: #95B8E7;
  3218. }
  3219. .tooltip-left .tooltip-arrow {
  3220. border-left-color: #ffffff;
  3221. }
  3222. .tooltip-top .tooltip-arrow-outer {
  3223. border-top-color: #95B8E7;
  3224. }
  3225. .tooltip-top .tooltip-arrow {
  3226. border-top-color: #ffffff;
  3227. }
  3228. .tooltip-bottom .tooltip-arrow-outer {
  3229. border-bottom-color: #95B8E7;
  3230. }
  3231. .tooltip-bottom .tooltip-arrow {
  3232. border-bottom-color: #ffffff;
  3233. }
  3234. .switchbutton {
  3235. text-decoration: none;
  3236. display: inline-block;
  3237. overflow: hidden;
  3238. vertical-align: middle;
  3239. margin: 0;
  3240. padding: 0;
  3241. cursor: pointer;
  3242. background: #bbb;
  3243. border: 1px solid #bbb;
  3244. -moz-border-radius: 5px 5px 5px 5px;
  3245. -webkit-border-radius: 5px 5px 5px 5px;
  3246. border-radius: 5px 5px 5px 5px;
  3247. }
  3248. .switchbutton-inner {
  3249. display: inline-block;
  3250. overflow: hidden;
  3251. position: relative;
  3252. top: -1px;
  3253. left: -1px;
  3254. }
  3255. .switchbutton-on,
  3256. .switchbutton-off,
  3257. .switchbutton-handle {
  3258. display: inline-block;
  3259. text-align: center;
  3260. height: 100%;
  3261. float: left;
  3262. font-size: 14px;
  3263. -moz-border-radius: 5px 5px 5px 5px;
  3264. -webkit-border-radius: 5px 5px 5px 5px;
  3265. border-radius: 5px 5px 5px 5px;
  3266. }
  3267. .switchbutton-on {
  3268. background: #ffe48d;
  3269. color: #000000;
  3270. }
  3271. .switchbutton-off {
  3272. background-color: #ffffff;
  3273. color: #000000;
  3274. }
  3275. .switchbutton-on,
  3276. .switchbutton-reversed .switchbutton-off {
  3277. -moz-border-radius: 5px 0 0 5px;
  3278. -webkit-border-radius: 5px 0 0 5px;
  3279. border-radius: 5px 0 0 5px;
  3280. }
  3281. .switchbutton-off,
  3282. .switchbutton-reversed .switchbutton-on {
  3283. -moz-border-radius: 0 5px 5px 0;
  3284. -webkit-border-radius: 0 5px 5px 0;
  3285. border-radius: 0 5px 5px 0;
  3286. }
  3287. .switchbutton-handle {
  3288. position: absolute;
  3289. top: 0;
  3290. left: 50%;
  3291. background-color: #ffffff;
  3292. color: #000000;
  3293. border: 1px solid #bbb;
  3294. -moz-box-shadow: 0 0 3px 0 #bbb;
  3295. -webkit-box-shadow: 0 0 3px 0 #bbb;
  3296. box-shadow: 0 0 3px 0 #bbb;
  3297. }
  3298. .switchbutton-value {
  3299. position: absolute;
  3300. top: 0;
  3301. left: -5000px;
  3302. }
  3303. .switchbutton-disabled {
  3304. opacity: 0.5;
  3305. filter: alpha(opacity=50);
  3306. }
  3307. .switchbutton-disabled,
  3308. .switchbutton-readonly {
  3309. cursor: default;
  3310. }
  3311. .radiobutton {
  3312. position: relative;
  3313. border: 2px solid #ffab3f;
  3314. border-radius: 50%;
  3315. }
  3316. .radiobutton-inner {
  3317. position: absolute;
  3318. left: 0;
  3319. top: 0;
  3320. width: 100%;
  3321. height: 100%;
  3322. background: #ffab3f;
  3323. border-radius: 50%;
  3324. transform: scale(.6);
  3325. }
  3326. .radiobutton-disabled {
  3327. opacity: 0.6;
  3328. }
  3329. .radiobutton-value {
  3330. position: absolute;
  3331. overflow: hidden;
  3332. width: 1px;
  3333. height: 1px;
  3334. left: -999px;
  3335. }
  3336. .checkbox {
  3337. position: relative;
  3338. border: 2px solid #ffab3f;
  3339. -moz-border-radius: 5px 5px 5px 5px;
  3340. -webkit-border-radius: 5px 5px 5px 5px;
  3341. border-radius: 5px 5px 5px 5px;
  3342. }
  3343. .checkbox-checked {
  3344. border: 0;
  3345. background: #ffab3f;
  3346. }
  3347. .checkbox-inner {
  3348. position: absolute;
  3349. left: 0;
  3350. top: 0;
  3351. width: 100%;
  3352. height: 100%;
  3353. }
  3354. .checkbox path {
  3355. stroke-width: 2px;
  3356. }
  3357. .checkbox-disabled {
  3358. opacity: 0.6;
  3359. }
  3360. .checkbox-value {
  3361. position: absolute;
  3362. overflow: hidden;
  3363. width: 1px;
  3364. height: 1px;
  3365. left: -999px;
  3366. }
  3367. .sidemenu .tree-hit {
  3368. background-image: none;
  3369. }
  3370. .sidemenu-default-icon {
  3371. background-image: none;
  3372. width: 0;
  3373. }
  3374. .sidemenu .accordion .accordion-header,
  3375. .sidemenu .accordion .accordion-body {
  3376. border-bottom-color: transparent;
  3377. background: transparent;
  3378. }
  3379. .sidemenu .accordion .accordion-header {
  3380. color: #0E2D5F;
  3381. }
  3382. .sidemenu .accordion-header .panel-title {
  3383. height: 30px;
  3384. line-height: 30px;
  3385. color: #0E2D5F;
  3386. }
  3387. .sidemenu .accordion-header:hover {
  3388. background: #eaf2ff;
  3389. color: #0E2D5F;
  3390. }
  3391. .sidemenu .tree-node-hover {
  3392. background: #eaf2ff;
  3393. color: #0E2D5F;
  3394. }
  3395. .sidemenu .tree-node-selected {
  3396. border-right: 2px solid #ffab3f;
  3397. color: #000000;
  3398. background: #ffe48d;
  3399. }
  3400. .sidemenu .tree-node {
  3401. height: 40px;
  3402. }
  3403. .sidemenu .tree-title {
  3404. margin: 11px 0;
  3405. }
  3406. .sidemenu .tree-node-nonleaf {
  3407. position: relative;
  3408. }
  3409. .sidemenu .tree-node-nonleaf::after {
  3410. display: inline-block;
  3411. content: '';
  3412. position: absolute;
  3413. top: 50%;
  3414. margin-top: -8px;
  3415. background: url('images/accordion_arrows.png') no-repeat 0 0;
  3416. width: 16px;
  3417. height: 16px;
  3418. right: 5px;
  3419. }
  3420. .sidemenu .tree-node-nonleaf-collapsed::after {
  3421. background: url('images/accordion_arrows.png') no-repeat -16px 0;
  3422. }
  3423. .sidemenu-collapsed .panel-icon {
  3424. left: 50%;
  3425. margin-left: -8px;
  3426. }
  3427. .sidemenu-tooltip {
  3428. padding: 0;
  3429. margin: 0 -12px;
  3430. border: 0;
  3431. }
  3432. .sidemenu-tooltip .tooltip-arrow-outer,
  3433. .sidemenu-tooltip .tooltip-arrow {
  3434. display: none;
  3435. }