easyui.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  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-with-icon {
  37. padding-left: 18px;
  38. }
  39. .panel-icon,
  40. .panel-tool {
  41. position: absolute;
  42. top: 50%;
  43. margin-top: -8px;
  44. height: 16px;
  45. overflow: hidden;
  46. }
  47. .panel-icon {
  48. left: 5px;
  49. width: 16px;
  50. }
  51. .panel-tool {
  52. right: 5px;
  53. width: auto;
  54. }
  55. .panel-tool a {
  56. display: inline-block;
  57. width: 16px;
  58. height: 16px;
  59. opacity: 0.6;
  60. filter: alpha(opacity=60);
  61. margin: 0 0 0 2px;
  62. vertical-align: top;
  63. }
  64. .panel-tool a:hover {
  65. opacity: 1;
  66. filter: alpha(opacity=100);
  67. background-color: #777;
  68. -moz-border-radius: 3px 3px 3px 3px;
  69. -webkit-border-radius: 3px 3px 3px 3px;
  70. border-radius: 3px 3px 3px 3px;
  71. }
  72. .panel-loading {
  73. padding: 11px 0px 10px 30px;
  74. }
  75. .panel-noscroll {
  76. overflow: hidden;
  77. }
  78. .panel-fit,
  79. .panel-fit body {
  80. height: 100%;
  81. margin: 0;
  82. padding: 0;
  83. border: 0;
  84. overflow: hidden;
  85. }
  86. .panel-loading {
  87. background: url('images/loading.gif') no-repeat 10px 10px;
  88. }
  89. .panel-tool-close {
  90. background: url('images/panel_tools.png') no-repeat -16px 0px;
  91. }
  92. .panel-tool-min {
  93. background: url('images/panel_tools.png') no-repeat 0px 0px;
  94. }
  95. .panel-tool-max {
  96. background: url('images/panel_tools.png') no-repeat 0px -16px;
  97. }
  98. .panel-tool-restore {
  99. background: url('images/panel_tools.png') no-repeat -16px -16px;
  100. }
  101. .panel-tool-collapse {
  102. background: url('images/panel_tools.png') no-repeat -32px 0;
  103. }
  104. .panel-tool-expand {
  105. background: url('images/panel_tools.png') no-repeat -32px -16px;
  106. }
  107. .panel-header,
  108. .panel-body {
  109. border-color: #000;
  110. }
  111. .panel-header {
  112. background-color: #3d3d3d;
  113. background: -webkit-linear-gradient(top,#454545 0,#383838 100%);
  114. background: -moz-linear-gradient(top,#454545 0,#383838 100%);
  115. background: -o-linear-gradient(top,#454545 0,#383838 100%);
  116. background: linear-gradient(to bottom,#454545 0,#383838 100%);
  117. background-repeat: repeat-x;
  118. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0);
  119. }
  120. .panel-body {
  121. background-color: #666;
  122. color: #fff;
  123. font-size: 12px;
  124. }
  125. .panel-title {
  126. font-size: 12px;
  127. font-weight: bold;
  128. color: #fff;
  129. height: 16px;
  130. line-height: 16px;
  131. }
  132. .accordion {
  133. overflow: hidden;
  134. border-width: 1px;
  135. border-style: solid;
  136. }
  137. .accordion .accordion-header {
  138. border-width: 0 0 1px;
  139. cursor: pointer;
  140. }
  141. .accordion .accordion-body {
  142. border-width: 0 0 1px;
  143. }
  144. .accordion-noborder {
  145. border-width: 0;
  146. }
  147. .accordion-noborder .accordion-header {
  148. border-width: 0 0 1px;
  149. }
  150. .accordion-noborder .accordion-body {
  151. border-width: 0 0 1px;
  152. }
  153. .accordion-collapse {
  154. background: url('images/accordion_arrows.png') no-repeat 0 0;
  155. }
  156. .accordion-expand {
  157. background: url('images/accordion_arrows.png') no-repeat -16px 0;
  158. }
  159. .accordion {
  160. background: #666;
  161. border-color: #000;
  162. }
  163. .accordion .accordion-header {
  164. background: #3d3d3d;
  165. filter: none;
  166. }
  167. .accordion .accordion-header-selected {
  168. background: #0052A3;
  169. }
  170. .accordion .accordion-header-selected .panel-title {
  171. color: #fff;
  172. }
  173. .window {
  174. overflow: hidden;
  175. padding: 5px;
  176. border-width: 1px;
  177. border-style: solid;
  178. }
  179. .window .window-header {
  180. background: transparent;
  181. padding: 0px 0px 6px 0px;
  182. }
  183. .window .window-body {
  184. border-width: 1px;
  185. border-style: solid;
  186. border-top-width: 0px;
  187. }
  188. .window .window-body-noheader {
  189. border-top-width: 1px;
  190. }
  191. .window .window-header .panel-icon,
  192. .window .window-header .panel-tool {
  193. top: 50%;
  194. margin-top: -11px;
  195. }
  196. .window .window-header .panel-icon {
  197. left: 1px;
  198. }
  199. .window .window-header .panel-tool {
  200. right: 1px;
  201. }
  202. .window .window-header .panel-with-icon {
  203. padding-left: 18px;
  204. }
  205. .window-proxy {
  206. position: absolute;
  207. overflow: hidden;
  208. }
  209. .window-proxy-mask {
  210. position: absolute;
  211. filter: alpha(opacity=5);
  212. opacity: 0.05;
  213. }
  214. .window-mask {
  215. position: absolute;
  216. left: 0;
  217. top: 0;
  218. width: 100%;
  219. height: 100%;
  220. filter: alpha(opacity=40);
  221. opacity: 0.40;
  222. font-size: 1px;
  223. *zoom: 1;
  224. overflow: hidden;
  225. }
  226. .window,
  227. .window-shadow {
  228. position: absolute;
  229. -moz-border-radius: 5px 5px 5px 5px;
  230. -webkit-border-radius: 5px 5px 5px 5px;
  231. border-radius: 5px 5px 5px 5px;
  232. }
  233. .window-shadow {
  234. background: #777;
  235. -moz-box-shadow: 2px 2px 3px #787878;
  236. -webkit-box-shadow: 2px 2px 3px #787878;
  237. box-shadow: 2px 2px 3px #787878;
  238. filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
  239. }
  240. .window,
  241. .window .window-body {
  242. border-color: #000;
  243. }
  244. .window {
  245. background-color: #3d3d3d;
  246. background: -webkit-linear-gradient(top,#454545 0,#383838 20%);
  247. background: -moz-linear-gradient(top,#454545 0,#383838 20%);
  248. background: -o-linear-gradient(top,#454545 0,#383838 20%);
  249. background: linear-gradient(to bottom,#454545 0,#383838 20%);
  250. background-repeat: repeat-x;
  251. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0);
  252. }
  253. .window-proxy {
  254. border: 1px dashed #000;
  255. }
  256. .window-proxy-mask,
  257. .window-mask {
  258. background: #000;
  259. }
  260. .dialog-content {
  261. overflow: auto;
  262. }
  263. .dialog-toolbar {
  264. padding: 2px 5px;
  265. }
  266. .dialog-tool-separator {
  267. float: left;
  268. height: 24px;
  269. border-left: 1px solid #444;
  270. border-right: 1px solid #777;
  271. margin: 2px 1px;
  272. }
  273. .dialog-button {
  274. padding: 5px;
  275. text-align: right;
  276. }
  277. .dialog-button .l-btn {
  278. margin-left: 5px;
  279. }
  280. .dialog-toolbar,
  281. .dialog-button {
  282. background: #555;
  283. }
  284. .dialog-toolbar {
  285. border-bottom: 1px solid #222;
  286. }
  287. .dialog-button {
  288. border-top: 1px solid #222;
  289. }
  290. .textbox {
  291. border: 1px solid #000;
  292. vertical-align: middle;
  293. }
  294. .combo {
  295. display: inline-block;
  296. white-space: nowrap;
  297. margin: 0;
  298. padding: 0;
  299. border-width: 1px;
  300. border-style: solid;
  301. overflow: hidden;
  302. vertical-align: middle;
  303. }
  304. .combo .combo-text {
  305. font-size: 12px;
  306. border: 0px;
  307. line-height: 20px;
  308. height: 20px;
  309. margin: 0;
  310. padding: 0px 2px;
  311. *margin-top: -1px;
  312. *height: 18px;
  313. *line-height: 18px;
  314. _height: 18px;
  315. _line-height: 18px;
  316. vertical-align: baseline;
  317. }
  318. .combo-arrow {
  319. width: 18px;
  320. height: 20px;
  321. overflow: hidden;
  322. display: inline-block;
  323. vertical-align: top;
  324. cursor: pointer;
  325. opacity: 0.6;
  326. filter: alpha(opacity=60);
  327. }
  328. .combo-arrow-hover {
  329. opacity: 1.0;
  330. filter: alpha(opacity=100);
  331. }
  332. .combo-panel {
  333. overflow: auto;
  334. }
  335. .combo-arrow {
  336. background: url('images/combo_arrow.png') no-repeat center center;
  337. }
  338. .combo,
  339. .combo-panel {
  340. background-color: #666;
  341. }
  342. .combo {
  343. border-color: #000;
  344. background-color: #666;
  345. }
  346. .combo-arrow {
  347. background-color: #3d3d3d;
  348. }
  349. .combo-arrow-hover {
  350. background-color: #777;
  351. }
  352. .combobox-item,
  353. .combobox-group {
  354. font-size: 12px;
  355. padding: 3px;
  356. padding-right: 0px;
  357. }
  358. .combobox-item-disabled {
  359. opacity: 0.5;
  360. filter: alpha(opacity=50);
  361. }
  362. .combobox-gitem {
  363. padding-left: 10px;
  364. }
  365. .combobox-group {
  366. font-weight: bold;
  367. }
  368. .combobox-item-hover {
  369. background-color: #777;
  370. color: #fff;
  371. }
  372. .combobox-item-selected {
  373. background-color: #0052A3;
  374. color: #fff;
  375. }
  376. .layout {
  377. position: relative;
  378. overflow: hidden;
  379. margin: 0;
  380. padding: 0;
  381. z-index: 0;
  382. }
  383. .layout-panel {
  384. position: absolute;
  385. overflow: hidden;
  386. }
  387. .layout-panel-east,
  388. .layout-panel-west {
  389. z-index: 2;
  390. }
  391. .layout-panel-north,
  392. .layout-panel-south {
  393. z-index: 3;
  394. }
  395. .layout-expand {
  396. position: absolute;
  397. padding: 0px;
  398. font-size: 1px;
  399. cursor: pointer;
  400. z-index: 1;
  401. }
  402. .layout-expand .panel-header,
  403. .layout-expand .panel-body {
  404. background: transparent;
  405. filter: none;
  406. overflow: hidden;
  407. }
  408. .layout-expand .panel-header {
  409. border-bottom-width: 0px;
  410. }
  411. .layout-split-proxy-h,
  412. .layout-split-proxy-v {
  413. position: absolute;
  414. font-size: 1px;
  415. display: none;
  416. z-index: 5;
  417. }
  418. .layout-split-proxy-h {
  419. width: 5px;
  420. cursor: e-resize;
  421. }
  422. .layout-split-proxy-v {
  423. height: 5px;
  424. cursor: n-resize;
  425. }
  426. .layout-mask {
  427. position: absolute;
  428. background: #fafafa;
  429. filter: alpha(opacity=10);
  430. opacity: 0.10;
  431. z-index: 4;
  432. }
  433. .layout-button-up {
  434. background: url('images/layout_arrows.png') no-repeat -16px -16px;
  435. }
  436. .layout-button-down {
  437. background: url('images/layout_arrows.png') no-repeat -16px 0;
  438. }
  439. .layout-button-left {
  440. background: url('images/layout_arrows.png') no-repeat 0 0;
  441. }
  442. .layout-button-right {
  443. background: url('images/layout_arrows.png') no-repeat 0 -16px;
  444. }
  445. .layout-split-proxy-h,
  446. .layout-split-proxy-v {
  447. background-color: #cccccc;
  448. }
  449. .layout-split-north {
  450. border-bottom: 5px solid #444;
  451. }
  452. .layout-split-south {
  453. border-top: 5px solid #444;
  454. }
  455. .layout-split-east {
  456. border-left: 5px solid #444;
  457. }
  458. .layout-split-west {
  459. border-right: 5px solid #444;
  460. }
  461. .layout-expand {
  462. background-color: #3d3d3d;
  463. }
  464. .layout-expand-over {
  465. background-color: #3d3d3d;
  466. }
  467. .tabs-container {
  468. overflow: hidden;
  469. }
  470. .tabs-header {
  471. border-width: 1px;
  472. border-style: solid;
  473. border-bottom-width: 0;
  474. position: relative;
  475. padding: 0;
  476. padding-top: 2px;
  477. overflow: hidden;
  478. }
  479. .tabs-header-plain {
  480. border: 0;
  481. background: transparent;
  482. }
  483. .tabs-scroller-left,
  484. .tabs-scroller-right {
  485. position: absolute;
  486. top: auto;
  487. bottom: 0;
  488. width: 18px;
  489. font-size: 1px;
  490. display: none;
  491. cursor: pointer;
  492. border-width: 1px;
  493. border-style: solid;
  494. }
  495. .tabs-scroller-left {
  496. left: 0;
  497. }
  498. .tabs-scroller-right {
  499. right: 0;
  500. }
  501. .tabs-tool {
  502. position: absolute;
  503. bottom: 0;
  504. padding: 1px;
  505. overflow: hidden;
  506. border-width: 1px;
  507. border-style: solid;
  508. }
  509. .tabs-header-plain .tabs-tool {
  510. padding: 0 1px;
  511. }
  512. .tabs-wrap {
  513. position: relative;
  514. left: 0;
  515. overflow: hidden;
  516. width: 100%;
  517. margin: 0;
  518. padding: 0;
  519. }
  520. .tabs-scrolling {
  521. margin-left: 18px;
  522. margin-right: 18px;
  523. }
  524. .tabs-disabled {
  525. opacity: 0.3;
  526. filter: alpha(opacity=30);
  527. }
  528. .tabs {
  529. list-style-type: none;
  530. height: 26px;
  531. margin: 0px;
  532. padding: 0px;
  533. padding-left: 4px;
  534. width: 5000px;
  535. border-style: solid;
  536. border-width: 0 0 1px 0;
  537. }
  538. .tabs li {
  539. float: left;
  540. display: inline-block;
  541. margin: 0 4px -1px 0;
  542. padding: 0;
  543. position: relative;
  544. border: 0;
  545. }
  546. .tabs li a.tabs-inner {
  547. display: inline-block;
  548. text-decoration: none;
  549. margin: 0;
  550. padding: 0 10px;
  551. height: 25px;
  552. line-height: 25px;
  553. text-align: center;
  554. white-space: nowrap;
  555. border-width: 1px;
  556. border-style: solid;
  557. -moz-border-radius: 5px 5px 0 0;
  558. -webkit-border-radius: 5px 5px 0 0;
  559. border-radius: 5px 5px 0 0;
  560. }
  561. .tabs li.tabs-selected a.tabs-inner {
  562. font-weight: bold;
  563. outline: none;
  564. }
  565. .tabs li.tabs-selected a:hover.tabs-inner {
  566. cursor: default;
  567. pointer: default;
  568. }
  569. .tabs li a.tabs-close,
  570. .tabs-p-tool {
  571. position: absolute;
  572. font-size: 1px;
  573. display: block;
  574. height: 12px;
  575. padding: 0;
  576. top: 50%;
  577. margin-top: -6px;
  578. overflow: hidden;
  579. }
  580. .tabs li a.tabs-close {
  581. width: 12px;
  582. right: 5px;
  583. opacity: 0.6;
  584. filter: alpha(opacity=60);
  585. }
  586. .tabs-p-tool {
  587. right: 16px;
  588. }
  589. .tabs-p-tool a {
  590. display: inline-block;
  591. font-size: 1px;
  592. width: 12px;
  593. height: 12px;
  594. margin: 0;
  595. opacity: 0.6;
  596. filter: alpha(opacity=60);
  597. }
  598. .tabs li a:hover.tabs-close,
  599. .tabs-p-tool a:hover {
  600. opacity: 1;
  601. filter: alpha(opacity=100);
  602. cursor: hand;
  603. cursor: pointer;
  604. }
  605. .tabs-with-icon {
  606. padding-left: 18px;
  607. }
  608. .tabs-icon {
  609. position: absolute;
  610. width: 16px;
  611. height: 16px;
  612. left: 10px;
  613. top: 50%;
  614. margin-top: -8px;
  615. }
  616. .tabs-title {
  617. font-size: 12px;
  618. }
  619. .tabs-closable {
  620. padding-right: 8px;
  621. }
  622. .tabs-panels {
  623. margin: 0px;
  624. padding: 0px;
  625. border-width: 1px;
  626. border-style: solid;
  627. border-top-width: 0;
  628. overflow: hidden;
  629. }
  630. .tabs-header-bottom {
  631. border-width: 0 1px 1px 1px;
  632. padding: 0 0 2px 0;
  633. }
  634. .tabs-header-bottom .tabs {
  635. border-width: 1px 0 0 0;
  636. }
  637. .tabs-header-bottom .tabs li {
  638. margin: -1px 4px 0 0;
  639. }
  640. .tabs-header-bottom .tabs li a.tabs-inner {
  641. -moz-border-radius: 0 0 5px 5px;
  642. -webkit-border-radius: 0 0 5px 5px;
  643. border-radius: 0 0 5px 5px;
  644. }
  645. .tabs-header-bottom .tabs-tool {
  646. top: 0;
  647. }
  648. .tabs-header-bottom .tabs-scroller-left,
  649. .tabs-header-bottom .tabs-scroller-right {
  650. top: 0;
  651. bottom: auto;
  652. }
  653. .tabs-panels-top {
  654. border-width: 1px 1px 0 1px;
  655. }
  656. .tabs-header-left {
  657. float: left;
  658. border-width: 1px 0 1px 1px;
  659. padding: 0;
  660. }
  661. .tabs-header-right {
  662. float: right;
  663. border-width: 1px 1px 1px 0;
  664. padding: 0;
  665. }
  666. .tabs-header-left .tabs-wrap,
  667. .tabs-header-right .tabs-wrap {
  668. height: 100%;
  669. }
  670. .tabs-header-left .tabs {
  671. height: 100%;
  672. padding: 4px 0 0 4px;
  673. border-width: 0 1px 0 0;
  674. }
  675. .tabs-header-right .tabs {
  676. height: 100%;
  677. padding: 4px 4px 0 0;
  678. border-width: 0 0 0 1px;
  679. }
  680. .tabs-header-left .tabs li,
  681. .tabs-header-right .tabs li {
  682. display: block;
  683. width: 100%;
  684. position: relative;
  685. }
  686. .tabs-header-left .tabs li {
  687. left: auto;
  688. right: 0;
  689. margin: 0 -1px 4px 0;
  690. float: right;
  691. }
  692. .tabs-header-right .tabs li {
  693. left: 0;
  694. right: auto;
  695. margin: 0 0 4px -1px;
  696. float: left;
  697. }
  698. .tabs-header-left .tabs li a.tabs-inner {
  699. display: block;
  700. text-align: left;
  701. -moz-border-radius: 5px 0 0 5px;
  702. -webkit-border-radius: 5px 0 0 5px;
  703. border-radius: 5px 0 0 5px;
  704. }
  705. .tabs-header-right .tabs li a.tabs-inner {
  706. display: block;
  707. text-align: left;
  708. -moz-border-radius: 0 5px 5px 0;
  709. -webkit-border-radius: 0 5px 5px 0;
  710. border-radius: 0 5px 5px 0;
  711. }
  712. .tabs-panels-right {
  713. float: right;
  714. border-width: 1px 1px 1px 0;
  715. }
  716. .tabs-panels-left {
  717. float: left;
  718. border-width: 1px 0 1px 1px;
  719. }
  720. .tabs-header-noborder,
  721. .tabs-panels-noborder {
  722. border: 0px;
  723. }
  724. .tabs-header-plain {
  725. border: 0px;
  726. background: transparent;
  727. }
  728. .tabs-scroller-left {
  729. background: #3d3d3d url('images/tabs_icons.png') no-repeat 1px center;
  730. }
  731. .tabs-scroller-right {
  732. background: #3d3d3d url('images/tabs_icons.png') no-repeat -15px center;
  733. }
  734. .tabs li a.tabs-close {
  735. background: url('images/tabs_icons.png') no-repeat -34px center;
  736. }
  737. .tabs li a.tabs-inner:hover {
  738. background: #777;
  739. color: #fff;
  740. filter: none;
  741. }
  742. .tabs li.tabs-selected a.tabs-inner {
  743. background-color: #666;
  744. color: #fff;
  745. background: -webkit-linear-gradient(top,#454545 0,#666 100%);
  746. background: -moz-linear-gradient(top,#454545 0,#666 100%);
  747. background: -o-linear-gradient(top,#454545 0,#666 100%);
  748. background: linear-gradient(to bottom,#454545 0,#666 100%);
  749. background-repeat: repeat-x;
  750. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#666,GradientType=0);
  751. }
  752. .tabs-header-bottom .tabs li.tabs-selected a.tabs-inner {
  753. background: -webkit-linear-gradient(top,#666 0,#454545 100%);
  754. background: -moz-linear-gradient(top,#666 0,#454545 100%);
  755. background: -o-linear-gradient(top,#666 0,#454545 100%);
  756. background: linear-gradient(to bottom,#666 0,#454545 100%);
  757. background-repeat: repeat-x;
  758. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#666,endColorstr=#454545,GradientType=0);
  759. }
  760. .tabs-header-left .tabs li.tabs-selected a.tabs-inner {
  761. background: -webkit-linear-gradient(left,#454545 0,#666 100%);
  762. background: -moz-linear-gradient(left,#454545 0,#666 100%);
  763. background: -o-linear-gradient(left,#454545 0,#666 100%);
  764. background: linear-gradient(to right,#454545 0,#666 100%);
  765. background-repeat: repeat-y;
  766. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#666,GradientType=1);
  767. }
  768. .tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  769. background: -webkit-linear-gradient(left,#666 0,#454545 100%);
  770. background: -moz-linear-gradient(left,#666 0,#454545 100%);
  771. background: -o-linear-gradient(left,#666 0,#454545 100%);
  772. background: linear-gradient(to right,#666 0,#454545 100%);
  773. background-repeat: repeat-y;
  774. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#666,endColorstr=#454545,GradientType=1);
  775. }
  776. .tabs li a.tabs-inner {
  777. color: #fff;
  778. background-color: #3d3d3d;
  779. background: -webkit-linear-gradient(top,#454545 0,#383838 100%);
  780. background: -moz-linear-gradient(top,#454545 0,#383838 100%);
  781. background: -o-linear-gradient(top,#454545 0,#383838 100%);
  782. background: linear-gradient(to bottom,#454545 0,#383838 100%);
  783. background-repeat: repeat-x;
  784. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0);
  785. }
  786. .tabs-header,
  787. .tabs-tool {
  788. background-color: #3d3d3d;
  789. }
  790. .tabs-header-plain {
  791. background: transparent;
  792. }
  793. .tabs-header,
  794. .tabs-scroller-left,
  795. .tabs-scroller-right,
  796. .tabs-tool,
  797. .tabs,
  798. .tabs-panels,
  799. .tabs li a.tabs-inner,
  800. .tabs li.tabs-selected a.tabs-inner,
  801. .tabs-header-bottom .tabs li.tabs-selected a.tabs-inner,
  802. .tabs-header-left .tabs li.tabs-selected a.tabs-inner,
  803. .tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  804. border-color: #000;
  805. }
  806. .tabs-p-tool a:hover,
  807. .tabs li a:hover.tabs-close,
  808. .tabs-scroller-over {
  809. background-color: #777;
  810. }
  811. .tabs li.tabs-selected a.tabs-inner {
  812. border-bottom: 1px solid #666;
  813. }
  814. .tabs-header-bottom .tabs li.tabs-selected a.tabs-inner {
  815. border-top: 1px solid #666;
  816. }
  817. .tabs-header-left .tabs li.tabs-selected a.tabs-inner {
  818. border-right: 1px solid #666;
  819. }
  820. .tabs-header-right .tabs li.tabs-selected a.tabs-inner {
  821. border-left: 1px solid #666;
  822. }
  823. .l-btn {
  824. text-decoration: none;
  825. display: inline-block;
  826. margin: 0;
  827. padding: 0;
  828. cursor: pointer;
  829. outline: none;
  830. text-align: center;
  831. vertical-align: middle;
  832. }
  833. .l-btn-plain {
  834. border: 0;
  835. padding: 1px;
  836. }
  837. .l-btn-disabled {
  838. color: #ccc;
  839. opacity: 0.5;
  840. filter: alpha(opacity=50);
  841. cursor: default;
  842. }
  843. .l-btn-left {
  844. display: inline-block;
  845. position: relative;
  846. overflow: hidden;
  847. margin: 0;
  848. padding: 0;
  849. vertical-align: top;
  850. }
  851. .l-btn-text {
  852. display: inline-block;
  853. vertical-align: top;
  854. width: auto;
  855. line-height: 24px;
  856. font-size: 12px;
  857. padding: 0;
  858. margin: 0 4px;
  859. }
  860. .l-btn-icon {
  861. display: inline-block;
  862. width: 16px;
  863. height: 16px;
  864. line-height: 16px;
  865. position: absolute;
  866. top: 50%;
  867. margin-top: -8px;
  868. font-size: 1px;
  869. }
  870. .l-btn span span .l-btn-empty {
  871. display: inline-block;
  872. margin: 0;
  873. width: 16px;
  874. height: 24px;
  875. font-size: 1px;
  876. vertical-align: top;
  877. }
  878. .l-btn span .l-btn-icon-left {
  879. padding: 0 0 0 20px;
  880. background-position: left center;
  881. }
  882. .l-btn span .l-btn-icon-right {
  883. padding: 0 20px 0 0;
  884. background-position: right center;
  885. }
  886. .l-btn-icon-left .l-btn-text {
  887. margin: 0 4px 0 24px;
  888. }
  889. .l-btn-icon-left .l-btn-icon {
  890. left: 4px;
  891. }
  892. .l-btn-icon-right .l-btn-text {
  893. margin: 0 24px 0 4px;
  894. }
  895. .l-btn-icon-right .l-btn-icon {
  896. right: 4px;
  897. }
  898. .l-btn-icon-top .l-btn-text {
  899. margin: 20px 4px 0 4px;
  900. }
  901. .l-btn-icon-top .l-btn-icon {
  902. top: 4px;
  903. left: 50%;
  904. margin: 0 0 0 -8px;
  905. }
  906. .l-btn-icon-bottom .l-btn-text {
  907. margin: 0 4px 20px 4px;
  908. }
  909. .l-btn-icon-bottom .l-btn-icon {
  910. top: auto;
  911. bottom: 4px;
  912. left: 50%;
  913. margin: 0 0 0 -8px;
  914. }
  915. .l-btn-left .l-btn-empty {
  916. margin: 0 4px;
  917. width: 16px;
  918. }
  919. .l-btn-plain:hover {
  920. padding: 0;
  921. }
  922. .l-btn-focus {
  923. outline: #0000FF dotted thin;
  924. }
  925. .l-btn-large .l-btn-text {
  926. line-height: 40px;
  927. }
  928. .l-btn-large .l-btn-icon {
  929. width: 32px;
  930. height: 32px;
  931. line-height: 32px;
  932. margin-top: -16px;
  933. }
  934. .l-btn-large .l-btn-icon-left .l-btn-text {
  935. margin-left: 40px;
  936. }
  937. .l-btn-large .l-btn-icon-right .l-btn-text {
  938. margin-right: 40px;
  939. }
  940. .l-btn-large .l-btn-icon-top .l-btn-text {
  941. margin-top: 36px;
  942. line-height: 24px;
  943. min-width: 32px;
  944. }
  945. .l-btn-large .l-btn-icon-top .l-btn-icon {
  946. margin: 0 0 0 -16px;
  947. }
  948. .l-btn-large .l-btn-icon-bottom .l-btn-text {
  949. margin-bottom: 36px;
  950. line-height: 24px;
  951. min-width: 32px;
  952. }
  953. .l-btn-large .l-btn-icon-bottom .l-btn-icon {
  954. margin: 0 0 0 -16px;
  955. }
  956. .l-btn-large .l-btn-left .l-btn-empty {
  957. margin: 0 4px;
  958. width: 32px;
  959. }
  960. .l-btn {
  961. color: #fff;
  962. background: #777;
  963. background-repeat: repeat-x;
  964. border: 1px solid #555;
  965. background: -webkit-linear-gradient(top,#919191 0,#6a6a6a 100%);
  966. background: -moz-linear-gradient(top,#919191 0,#6a6a6a 100%);
  967. background: -o-linear-gradient(top,#919191 0,#6a6a6a 100%);
  968. background: linear-gradient(to bottom,#919191 0,#6a6a6a 100%);
  969. background-repeat: repeat-x;
  970. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0);
  971. -moz-border-radius: 5px 5px 5px 5px;
  972. -webkit-border-radius: 5px 5px 5px 5px;
  973. border-radius: 5px 5px 5px 5px;
  974. }
  975. .l-btn:hover {
  976. background: #777;
  977. color: #fff;
  978. border: 1px solid #555;
  979. filter: none;
  980. }
  981. .l-btn-plain {
  982. background: transparent;
  983. border: 0;
  984. filter: none;
  985. }
  986. .l-btn-plain:hover {
  987. background: #777;
  988. color: #fff;
  989. border: 1px solid #555;
  990. -moz-border-radius: 5px 5px 5px 5px;
  991. -webkit-border-radius: 5px 5px 5px 5px;
  992. border-radius: 5px 5px 5px 5px;
  993. }
  994. .l-btn-disabled,
  995. .l-btn-disabled:hover {
  996. background: #777;
  997. color: #fff;
  998. background: -webkit-linear-gradient(top,#919191 0,#6a6a6a 100%);
  999. background: -moz-linear-gradient(top,#919191 0,#6a6a6a 100%);
  1000. background: -o-linear-gradient(top,#919191 0,#6a6a6a 100%);
  1001. background: linear-gradient(to bottom,#919191 0,#6a6a6a 100%);
  1002. background-repeat: repeat-x;
  1003. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0);
  1004. filter: alpha(opacity=50) progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0);
  1005. }
  1006. .l-btn-plain-disabled,
  1007. .l-btn-plain-disabled:hover {
  1008. background: transparent;
  1009. filter: alpha(opacity=50);
  1010. }
  1011. .l-btn-selected,
  1012. .l-btn-selected:hover {
  1013. background: #000;
  1014. filter: none;
  1015. }
  1016. .l-btn-plain-selected,
  1017. .l-btn-plain-selected:hover {
  1018. background: #000;
  1019. }
  1020. .datagrid .panel-body {
  1021. overflow: hidden;
  1022. position: relative;
  1023. }
  1024. .datagrid-view {
  1025. position: relative;
  1026. overflow: hidden;
  1027. }
  1028. .datagrid-view1,
  1029. .datagrid-view2 {
  1030. position: absolute;
  1031. overflow: hidden;
  1032. top: 0;
  1033. }
  1034. .datagrid-view1 {
  1035. left: 0;
  1036. }
  1037. .datagrid-view2 {
  1038. right: 0;
  1039. }
  1040. .datagrid-mask {
  1041. position: absolute;
  1042. left: 0;
  1043. top: 0;
  1044. width: 100%;
  1045. height: 100%;
  1046. opacity: 0.3;
  1047. filter: alpha(opacity=30);
  1048. display: none;
  1049. }
  1050. .datagrid-mask-msg {
  1051. position: absolute;
  1052. top: 50%;
  1053. margin-top: -20px;
  1054. padding: 10px 5px 10px 30px;
  1055. width: auto;
  1056. height: 16px;
  1057. border-width: 2px;
  1058. border-style: solid;
  1059. display: none;
  1060. }
  1061. .datagrid-sort-icon {
  1062. padding: 0;
  1063. }
  1064. .datagrid-toolbar {
  1065. height: auto;
  1066. padding: 1px 2px;
  1067. border-width: 0 0 1px 0;
  1068. border-style: solid;
  1069. }
  1070. .datagrid-btn-separator {
  1071. float: left;
  1072. height: 24px;
  1073. border-left: 1px solid #444;
  1074. border-right: 1px solid #777;
  1075. margin: 2px 1px;
  1076. }
  1077. .datagrid .datagrid-pager {
  1078. display: block;
  1079. margin: 0;
  1080. border-width: 1px 0 0 0;
  1081. border-style: solid;
  1082. }
  1083. .datagrid .datagrid-pager-top {
  1084. border-width: 0 0 1px 0;
  1085. }
  1086. .datagrid-header {
  1087. overflow: hidden;
  1088. cursor: default;
  1089. border-width: 0 0 1px 0;
  1090. border-style: solid;
  1091. }
  1092. .datagrid-header-inner {
  1093. float: left;
  1094. width: 10000px;
  1095. }
  1096. .datagrid-header-row,
  1097. .datagrid-row {
  1098. height: 25px;
  1099. }
  1100. .datagrid-header td,
  1101. .datagrid-body td,
  1102. .datagrid-footer td {
  1103. border-width: 0 1px 1px 0;
  1104. border-style: dotted;
  1105. margin: 0;
  1106. padding: 0;
  1107. }
  1108. .datagrid-cell,
  1109. .datagrid-cell-group,
  1110. .datagrid-header-rownumber,
  1111. .datagrid-cell-rownumber {
  1112. margin: 0;
  1113. padding: 0 4px;
  1114. white-space: nowrap;
  1115. word-wrap: normal;
  1116. overflow: hidden;
  1117. height: 18px;
  1118. line-height: 18px;
  1119. font-size: 12px;
  1120. }
  1121. .datagrid-header .datagrid-cell {
  1122. height: auto;
  1123. }
  1124. .datagrid-header .datagrid-cell span {
  1125. font-size: 12px;
  1126. }
  1127. .datagrid-cell-group {
  1128. text-align: center;
  1129. }
  1130. .datagrid-header-rownumber,
  1131. .datagrid-cell-rownumber {
  1132. width: 25px;
  1133. text-align: center;
  1134. margin: 0;
  1135. padding: 0;
  1136. }
  1137. .datagrid-body {
  1138. margin: 0;
  1139. padding: 0;
  1140. overflow: auto;
  1141. zoom: 1;
  1142. }
  1143. .datagrid-view1 .datagrid-body-inner {
  1144. padding-bottom: 20px;
  1145. }
  1146. .datagrid-view1 .datagrid-body {
  1147. overflow: hidden;
  1148. }
  1149. .datagrid-footer {
  1150. overflow: hidden;
  1151. }
  1152. .datagrid-footer-inner {
  1153. border-width: 1px 0 0 0;
  1154. border-style: solid;
  1155. width: 10000px;
  1156. float: left;
  1157. }
  1158. .datagrid-row-editing .datagrid-cell {
  1159. height: auto;
  1160. }
  1161. .datagrid-header-check,
  1162. .datagrid-cell-check {
  1163. padding: 0;
  1164. width: 27px;
  1165. height: 18px;
  1166. font-size: 1px;
  1167. text-align: center;
  1168. overflow: hidden;
  1169. }
  1170. .datagrid-header-check input,
  1171. .datagrid-cell-check input {
  1172. margin: 0;
  1173. padding: 0;
  1174. width: 15px;
  1175. height: 18px;
  1176. }
  1177. .datagrid-resize-proxy {
  1178. position: absolute;
  1179. width: 1px;
  1180. height: 10000px;
  1181. top: 0;
  1182. cursor: e-resize;
  1183. display: none;
  1184. }
  1185. .datagrid-body .datagrid-editable {
  1186. margin: 0;
  1187. padding: 0;
  1188. }
  1189. .datagrid-body .datagrid-editable table {
  1190. width: 100%;
  1191. height: 100%;
  1192. }
  1193. .datagrid-body .datagrid-editable td {
  1194. border: 0;
  1195. margin: 0;
  1196. padding: 0;
  1197. }
  1198. .datagrid-body .datagrid-editable .datagrid-editable-input {
  1199. margin: 0;
  1200. padding: 2px;
  1201. border-width: 1px;
  1202. border-style: solid;
  1203. }
  1204. .datagrid-sort-desc .datagrid-sort-icon {
  1205. padding: 0 13px 0 0;
  1206. background: url('images/datagrid_icons.png') no-repeat -16px center;
  1207. }
  1208. .datagrid-sort-asc .datagrid-sort-icon {
  1209. padding: 0 13px 0 0;
  1210. background: url('images/datagrid_icons.png') no-repeat 0px center;
  1211. }
  1212. .datagrid-row-collapse {
  1213. background: url('images/datagrid_icons.png') no-repeat -48px center;
  1214. }
  1215. .datagrid-row-expand {
  1216. background: url('images/datagrid_icons.png') no-repeat -32px center;
  1217. }
  1218. .datagrid-mask-msg {
  1219. background: #666 url('images/loading.gif') no-repeat scroll 5px center;
  1220. }
  1221. .datagrid-header,
  1222. .datagrid-td-rownumber {
  1223. background-color: #444;
  1224. background: -webkit-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%);
  1225. background: -moz-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%);
  1226. background: -o-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%);
  1227. background: linear-gradient(to bottom,#4c4c4c 0,#3f3f3f 100%);
  1228. background-repeat: repeat-x;
  1229. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c4c4c,endColorstr=#3f3f3f,GradientType=0);
  1230. }
  1231. .datagrid-cell-rownumber {
  1232. color: #fff;
  1233. }
  1234. .datagrid-resize-proxy {
  1235. background: #cccccc;
  1236. }
  1237. .datagrid-mask {
  1238. background: #000;
  1239. }
  1240. .datagrid-mask-msg {
  1241. border-color: #000;
  1242. }
  1243. .datagrid-toolbar,
  1244. .datagrid-pager {
  1245. background: #555;
  1246. }
  1247. .datagrid-header,
  1248. .datagrid-toolbar,
  1249. .datagrid-pager,
  1250. .datagrid-footer-inner {
  1251. border-color: #222;
  1252. }
  1253. .datagrid-header td,
  1254. .datagrid-body td,
  1255. .datagrid-footer td {
  1256. border-color: #222;
  1257. }
  1258. .datagrid-htable,
  1259. .datagrid-btable,
  1260. .datagrid-ftable {
  1261. color: #fff;
  1262. border-collapse: separate;
  1263. }
  1264. .datagrid-row-alt {
  1265. background: #555;
  1266. }
  1267. .datagrid-row-over,
  1268. .datagrid-header td.datagrid-header-over {
  1269. background: #777;
  1270. color: #fff;
  1271. cursor: default;
  1272. }
  1273. .datagrid-row-selected {
  1274. background: #0052A3;
  1275. color: #fff;
  1276. }
  1277. .datagrid-body .datagrid-editable .datagrid-editable-input {
  1278. border-color: #000;
  1279. }
  1280. .propertygrid .datagrid-view1 .datagrid-body td {
  1281. padding-bottom: 1px;
  1282. border-width: 0 1px 0 0;
  1283. }
  1284. .propertygrid .datagrid-group {
  1285. height: 21px;
  1286. overflow: hidden;
  1287. border-width: 0 0 1px 0;
  1288. border-style: solid;
  1289. }
  1290. .propertygrid .datagrid-group span {
  1291. font-weight: bold;
  1292. }
  1293. .propertygrid .datagrid-view1 .datagrid-body td {
  1294. border-color: #222;
  1295. }
  1296. .propertygrid .datagrid-view1 .datagrid-group {
  1297. border-color: #3d3d3d;
  1298. }
  1299. .propertygrid .datagrid-view2 .datagrid-group {
  1300. border-color: #222;
  1301. }
  1302. .propertygrid .datagrid-group,
  1303. .propertygrid .datagrid-view1 .datagrid-body,
  1304. .propertygrid .datagrid-view1 .datagrid-row-over,
  1305. .propertygrid .datagrid-view1 .datagrid-row-selected {
  1306. background: #3d3d3d;
  1307. }
  1308. .pagination {
  1309. zoom: 1;
  1310. }
  1311. .pagination table {
  1312. float: left;
  1313. height: 30px;
  1314. }
  1315. .pagination td {
  1316. border: 0;
  1317. }
  1318. .pagination-btn-separator {
  1319. float: left;
  1320. height: 24px;
  1321. border-left: 1px solid #444;
  1322. border-right: 1px solid #777;
  1323. margin: 3px 1px;
  1324. }
  1325. .pagination .pagination-num {
  1326. border-width: 1px;
  1327. border-style: solid;
  1328. margin: 0 2px;
  1329. padding: 2px;
  1330. width: 2em;
  1331. height: auto;
  1332. }
  1333. .pagination-page-list {
  1334. margin: 0px 6px;
  1335. padding: 1px 2px;
  1336. width: auto;
  1337. height: auto;
  1338. border-width: 1px;
  1339. border-style: solid;
  1340. }
  1341. .pagination-info {
  1342. float: right;
  1343. margin: 0 6px 0 0;
  1344. padding: 0;
  1345. height: 30px;
  1346. line-height: 30px;
  1347. font-size: 12px;
  1348. }
  1349. .pagination span {
  1350. font-size: 12px;
  1351. }
  1352. .pagination-link .l-btn-text {
  1353. width: 24px;
  1354. text-align: center;
  1355. margin: 0;
  1356. }
  1357. .pagination-first {
  1358. background: url('images/pagination_icons.png') no-repeat 0 center;
  1359. }
  1360. .pagination-prev {
  1361. background: url('images/pagination_icons.png') no-repeat -16px center;
  1362. }
  1363. .pagination-next {
  1364. background: url('images/pagination_icons.png') no-repeat -32px center;
  1365. }
  1366. .pagination-last {
  1367. background: url('images/pagination_icons.png') no-repeat -48px center;
  1368. }
  1369. .pagination-load {
  1370. background: url('images/pagination_icons.png') no-repeat -64px center;
  1371. }
  1372. .pagination-loading {
  1373. background: url('images/loading.gif') no-repeat center center;
  1374. }
  1375. .pagination-page-list,
  1376. .pagination .pagination-num {
  1377. border-color: #000;
  1378. }
  1379. .calendar {
  1380. border-width: 1px;
  1381. border-style: solid;
  1382. padding: 1px;
  1383. overflow: hidden;
  1384. }
  1385. .calendar table {
  1386. table-layout: fixed;
  1387. border-collapse: separate;
  1388. font-size: 12px;
  1389. width: 100%;
  1390. height: 100%;
  1391. }
  1392. .calendar table td,
  1393. .calendar table th {
  1394. font-size: 12px;
  1395. }
  1396. .calendar-noborder {
  1397. border: 0;
  1398. }
  1399. .calendar-header {
  1400. position: relative;
  1401. height: 22px;
  1402. }
  1403. .calendar-title {
  1404. text-align: center;
  1405. height: 22px;
  1406. }
  1407. .calendar-title span {
  1408. position: relative;
  1409. display: inline-block;
  1410. top: 2px;
  1411. padding: 0 3px;
  1412. height: 18px;
  1413. line-height: 18px;
  1414. font-size: 12px;
  1415. cursor: pointer;
  1416. -moz-border-radius: 5px 5px 5px 5px;
  1417. -webkit-border-radius: 5px 5px 5px 5px;
  1418. border-radius: 5px 5px 5px 5px;
  1419. }
  1420. .calendar-prevmonth,
  1421. .calendar-nextmonth,
  1422. .calendar-prevyear,
  1423. .calendar-nextyear {
  1424. position: absolute;
  1425. top: 50%;
  1426. margin-top: -7px;
  1427. width: 14px;
  1428. height: 14px;
  1429. cursor: pointer;
  1430. font-size: 1px;
  1431. -moz-border-radius: 5px 5px 5px 5px;
  1432. -webkit-border-radius: 5px 5px 5px 5px;
  1433. border-radius: 5px 5px 5px 5px;
  1434. }
  1435. .calendar-prevmonth {
  1436. left: 20px;
  1437. background: url('images/calendar_arrows.png') no-repeat -18px -2px;
  1438. }
  1439. .calendar-nextmonth {
  1440. right: 20px;
  1441. background: url('images/calendar_arrows.png') no-repeat -34px -2px;
  1442. }
  1443. .calendar-prevyear {
  1444. left: 3px;
  1445. background: url('images/calendar_arrows.png') no-repeat -1px -2px;
  1446. }
  1447. .calendar-nextyear {
  1448. right: 3px;
  1449. background: url('images/calendar_arrows.png') no-repeat -49px -2px;
  1450. }
  1451. .calendar-body {
  1452. position: relative;
  1453. }
  1454. .calendar-body th,
  1455. .calendar-body td {
  1456. text-align: center;
  1457. }
  1458. .calendar-day {
  1459. border: 0;
  1460. padding: 1px;
  1461. cursor: pointer;
  1462. -moz-border-radius: 5px 5px 5px 5px;
  1463. -webkit-border-radius: 5px 5px 5px 5px;
  1464. border-radius: 5px 5px 5px 5px;
  1465. }
  1466. .calendar-other-month {
  1467. opacity: 0.3;
  1468. filter: alpha(opacity=30);
  1469. }
  1470. .calendar-disabled {
  1471. opacity: 0.6;
  1472. filter: alpha(opacity=60);
  1473. cursor: default;
  1474. }
  1475. .calendar-menu {
  1476. position: absolute;
  1477. top: 0;
  1478. left: 0;
  1479. width: 180px;
  1480. height: 150px;
  1481. padding: 5px;
  1482. font-size: 12px;
  1483. display: none;
  1484. overflow: hidden;
  1485. }
  1486. .calendar-menu-year-inner {
  1487. text-align: center;
  1488. padding-bottom: 5px;
  1489. }
  1490. .calendar-menu-year {
  1491. width: 40px;
  1492. text-align: center;
  1493. border-width: 1px;
  1494. border-style: solid;
  1495. margin: 0;
  1496. padding: 2px;
  1497. font-weight: bold;
  1498. font-size: 12px;
  1499. }
  1500. .calendar-menu-prev,
  1501. .calendar-menu-next {
  1502. display: inline-block;
  1503. width: 21px;
  1504. height: 21px;
  1505. vertical-align: top;
  1506. cursor: pointer;
  1507. -moz-border-radius: 5px 5px 5px 5px;
  1508. -webkit-border-radius: 5px 5px 5px 5px;
  1509. border-radius: 5px 5px 5px 5px;
  1510. }
  1511. .calendar-menu-prev {
  1512. margin-right: 10px;
  1513. background: url('images/calendar_arrows.png') no-repeat 2px 2px;
  1514. }
  1515. .calendar-menu-next {
  1516. margin-left: 10px;
  1517. background: url('images/calendar_arrows.png') no-repeat -45px 2px;
  1518. }
  1519. .calendar-menu-month {
  1520. text-align: center;
  1521. cursor: pointer;
  1522. font-weight: bold;
  1523. -moz-border-radius: 5px 5px 5px 5px;
  1524. -webkit-border-radius: 5px 5px 5px 5px;
  1525. border-radius: 5px 5px 5px 5px;
  1526. }
  1527. .calendar-body th,
  1528. .calendar-menu-month {
  1529. color: #ffffff;
  1530. }
  1531. .calendar-day {
  1532. color: #fff;
  1533. }
  1534. .calendar-sunday {
  1535. color: #CC2222;
  1536. }
  1537. .calendar-saturday {
  1538. color: #00ee00;
  1539. }
  1540. .calendar-today {
  1541. color: #0000ff;
  1542. }
  1543. .calendar-menu-year {
  1544. border-color: #000;
  1545. }
  1546. .calendar {
  1547. border-color: #000;
  1548. }
  1549. .calendar-header {
  1550. background: #3d3d3d;
  1551. }
  1552. .calendar-body,
  1553. .calendar-menu {
  1554. background: #666;
  1555. }
  1556. .calendar-body th {
  1557. background: #555;
  1558. padding: 2px 0;
  1559. }
  1560. .calendar-hover,
  1561. .calendar-nav-hover,
  1562. .calendar-menu-hover {
  1563. background-color: #777;
  1564. color: #fff;
  1565. }
  1566. .calendar-hover {
  1567. border: 1px solid #555;
  1568. padding: 0;
  1569. }
  1570. .calendar-selected {
  1571. background-color: #0052A3;
  1572. color: #fff;
  1573. border: 1px solid #00458a;
  1574. padding: 0;
  1575. }
  1576. .datebox-calendar-inner {
  1577. height: 180px;
  1578. }
  1579. .datebox-button {
  1580. height: 18px;
  1581. padding: 2px 5px;
  1582. text-align: center;
  1583. }
  1584. .datebox-button a {
  1585. font-size: 12px;
  1586. font-weight: bold;
  1587. text-decoration: none;
  1588. opacity: 0.6;
  1589. filter: alpha(opacity=60);
  1590. }
  1591. .datebox-button a:hover {
  1592. opacity: 1.0;
  1593. filter: alpha(opacity=100);
  1594. }
  1595. .datebox-current,
  1596. .datebox-close {
  1597. float: left;
  1598. }
  1599. .datebox-close {
  1600. float: right;
  1601. }
  1602. .datebox .combo-arrow {
  1603. background-image: url('images/datebox_arrow.png');
  1604. background-position: center center;
  1605. }
  1606. .datebox-button {
  1607. background-color: #555;
  1608. }
  1609. .datebox-button a {
  1610. color: #fff;
  1611. }
  1612. .numberbox {
  1613. border: 1px solid #000;
  1614. margin: 0;
  1615. padding: 0 2px;
  1616. vertical-align: middle;
  1617. }
  1618. .spinner {
  1619. display: inline-block;
  1620. white-space: nowrap;
  1621. margin: 0;
  1622. padding: 0;
  1623. border-width: 1px;
  1624. border-style: solid;
  1625. overflow: hidden;
  1626. vertical-align: middle;
  1627. }
  1628. .spinner .spinner-text {
  1629. font-size: 12px;
  1630. border: 0px;
  1631. line-height: 20px;
  1632. height: 20px;
  1633. margin: 0;
  1634. padding: 0 2px;
  1635. *margin-top: -1px;
  1636. *height: 18px;
  1637. *line-height: 18px;
  1638. _height: 18px;
  1639. _line-height: 18px;
  1640. vertical-align: baseline;
  1641. }
  1642. .spinner-arrow {
  1643. display: inline-block;
  1644. overflow: hidden;
  1645. vertical-align: top;
  1646. margin: 0;
  1647. padding: 0;
  1648. }
  1649. .spinner-arrow-up,
  1650. .spinner-arrow-down {
  1651. opacity: 0.6;
  1652. filter: alpha(opacity=60);
  1653. display: block;
  1654. font-size: 1px;
  1655. width: 18px;
  1656. height: 10px;
  1657. }
  1658. .spinner-arrow-hover {
  1659. opacity: 1.0;
  1660. filter: alpha(opacity=100);
  1661. }
  1662. .spinner-arrow-up {
  1663. background: url('images/spinner_arrows.png') no-repeat 1px center;
  1664. }
  1665. .spinner-arrow-down {
  1666. background: url('images/spinner_arrows.png') no-repeat -15px center;
  1667. }
  1668. .spinner {
  1669. border-color: #000;
  1670. }
  1671. .spinner-arrow {
  1672. background-color: #3d3d3d;
  1673. }
  1674. .spinner-arrow-hover {
  1675. background-color: #777;
  1676. }
  1677. .progressbar {
  1678. border-width: 1px;
  1679. border-style: solid;
  1680. -moz-border-radius: 5px 5px 5px 5px;
  1681. -webkit-border-radius: 5px 5px 5px 5px;
  1682. border-radius: 5px 5px 5px 5px;
  1683. overflow: hidden;
  1684. position: relative;
  1685. }
  1686. .progressbar-text {
  1687. text-align: center;
  1688. position: absolute;
  1689. }
  1690. .progressbar-value {
  1691. position: relative;
  1692. overflow: hidden;
  1693. width: 0;
  1694. -moz-border-radius: 5px 0 0 5px;
  1695. -webkit-border-radius: 5px 0 0 5px;
  1696. border-radius: 5px 0 0 5px;
  1697. }
  1698. .progressbar {
  1699. border-color: #000;
  1700. }
  1701. .progressbar-text {
  1702. color: #fff;
  1703. font-size: 12px;
  1704. }
  1705. .progressbar-value .progressbar-text {
  1706. background-color: #0052A3;
  1707. color: #fff;
  1708. }
  1709. .searchbox {
  1710. display: inline-block;
  1711. white-space: nowrap;
  1712. margin: 0;
  1713. padding: 0;
  1714. border-width: 1px;
  1715. border-style: solid;
  1716. overflow: hidden;
  1717. vertical-align: middle;
  1718. }
  1719. .searchbox .searchbox-text {
  1720. font-size: 12px;
  1721. border: 0;
  1722. margin: 0;
  1723. padding: 0 2px;
  1724. *margin-top: -1px;
  1725. vertical-align: top;
  1726. }
  1727. .searchbox .searchbox-prompt {
  1728. font-size: 12px;
  1729. color: #ccc;
  1730. }
  1731. .searchbox-button {
  1732. width: 18px;
  1733. height: 20px;
  1734. overflow: hidden;
  1735. display: inline-block;
  1736. vertical-align: top;
  1737. cursor: pointer;
  1738. opacity: 0.6;
  1739. filter: alpha(opacity=60);
  1740. }
  1741. .searchbox-button-hover {
  1742. opacity: 1.0;
  1743. filter: alpha(opacity=100);
  1744. }
  1745. .searchbox .l-btn-plain {
  1746. border: 0;
  1747. padding: 0;
  1748. vertical-align: top;
  1749. opacity: 0.6;
  1750. filter: alpha(opacity=60);
  1751. -moz-border-radius: 0 0 0 0;
  1752. -webkit-border-radius: 0 0 0 0;
  1753. border-radius: 0 0 0 0;
  1754. }
  1755. .searchbox .l-btn-plain:hover {
  1756. border: 0;
  1757. padding: 0;
  1758. opacity: 1.0;
  1759. filter: alpha(opacity=100);
  1760. -moz-border-radius: 0 0 0 0;
  1761. -webkit-border-radius: 0 0 0 0;
  1762. border-radius: 0 0 0 0;
  1763. }
  1764. .searchbox a.m-btn-plain-active {
  1765. -moz-border-radius: 0 0 0 0;
  1766. -webkit-border-radius: 0 0 0 0;
  1767. border-radius: 0 0 0 0;
  1768. }
  1769. .searchbox-button {
  1770. background: url('images/searchbox_button.png') no-repeat center center;
  1771. }
  1772. .searchbox {
  1773. border-color: #000;
  1774. background-color: #fff;
  1775. }
  1776. .searchbox .l-btn-plain {
  1777. background: #3d3d3d;
  1778. }
  1779. .searchbox .l-btn-plain-disabled,
  1780. .searchbox .l-btn-plain-disabled:hover {
  1781. opacity: 0.5;
  1782. filter: alpha(opacity=50);
  1783. }
  1784. .slider-disabled {
  1785. opacity: 0.5;
  1786. filter: alpha(opacity=50);
  1787. }
  1788. .slider-h {
  1789. height: 22px;
  1790. }
  1791. .slider-v {
  1792. width: 22px;
  1793. }
  1794. .slider-inner {
  1795. position: relative;
  1796. height: 6px;
  1797. top: 7px;
  1798. border-width: 1px;
  1799. border-style: solid;
  1800. border-radius: 5px;
  1801. }
  1802. .slider-handle {
  1803. position: absolute;
  1804. display: block;
  1805. outline: none;
  1806. width: 20px;
  1807. height: 20px;
  1808. top: -7px;
  1809. margin-left: -10px;
  1810. }
  1811. .slider-tip {
  1812. position: absolute;
  1813. display: inline-block;
  1814. line-height: 12px;
  1815. font-size: 12px;
  1816. white-space: nowrap;
  1817. top: -22px;
  1818. }
  1819. .slider-rule {
  1820. position: relative;
  1821. top: 15px;
  1822. }
  1823. .slider-rule span {
  1824. position: absolute;
  1825. display: inline-block;
  1826. font-size: 0;
  1827. height: 5px;
  1828. border-width: 0 0 0 1px;
  1829. border-style: solid;
  1830. }
  1831. .slider-rulelabel {
  1832. position: relative;
  1833. top: 20px;
  1834. }
  1835. .slider-rulelabel span {
  1836. position: absolute;
  1837. display: inline-block;
  1838. font-size: 12px;
  1839. }
  1840. .slider-v .slider-inner {
  1841. width: 6px;
  1842. left: 7px;
  1843. top: 0;
  1844. float: left;
  1845. }
  1846. .slider-v .slider-handle {
  1847. left: 3px;
  1848. margin-top: -10px;
  1849. }
  1850. .slider-v .slider-tip {
  1851. left: -10px;
  1852. margin-top: -6px;
  1853. }
  1854. .slider-v .slider-rule {
  1855. float: left;
  1856. top: 0;
  1857. left: 16px;
  1858. }
  1859. .slider-v .slider-rule span {
  1860. width: 5px;
  1861. height: 'auto';
  1862. border-left: 0;
  1863. border-width: 1px 0 0 0;
  1864. border-style: solid;
  1865. }
  1866. .slider-v .slider-rulelabel {
  1867. float: left;
  1868. top: 0;
  1869. left: 23px;
  1870. }
  1871. .slider-handle {
  1872. background: url('images/slider_handle.png') no-repeat;
  1873. }
  1874. .slider-inner {
  1875. border-color: #000;
  1876. background: #3d3d3d;
  1877. }
  1878. .slider-rule span {
  1879. border-color: #000;
  1880. }
  1881. .slider-rulelabel span {
  1882. color: #fff;
  1883. }
  1884. .menu {
  1885. position: absolute;
  1886. margin: 0;
  1887. padding: 2px;
  1888. border-width: 1px;
  1889. border-style: solid;
  1890. overflow: hidden;
  1891. }
  1892. .menu-item {
  1893. position: relative;
  1894. margin: 0;
  1895. padding: 0;
  1896. overflow: hidden;
  1897. white-space: nowrap;
  1898. cursor: pointer;
  1899. border-width: 1px;
  1900. border-style: solid;
  1901. }
  1902. .menu-text {
  1903. height: 20px;
  1904. line-height: 20px;
  1905. float: left;
  1906. padding-left: 28px;
  1907. }
  1908. .menu-icon {
  1909. position: absolute;
  1910. width: 16px;
  1911. height: 16px;
  1912. left: 2px;
  1913. top: 50%;
  1914. margin-top: -8px;
  1915. }
  1916. .menu-rightarrow {
  1917. position: absolute;
  1918. width: 16px;
  1919. height: 16px;
  1920. right: 0;
  1921. top: 50%;
  1922. margin-top: -8px;
  1923. }
  1924. .menu-line {
  1925. position: absolute;
  1926. left: 26px;
  1927. top: 0;
  1928. height: 2000px;
  1929. font-size: 1px;
  1930. }
  1931. .menu-sep {
  1932. margin: 3px 0px 3px 25px;
  1933. font-size: 1px;
  1934. }
  1935. .menu-active {
  1936. -moz-border-radius: 5px 5px 5px 5px;
  1937. -webkit-border-radius: 5px 5px 5px 5px;
  1938. border-radius: 5px 5px 5px 5px;
  1939. }
  1940. .menu-item-disabled {
  1941. opacity: 0.5;
  1942. filter: alpha(opacity=50);
  1943. cursor: default;
  1944. }
  1945. .menu-text,
  1946. .menu-text span {
  1947. font-size: 12px;
  1948. }
  1949. .menu-shadow {
  1950. position: absolute;
  1951. -moz-border-radius: 5px 5px 5px 5px;
  1952. -webkit-border-radius: 5px 5px 5px 5px;
  1953. border-radius: 5px 5px 5px 5px;
  1954. background: #777;
  1955. -moz-box-shadow: 2px 2px 3px #787878;
  1956. -webkit-box-shadow: 2px 2px 3px #787878;
  1957. box-shadow: 2px 2px 3px #787878;
  1958. filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
  1959. }
  1960. .menu-rightarrow {
  1961. background: url('images/menu_arrows.png') no-repeat -32px center;
  1962. }
  1963. .menu-line {
  1964. border-left: 1px solid #444;
  1965. border-right: 1px solid #777;
  1966. }
  1967. .menu-sep {
  1968. border-top: 1px solid #444;
  1969. border-bottom: 1px solid #777;
  1970. }
  1971. .menu {
  1972. background-color: #666;
  1973. border-color: #444;
  1974. color: #fff;
  1975. }
  1976. .menu-content {
  1977. background: #666;
  1978. }
  1979. .menu-item {
  1980. border-color: transparent;
  1981. _border-color: #666;
  1982. }
  1983. .menu-active {
  1984. border-color: #555;
  1985. color: #fff;
  1986. background: #777;
  1987. }
  1988. .menu-active-disabled {
  1989. border-color: transparent;
  1990. background: transparent;
  1991. color: #fff;
  1992. }
  1993. .m-btn-downarrow,
  1994. .s-btn-downarrow {
  1995. display: inline-block;
  1996. position: absolute;
  1997. width: 16px;
  1998. height: 16px;
  1999. font-size: 1px;
  2000. right: 0;
  2001. top: 50%;
  2002. margin-top: -8px;
  2003. }
  2004. .m-btn-active,
  2005. .s-btn-active {
  2006. background: #777;
  2007. color: #fff;
  2008. border: 1px solid #555;
  2009. filter: none;
  2010. }
  2011. .m-btn-plain-active,
  2012. .s-btn-plain-active {
  2013. background: transparent;
  2014. padding: 0;
  2015. border-width: 1px;
  2016. border-style: solid;
  2017. -moz-border-radius: 5px 5px 5px 5px;
  2018. -webkit-border-radius: 5px 5px 5px 5px;
  2019. border-radius: 5px 5px 5px 5px;
  2020. }
  2021. .m-btn .l-btn-left .l-btn-text {
  2022. margin-right: 20px;
  2023. }
  2024. .m-btn .l-btn-icon-right .l-btn-text {
  2025. margin-right: 40px;
  2026. }
  2027. .m-btn .l-btn-icon-right .l-btn-icon {
  2028. right: 20px;
  2029. }
  2030. .m-btn .l-btn-icon-top .l-btn-text {
  2031. margin-right: 4px;
  2032. margin-bottom: 14px;
  2033. }
  2034. .m-btn .l-btn-icon-bottom .l-btn-text {
  2035. margin-right: 4px;
  2036. margin-bottom: 34px;
  2037. }
  2038. .m-btn .l-btn-icon-bottom .l-btn-icon {
  2039. top: auto;
  2040. bottom: 20px;
  2041. }
  2042. .m-btn .l-btn-icon-top .m-btn-downarrow,
  2043. .m-btn .l-btn-icon-bottom .m-btn-downarrow {
  2044. top: auto;
  2045. bottom: 0px;
  2046. left: 50%;
  2047. margin-left: -8px;
  2048. }
  2049. .m-btn-line {
  2050. display: inline-block;
  2051. position: absolute;
  2052. font-size: 1px;
  2053. display: none;
  2054. }
  2055. .m-btn .l-btn-left .m-btn-line {
  2056. right: 0;
  2057. width: 16px;
  2058. height: 500px;
  2059. border-style: solid;
  2060. border-color: #cccccc;
  2061. border-width: 0 0 0 1px;
  2062. }
  2063. .m-btn .l-btn-icon-top .m-btn-line,
  2064. .m-btn .l-btn-icon-bottom .m-btn-line {
  2065. left: 0;
  2066. bottom: 0;
  2067. width: 500px;
  2068. height: 16px;
  2069. border-width: 1px 0 0 0;
  2070. }
  2071. .m-btn-large .l-btn-icon-right .l-btn-text {
  2072. margin-right: 56px;
  2073. }
  2074. .m-btn-large .l-btn-icon-bottom .l-btn-text {
  2075. margin-bottom: 50px;
  2076. }
  2077. .m-btn-downarrow,
  2078. .s-btn-downarrow {
  2079. background: url('images/menu_arrows.png') no-repeat 0 center;
  2080. }
  2081. .m-btn-plain-active,
  2082. .s-btn-plain-active {
  2083. border-color: #555;
  2084. background-color: #777;
  2085. color: #fff;
  2086. }
  2087. .s-btn:hover .m-btn-line,
  2088. .s-btn-active .m-btn-line,
  2089. .s-btn-plain-active .m-btn-line {
  2090. display: inline-block;
  2091. }
  2092. .l-btn:hover .s-btn-downarrow,
  2093. .s-btn-active .s-btn-downarrow,
  2094. .s-btn-plain-active .s-btn-downarrow {
  2095. border-style: solid;
  2096. border-color: #cccccc;
  2097. border-width: 0 0 0 1px;
  2098. }
  2099. .messager-body {
  2100. padding: 10px;
  2101. overflow: hidden;
  2102. }
  2103. .messager-button {
  2104. text-align: center;
  2105. padding-top: 10px;
  2106. }
  2107. .messager-button .l-btn {
  2108. width: 70px;
  2109. }
  2110. .messager-icon {
  2111. float: left;
  2112. width: 32px;
  2113. height: 32px;
  2114. margin: 0 10px 10px 0;
  2115. }
  2116. .messager-error {
  2117. background: url('images/messager_icons.png') no-repeat scroll -64px 0;
  2118. }
  2119. .messager-info {
  2120. background: url('images/messager_icons.png') no-repeat scroll 0 0;
  2121. }
  2122. .messager-question {
  2123. background: url('images/messager_icons.png') no-repeat scroll -32px 0;
  2124. }
  2125. .messager-warning {
  2126. background: url('images/messager_icons.png') no-repeat scroll -96px 0;
  2127. }
  2128. .messager-progress {
  2129. padding: 10px;
  2130. }
  2131. .messager-p-msg {
  2132. margin-bottom: 5px;
  2133. }
  2134. .messager-body .messager-input {
  2135. width: 100%;
  2136. padding: 1px 0;
  2137. border: 1px solid #000;
  2138. }
  2139. .tree {
  2140. margin: 0;
  2141. padding: 0;
  2142. list-style-type: none;
  2143. }
  2144. .tree li {
  2145. white-space: nowrap;
  2146. }
  2147. .tree li ul {
  2148. list-style-type: none;
  2149. margin: 0;
  2150. padding: 0;
  2151. }
  2152. .tree-node {
  2153. height: 18px;
  2154. white-space: nowrap;
  2155. cursor: pointer;
  2156. }
  2157. .tree-hit {
  2158. cursor: pointer;
  2159. }
  2160. .tree-expanded,
  2161. .tree-collapsed,
  2162. .tree-folder,
  2163. .tree-file,
  2164. .tree-checkbox,
  2165. .tree-indent {
  2166. display: inline-block;
  2167. width: 16px;
  2168. height: 18px;
  2169. vertical-align: top;
  2170. overflow: hidden;
  2171. }
  2172. .tree-expanded {
  2173. background: url('images/tree_icons.png') no-repeat -18px 0px;
  2174. }
  2175. .tree-expanded-hover {
  2176. background: url('images/tree_icons.png') no-repeat -50px 0px;
  2177. }
  2178. .tree-collapsed {
  2179. background: url('images/tree_icons.png') no-repeat 0px 0px;
  2180. }
  2181. .tree-collapsed-hover {
  2182. background: url('images/tree_icons.png') no-repeat -32px 0px;
  2183. }
  2184. .tree-lines .tree-expanded,
  2185. .tree-lines .tree-root-first .tree-expanded {
  2186. background: url('images/tree_icons.png') no-repeat -144px 0;
  2187. }
  2188. .tree-lines .tree-collapsed,
  2189. .tree-lines .tree-root-first .tree-collapsed {
  2190. background: url('images/tree_icons.png') no-repeat -128px 0;
  2191. }
  2192. .tree-lines .tree-node-last .tree-expanded,
  2193. .tree-lines .tree-root-one .tree-expanded {
  2194. background: url('images/tree_icons.png') no-repeat -80px 0;
  2195. }
  2196. .tree-lines .tree-node-last .tree-collapsed,
  2197. .tree-lines .tree-root-one .tree-collapsed {
  2198. background: url('images/tree_icons.png') no-repeat -64px 0;
  2199. }
  2200. .tree-line {
  2201. background: url('images/tree_icons.png') no-repeat -176px 0;
  2202. }
  2203. .tree-join {
  2204. background: url('images/tree_icons.png') no-repeat -192px 0;
  2205. }
  2206. .tree-joinbottom {
  2207. background: url('images/tree_icons.png') no-repeat -160px 0;
  2208. }
  2209. .tree-folder {
  2210. background: url('images/tree_icons.png') no-repeat -208px 0;
  2211. }
  2212. .tree-folder-open {
  2213. background: url('images/tree_icons.png') no-repeat -224px 0;
  2214. }
  2215. .tree-file {
  2216. background: url('images/tree_icons.png') no-repeat -240px 0;
  2217. }
  2218. .tree-loading {
  2219. background: url('images/loading.gif') no-repeat center center;
  2220. }
  2221. .tree-checkbox0 {
  2222. background: url('images/tree_icons.png') no-repeat -208px -18px;
  2223. }
  2224. .tree-checkbox1 {
  2225. background: url('images/tree_icons.png') no-repeat -224px -18px;
  2226. }
  2227. .tree-checkbox2 {
  2228. background: url('images/tree_icons.png') no-repeat -240px -18px;
  2229. }
  2230. .tree-title {
  2231. font-size: 12px;
  2232. display: inline-block;
  2233. text-decoration: none;
  2234. vertical-align: top;
  2235. white-space: nowrap;
  2236. padding: 0 2px;
  2237. height: 18px;
  2238. line-height: 18px;
  2239. }
  2240. .tree-node-proxy {
  2241. font-size: 12px;
  2242. line-height: 20px;
  2243. padding: 0 2px 0 20px;
  2244. border-width: 1px;
  2245. border-style: solid;
  2246. z-index: 9900000;
  2247. }
  2248. .tree-dnd-icon {
  2249. display: inline-block;
  2250. position: absolute;
  2251. width: 16px;
  2252. height: 18px;
  2253. left: 2px;
  2254. top: 50%;
  2255. margin-top: -9px;
  2256. }
  2257. .tree-dnd-yes {
  2258. background: url('images/tree_icons.png') no-repeat -256px 0;
  2259. }
  2260. .tree-dnd-no {
  2261. background: url('images/tree_icons.png') no-repeat -256px -18px;
  2262. }
  2263. .tree-node-top {
  2264. border-top: 1px dotted red;
  2265. }
  2266. .tree-node-bottom {
  2267. border-bottom: 1px dotted red;
  2268. }
  2269. .tree-node-append .tree-title {
  2270. border: 1px dotted red;
  2271. }
  2272. .tree-editor {
  2273. border: 1px solid #ccc;
  2274. font-size: 12px;
  2275. height: 14px !important;
  2276. height: 18px;
  2277. line-height: 14px;
  2278. padding: 1px 2px;
  2279. width: 80px;
  2280. position: absolute;
  2281. top: 0;
  2282. }
  2283. .tree-node-proxy {
  2284. background-color: #666;
  2285. color: #fff;
  2286. border-color: #000;
  2287. }
  2288. .tree-node-hover {
  2289. background: #777;
  2290. color: #fff;
  2291. }
  2292. .tree-node-selected {
  2293. background: #0052A3;
  2294. color: #fff;
  2295. }
  2296. .validatebox-invalid {
  2297. background-image: url('images/validatebox_warning.png');
  2298. background-repeat: no-repeat;
  2299. background-position: right center;
  2300. border-color: #ffa8a8;
  2301. background-color: #fff3f3;
  2302. color: #000;
  2303. }
  2304. .tooltip {
  2305. position: absolute;
  2306. display: none;
  2307. z-index: 9900000;
  2308. outline: none;
  2309. opacity: 1;
  2310. filter: alpha(opacity=100);
  2311. padding: 5px;
  2312. border-width: 1px;
  2313. border-style: solid;
  2314. border-radius: 5px;
  2315. -moz-border-radius: 5px 5px 5px 5px;
  2316. -webkit-border-radius: 5px 5px 5px 5px;
  2317. border-radius: 5px 5px 5px 5px;
  2318. }
  2319. .tooltip-content {
  2320. font-size: 12px;
  2321. }
  2322. .tooltip-arrow-outer,
  2323. .tooltip-arrow {
  2324. position: absolute;
  2325. width: 0;
  2326. height: 0;
  2327. line-height: 0;
  2328. font-size: 0;
  2329. border-style: solid;
  2330. border-width: 6px;
  2331. border-color: transparent;
  2332. _border-color: tomato;
  2333. _filter: chroma(color=tomato);
  2334. }
  2335. .tooltip-right .tooltip-arrow-outer {
  2336. left: 0;
  2337. top: 50%;
  2338. margin: -6px 0 0 -13px;
  2339. }
  2340. .tooltip-right .tooltip-arrow {
  2341. left: 0;
  2342. top: 50%;
  2343. margin: -6px 0 0 -12px;
  2344. }
  2345. .tooltip-left .tooltip-arrow-outer {
  2346. right: 0;
  2347. top: 50%;
  2348. margin: -6px -13px 0 0;
  2349. }
  2350. .tooltip-left .tooltip-arrow {
  2351. right: 0;
  2352. top: 50%;
  2353. margin: -6px -12px 0 0;
  2354. }
  2355. .tooltip-top .tooltip-arrow-outer {
  2356. bottom: 0;
  2357. left: 50%;
  2358. margin: 0 0 -13px -6px;
  2359. }
  2360. .tooltip-top .tooltip-arrow {
  2361. bottom: 0;
  2362. left: 50%;
  2363. margin: 0 0 -12px -6px;
  2364. }
  2365. .tooltip-bottom .tooltip-arrow-outer {
  2366. top: 0;
  2367. left: 50%;
  2368. margin: -13px 0 0 -6px;
  2369. }
  2370. .tooltip-bottom .tooltip-arrow {
  2371. top: 0;
  2372. left: 50%;
  2373. margin: -12px 0 0 -6px;
  2374. }
  2375. .tooltip {
  2376. background-color: #666;
  2377. border-color: #000;
  2378. color: #fff;
  2379. }
  2380. .tooltip-right .tooltip-arrow-outer {
  2381. border-right-color: #000;
  2382. }
  2383. .tooltip-right .tooltip-arrow {
  2384. border-right-color: #666;
  2385. }
  2386. .tooltip-left .tooltip-arrow-outer {
  2387. border-left-color: #000;
  2388. }
  2389. .tooltip-left .tooltip-arrow {
  2390. border-left-color: #666;
  2391. }
  2392. .tooltip-top .tooltip-arrow-outer {
  2393. border-top-color: #000;
  2394. }
  2395. .tooltip-top .tooltip-arrow {
  2396. border-top-color: #666;
  2397. }
  2398. .tooltip-bottom .tooltip-arrow-outer {
  2399. border-bottom-color: #000;
  2400. }
  2401. .tooltip-bottom .tooltip-arrow {
  2402. border-bottom-color: #666;
  2403. }