easyui.css 44 KB

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