easyui.min.css 47 KB

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