easyui.css 46 KB

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