easyui.css 45 KB

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