easyui.css 70 KB

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