easyui.css 68 KB

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