easyui.css 51 KB

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