easyui.css 48 KB

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