process.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014
  1. body {
  2. font: 14px/1.5 Tahoma, Arial, "\5b8b\4f53", sans-serif;
  3. }
  4. .circle {
  5. width: 20px;
  6. height: 20px;
  7. padding: 0 5px;
  8. border: 1px solid #f5f5f5;
  9. border-radius: 500px;
  10. }
  11. .round {
  12. border-radius: 28px;
  13. padding: 1px 5px;
  14. line-height: 1.5;
  15. color: #27ad60;
  16. background-color: #fff;
  17. border: 1px solid #27ad60;
  18. }
  19. .line {
  20. color: #27ad60;
  21. background-color: #fff;
  22. border: 1px solid #27ad60;
  23. padding: 1px 5px;
  24. }
  25. .text-lg {
  26. font-size: 18px;
  27. }
  28. .text-xl {
  29. font-size: 26px;
  30. }
  31. .text-error {
  32. color: #f50 !important;
  33. }
  34. .radio-inline,.radio-inline+.radio-inline {
  35. margin-top: 0;
  36. margin-left: 0;
  37. margin-right: 10px;
  38. }
  39. .input-xs {
  40. height: 26px;
  41. padding: 2px 5px;
  42. font-size: 12px;
  43. line-height: 1.5;
  44. border-radius: 3px;
  45. }
  46. .btn-simple {
  47. border: none;
  48. }
  49. .form-control-feedback {
  50. top: 0;
  51. color: #777;
  52. }
  53. /*top*/
  54. #top {
  55. font-family: "microsoft yahei";
  56. background-color: #fff;
  57. color: #27ad60;
  58. padding-bottom: 10px;
  59. padding-top: 10px;
  60. border-bottom: 2px solid #27ad60;
  61. width: 100%;
  62. background-color: #fff;
  63. border-bottom: 2px solid #27ad60;
  64. }
  65. #top .title {
  66. font-size: 26px;
  67. background-color: #fff;
  68. text-align: center;
  69. position: relative;
  70. height: 30px;
  71. }
  72. #top .title .text {
  73. position: absolute;
  74. top: 0;
  75. left: 50%;
  76. margin-left: -100px;
  77. margin-top: -4px;
  78. background-color: #fff;
  79. padding: 0 10px;
  80. z-index: 10;
  81. }
  82. #top .title:after,#top .title:before {
  83. background-color: #458A55;
  84. content: "";
  85. height: 1px;
  86. position: absolute;
  87. top: 15px;
  88. width: 50%;
  89. }
  90. #top .title:after {
  91. background-image: -webkit-gradient(linear, left top, right top, from(#458A55),
  92. to(#fff));
  93. background-image: -webkit-linear-gradient(left, #458A55, #fff);
  94. background-image: -moz-linear-gradient(left, #458A55, #fff);
  95. background-image: -ms-linear-gradient(left, #458A55, #fff);
  96. background-image: -o-linear-gradient(left, #458A55, #fff);
  97. background-image: linear-gradient(left, #458A55, #fff);
  98. right: 0;
  99. }
  100. #top .title:before {
  101. background-image: -webkit-gradient(linear, right top, left top, from(#458A55),
  102. to(#fff));
  103. background-image: -webkit-linear-gradient(right, #458A55, #fff);
  104. background-image: -moz-linear-gradient(right, #458A55, #fff);
  105. background-image: -ms-linear-gradient(right, #458A55, #fff);
  106. background-image: -o-linear-gradient(right, #458A55, #fff);
  107. background-image: linear-gradient(right, #458A55, #fff);
  108. left: 0;
  109. }
  110. #top .info {
  111. margin-top: 10px;
  112. margin-bottom: 0;
  113. }
  114. /*deal*/
  115. #deal {
  116. width: 100%;
  117. background-color: #fff;
  118. padding-top: 10px;
  119. padding-bottom: 10px;
  120. }
  121. #deal .form {
  122. padding-bottom: 5px;
  123. font-family: "\5FAE\8F6F\96C5\9ED1";
  124. }
  125. #deal .line {
  126. color: #27ad60;
  127. border-color: #27ad60;
  128. font-weight: 700;
  129. height: 35px;
  130. }
  131. #deal .line:hover,#deal .line:active {
  132. color: #F7A947 !important;
  133. border-color: #F7A947;
  134. background-color: #fff;
  135. }
  136. .list-group {
  137. margin-bottom: 5px;
  138. }
  139. .list-group-item {
  140. padding: 6px 15px;
  141. }
  142. #deal .list-group-item .pull-right {
  143. margin-top: -4px;
  144. }
  145. /*bill*/
  146. #bill {
  147. width: 100%;
  148. padding-top: 18px;
  149. padding-bottom: 10px;
  150. min-height: 60px;
  151. background-color: #fff;
  152. position: relative;
  153. box-shadow: inset 0 2px 2px rgba(0, 0, 0, .075), 0 2px 2px
  154. rgba(0, 0, 0, .075);
  155. border-top: 1px solid #d2d2d2;
  156. border-bottom: 1px solid #d2d2d2;
  157. }
  158. #bill .title {
  159. position: relative;
  160. border-top: 2px dotted #27ad60;
  161. padding-top: 20px;
  162. }
  163. #bill .title .text {
  164. position: absolute;
  165. top: -13px;
  166. width: 120px;
  167. background: #fff;
  168. margin: 0 auto;
  169. text-align: center;
  170. font-size: 18px;
  171. color: #ffb433;
  172. }
  173. #bill .title .text.left {
  174. left: 25px;
  175. }
  176. #bill .title .text.right {
  177. right: 25px;
  178. }
  179. .nav-tabs>li {
  180. border-top: 2px solid #eee;
  181. cursor: pointer;
  182. }
  183. .nav-tabs {
  184. border: 0;
  185. }
  186. .nav-tabs>li {
  187. background: #f0f0f0;
  188. border-bottom: 1px solid #e2e2e2;
  189. border-right: 1px solid #e2e2e2;
  190. }
  191. .nav-tabs.nav-justified>li:last-child {
  192. border-right: none;
  193. }
  194. .nav-tabs>li>a,.nav-tabs.nav-justified>li>a {
  195. padding: 5px 8px;
  196. margin-bottom: 0;
  197. border-radius: 0;
  198. border: none;
  199. color: #666;
  200. border-radius: 0;
  201. }
  202. .nav-tabs>li.active {
  203. border-bottom-color: #fff;
  204. border-top: 2px solid #27ad60;
  205. }
  206. .nav-tabs>li>a:hover,.nav-tabs>li>a:focus,.nav-tabs>li>a:active,.nav-tabs>li.active>a
  207. {
  208. color: #27ad60 !important;
  209. font-weight: bold;
  210. }
  211. .nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus
  212. {
  213. border: none;
  214. cursor: pointer;
  215. }
  216. .nav-tabs.nav-justified>li>a {
  217. white-space: nowrap;
  218. width: 100%;
  219. float: left;
  220. margin: 0;
  221. }
  222. /*replace nav-justified, due to nav-justified not useful in some device*/
  223. .justified {
  224. display: table;
  225. width: 100%;
  226. }
  227. .justified>li {
  228. display: table-cell;
  229. overflow: hidden;
  230. word-break: normal;
  231. text-overflow: ellipsis;
  232. }
  233. .justified>li>a {
  234. float: left;
  235. width: 100%;
  236. text-align: center;
  237. vertical-align: middle;
  238. padding: 5px 8px;
  239. white-space: nowrap;
  240. }
  241. @media ( min-width : 120px) {
  242. .nav-tabs.nav-justified>li {
  243. display: table-cell;
  244. width: 1%;
  245. }
  246. .dl-horizontal dt {
  247. float: left;
  248. width: 110px;
  249. overflow: hidden;
  250. clear: left;
  251. text-align: right;
  252. text-overflow: ellipsis;
  253. white-space: nowrap;
  254. }
  255. .dl-horizontal dt:after {
  256. content: ':'
  257. }
  258. .dl-horizontal dd {
  259. margin-left: 130px;
  260. }
  261. }
  262. .tab-content {
  263. margin-top: 6px;
  264. }
  265. /*ex deals*/
  266. #ex {
  267. display: none;
  268. margin-bottom: 10px;
  269. border-bottom: 1px solid #d2d2d2;
  270. position: relative;
  271. }
  272. #ex .btn-circle {
  273. border-radius: 500px;
  274. padding: 4px 7px;
  275. background-color: #fff;
  276. border: 1px solid #ccc;
  277. color: #777;
  278. margin-right: 10px;
  279. }
  280. #ex .btn.active {
  281. border-color: #ffb433;
  282. color: #ffb433;
  283. font-size: 23px;
  284. padding: 4px 9px;
  285. }
  286. #bill-detail {
  287. position: relative;
  288. overflow-y: auto;
  289. }
  290. .table .special {
  291. background-color: #f9f9f9;
  292. }
  293. .dropdown-menuman {
  294. width: 100%;
  295. border-radius: 0;
  296. margin-top: 0;
  297. padding-top: 1px;
  298. border-top: none;
  299. }
  300. .dropdown-menuman .list-group>.list-group-item {
  301. border-radius: 0;
  302. border-left: none;
  303. border-right: none;
  304. position: relative;
  305. }
  306. .dropdown-menuman .list-group>.list-group-item .left {
  307. display: inline-block;
  308. width: 45%;
  309. overflow: hidden;
  310. }
  311. .dropdown-menuman .list-group>.list-group-item .right {
  312. position: absolute;
  313. top: 6px;
  314. left: 50%;
  315. display: inline-block;
  316. width: 50%;
  317. overflow: hidden;
  318. }
  319. /*history*/
  320. #history {
  321. background: url("img/line-fx.png") repeat-y;
  322. background-position: bottom center;
  323. }
  324. #history>ul {
  325. margin-left: 0;
  326. }
  327. #history>ul>li {
  328. width: 100%;
  329. margin-top: 5px;
  330. padding: 5px 10px;
  331. border: 1px solid #eee;
  332. border-radius: 4px;
  333. position: relative;
  334. background: #fff;
  335. }
  336. #history>ul>li:first-child {
  337. margin-top: 0;
  338. }
  339. #history blockquote {
  340. font-size: 100%;
  341. margin-bottom: 5px;
  342. }
  343. /*allhistory*/
  344. /*history*/
  345. #all-history {
  346. background: url("img/line-fx.png") repeat-y;
  347. background-position: bottom center;
  348. }
  349. #all-history>ul {
  350. margin-left: 0;
  351. }
  352. #all-history>ul>li {
  353. width: 100%;
  354. margin-top: 5px;
  355. padding: 5px 10px;
  356. border: 1px solid #eee;
  357. border-radius: 4px;
  358. position: relative;
  359. background: #fff;
  360. }
  361. #all-history>ul>li:first-child {
  362. margin-top: 0;
  363. }
  364. #all-history blockquote {
  365. font-size: 100%;
  366. margin-bottom: 5px;
  367. }
  368. .text-top {
  369. position: absolute;
  370. top: 0;
  371. right: 0;
  372. padding: 2px 10px;
  373. border: 1px solid #eee;
  374. border-width: 0 0 1px 1px;
  375. border-radius: 0 0 0 4px;
  376. color: #27ad60;
  377. }
  378. .text-trans {
  379. position: absolute;
  380. top: 20px;
  381. right: 60px;
  382. background-color: #fff;
  383. border: 1px solid;
  384. padding: 3px 14px;
  385. font-size: 18px;
  386. font-family: "LiShu";
  387. border-radius: 10px;
  388. -moz-transform: rotate(-10deg);
  389. -webkit-transform: rotate(-10deg);
  390. -o-transform: rotate(-10deg);
  391. transform: rotate(-10deg);
  392. border-radius: 10px;
  393. opacity: 0.7;
  394. }
  395. .text-trans.success {
  396. color: #ffb433;
  397. border-color: #ffb433;
  398. }
  399. .text-trans.error {
  400. color: #d44950;
  401. border-color: #d44950;
  402. }
  403. .text-trans.warning {
  404. color: #7f64b5;
  405. border-color: #7f64b5;
  406. }
  407. .highlight {
  408. margin: -10px -10px -5px -10px;
  409. padding: 9px 14px;
  410. background-color: #f7f7f9;
  411. border-top: 1px solid #eee;
  412. }
  413. .highlight-all-history{
  414. margin: -10px -10px -5px -10px;
  415. /*padding: 9px 14px;*/
  416. padding:9px 10px;
  417. background-color: #f7f7f9;
  418. border-top: 0px;
  419. }
  420. /*"relative"*/
  421. #relative {
  422. width: 100%;
  423. padding-top: 18px;
  424. padding-bottom: 10px;
  425. min-height: 60px;
  426. background-color: #fff;
  427. }
  428. #relative .title {
  429. position: relative;
  430. border-top: 2px dotted #27ad60;
  431. padding-top: 20px;
  432. }
  433. #relative .title .text {
  434. position: absolute;
  435. left: 25px;
  436. top: -13px;
  437. width: 120px;
  438. background: #fff;
  439. margin: 0 auto;
  440. text-align: center;
  441. font-size: 18px;
  442. color: #7f64b5;
  443. }
  444. .btn-inverse {
  445. background-color: #fff;
  446. border: 1px solid #7f64b5;
  447. color: #7f64b5;
  448. font-weight: 700;
  449. }
  450. .btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active {
  451. background-color: #7f64b5;
  452. color: #fff;
  453. }
  454. .empty {
  455. background: url("img/sad.png") no-repeat;
  456. background-color: #fff;
  457. width: 51px;
  458. height: 31px;
  459. margin: 25px auto;
  460. }
  461. /*modal*/
  462. @media ( min-width : 120px) {
  463. .modal-dialog {
  464. margin: 18% auto;
  465. width: 80%;
  466. }
  467. }
  468. /*loading*/
  469. .loading-container {
  470. width: 160px;
  471. height: 56px;
  472. position: absolute;
  473. display: none;
  474. top: 50%;
  475. left: 50%;
  476. margin-left: -80px;
  477. line-height: 56px;
  478. color: #fff;
  479. padding-left: 60px;
  480. font-size: 15px;
  481. font-family: "YouYuan";
  482. background: #000 url(img/loading.gif) no-repeat 10px 50%;
  483. opacity: 0.7;
  484. z-index: 99999999;
  485. -moz-border-radius: 20px;
  486. -webkit-border-radius: 20px;
  487. border-radius: 20px;
  488. filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  489. }
  490. .loading-container:before,.loading-container:after {
  491. content: " ";
  492. position: absolute;
  493. top: 0;
  494. left: 0;
  495. right: 0;
  496. bottom: 0;
  497. min-height: 50px;
  498. min-width: 50px;
  499. }
  500. .loading-container:before {
  501. background-color: white;
  502. opacity: 0.5;
  503. }
  504. /*switch*/
  505. .has-switch {
  506. display: inline-block;
  507. cursor: pointer;
  508. -webkit-border-radius: 5px;
  509. -moz-border-radius: 5px;
  510. border-radius: 5px;
  511. border: 1px solid;
  512. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  513. position: relative;
  514. text-align: left;
  515. overflow: hidden;
  516. line-height: 8px;
  517. -webkit-user-select: none;
  518. -moz-user-select: none;
  519. -ms-user-select: none;
  520. -o-user-select: none;
  521. user-select: none;
  522. min-width: 100px;
  523. }
  524. .has-switch.switch-mini {
  525. min-width: 72px;
  526. }
  527. .has-switch.switch-small {
  528. min-width: 80px;
  529. }
  530. .has-switch.switch-large {
  531. min-width: 120px;
  532. }
  533. .has-switch.deactivate {
  534. opacity: 0.5;
  535. filter: alpha(opacity = 50);
  536. cursor: default !important;
  537. }
  538. .has-switch.deactivate label,.has-switch.deactivate span {
  539. cursor: default !important;
  540. }
  541. .has-switch>div {
  542. display: inline-block;
  543. width: 150%;
  544. position: relative;
  545. top: 0;
  546. }
  547. .has-switch>div.switch-animate {
  548. -webkit-transition: left 0.3s;
  549. -moz-transition: left 0.3s;
  550. -o-transition: left 0.3s;
  551. transition: left 0.3s;
  552. }
  553. .has-switch>div.switch-off {
  554. left: -50%;
  555. }
  556. .has-switch>div.switch-on {
  557. left: 0%;
  558. }
  559. .has-switch input[type=checkbox] {
  560. display: none;
  561. }
  562. .has-switch span,.has-switch label {
  563. -webkit-box-sizing: border-box;
  564. -moz-box-sizing: border-box;
  565. box-sizing: border-box;
  566. cursor: pointer;
  567. position: relative;
  568. display: inline-block;
  569. height: 100%;
  570. padding-bottom: 4px;
  571. padding-top: 4px;
  572. font-size: 14px;
  573. line-height: 20px;
  574. float: left;
  575. }
  576. .has-switch span.switch-mini,.has-switch label.switch-mini {
  577. padding-bottom: 4px;
  578. padding-top: 4px;
  579. font-size: 10px;
  580. line-height: 9px;
  581. }
  582. .has-switch span.switch-small,.has-switch label.switch-small {
  583. padding-bottom: 3px;
  584. padding-top: 3px;
  585. font-size: 12px;
  586. line-height: 18px;
  587. }
  588. .has-switch span.switch-large,.has-switch label.switch-large {
  589. padding-bottom: 9px;
  590. padding-top: 9px;
  591. font-size: 16px;
  592. line-height: normal;
  593. }
  594. .has-switch label {
  595. text-align: center;
  596. margin-top: -1px;
  597. margin-bottom: -1px;
  598. z-index: 100;
  599. width: 38%;
  600. border-left: 1px solid #cccccc;
  601. border-right: 1px solid #cccccc;
  602. color: #ffffff;
  603. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  604. background-color: #f5f5f5;
  605. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  606. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
  607. to(#e6e6e6));
  608. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  609. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  610. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  611. background-repeat: repeat-x;
  612. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',
  613. endColorstr='#ffe6e6e6', GradientType=0);
  614. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  615. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  616. *background-color: #e6e6e6;
  617. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  618. filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
  619. z-index: 100;
  620. }
  621. .has-switch label:hover,.has-switch label:focus,.has-switch label:active,.has-switch label.active,.has-switch label.disabled,.has-switch label[disabled]
  622. {
  623. color: #ffffff;
  624. background-color: #e6e6e6;
  625. *background-color: #d9d9d9;
  626. }
  627. .has-switch label:active,.has-switch label.active {
  628. background-color: #cccccc \9;
  629. }
  630. .has-switch label i {
  631. color: #000;
  632. text-shadow: 0 1px 0 #fff;
  633. line-height: 18px;
  634. pointer-events: none;
  635. }
  636. .has-switch span {
  637. text-align: center;
  638. z-index: 1;
  639. width: 31%;
  640. }
  641. .has-switch span.switch-left {
  642. -webkit-border-top-left-radius: 4px;
  643. -moz-border-radius-topleft: 4px;
  644. border-top-left-radius: 4px;
  645. -webkit-border-bottom-left-radius: 4px;
  646. -moz-border-radius-bottomleft: 4px;
  647. border-bottom-left-radius: 4px;
  648. }
  649. .has-switch span.switch-right {
  650. color: #333333;
  651. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  652. background-color: #f0f0f0;
  653. background-image: -moz-linear-gradient(top, #e6e6e6, #ffffff);
  654. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e6e6e6),
  655. to(#ffffff));
  656. background-image: -webkit-linear-gradient(top, #e6e6e6, #ffffff);
  657. background-image: -o-linear-gradient(top, #e6e6e6, #ffffff);
  658. background-image: linear-gradient(to bottom, #e6e6e6, #ffffff);
  659. background-repeat: repeat-x;
  660. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe6e6e6',
  661. endColorstr='#ffffffff', GradientType=0);
  662. border-color: #ffffff #ffffff #d9d9d9;
  663. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  664. *background-color: #ffffff;
  665. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  666. filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
  667. }
  668. .has-switch span.switch-right:hover,.has-switch span.switch-right:focus,.has-switch span.switch-right:active,.has-switch span.switch-right.active,.has-switch span.switch-right.disabled,.has-switch span.switch-right[disabled]
  669. {
  670. color: #333333;
  671. background-color: #ffffff;
  672. *background-color: #f2f2f2;
  673. }
  674. .has-switch span.switch-right:active,.has-switch span.switch-right.active
  675. {
  676. background-color: #e6e6e6 \9;
  677. }
  678. .has-switch span.switch-primary,.has-switch span.switch-left {
  679. color: #ffffff;
  680. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  681. background-color: #005fcc;
  682. background-image: -moz-linear-gradient(top, #0044cc, #0088cc);
  683. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0044cc),
  684. to(#0088cc));
  685. background-image: -webkit-linear-gradient(top, #0044cc, #0088cc);
  686. background-image: -o-linear-gradient(top, #0044cc, #0088cc);
  687. background-image: linear-gradient(to bottom, #0044cc, #0088cc);
  688. background-repeat: repeat-x;
  689. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0044cc',
  690. endColorstr='#ff0088cc', GradientType=0);
  691. border-color: #0088cc #0088cc #005580;
  692. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  693. *background-color: #0088cc;
  694. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  695. filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
  696. }
  697. .has-switch span.switch-primary:hover,.has-switch span.switch-left:hover,.has-switch span.switch-primary:focus,.has-switch span.switch-left:focus,.has-switch span.switch-primary:active,.has-switch span.switch-left:active,.has-switch span.switch-primary.active,.has-switch span.switch-left.active,.has-switch span.switch-primary.disabled,.has-switch span.switch-left.disabled,.has-switch span.switch-primary[disabled],.has-switch span.switch-left[disabled]
  698. {
  699. color: #ffffff;
  700. background-color: #0088cc;
  701. *background-color: #0077b3;
  702. }
  703. .has-switch span.switch-primary:active,.has-switch span.switch-left:active,.has-switch span.switch-primary.active,.has-switch span.switch-left.active
  704. {
  705. background-color: #006699 \9;
  706. }
  707. .has-switch span.switch-info {
  708. color: #ffffff;
  709. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  710. background-color: #41a7c5;
  711. background-image: -moz-linear-gradient(top, #2f96b4, #5bc0de);
  712. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2f96b4),
  713. to(#5bc0de));
  714. background-image: -webkit-linear-gradient(top, #2f96b4, #5bc0de);
  715. background-image: -o-linear-gradient(top, #2f96b4, #5bc0de);
  716. background-image: linear-gradient(to bottom, #2f96b4, #5bc0de);
  717. background-repeat: repeat-x;
  718. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2f96b4',
  719. endColorstr='#ff5bc0de', GradientType=0);
  720. border-color: #5bc0de #5bc0de #28a1c5;
  721. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  722. *background-color: #5bc0de;
  723. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  724. filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
  725. }
  726. .has-switch span.switch-info:hover,.has-switch span.switch-info:focus,.has-switch span.switch-info:active,.has-switch span.switch-info.active,.has-switch span.switch-info.disabled,.has-switch span.switch-info[disabled]
  727. {
  728. color: #ffffff;
  729. background-color: #5bc0de;
  730. *background-color: #46b8da;
  731. }
  732. .has-switch span.switch-info:active,.has-switch span.switch-info.active
  733. {
  734. background-color: #31b0d5 \9;
  735. }
  736. .has-switch span.switch-success {
  737. color: #ffffff;
  738. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  739. background-color: #58b058;
  740. background-image: -moz-linear-gradient(top, #51a351, #62c462);
  741. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#51a351),
  742. to(#62c462));
  743. background-image: -webkit-linear-gradient(top, #51a351, #62c462);
  744. background-image: -o-linear-gradient(top, #51a351, #62c462);
  745. background-image: linear-gradient(to bottom, #51a351, #62c462);
  746. background-repeat: repeat-x;
  747. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff51a351',
  748. endColorstr='#ff62c462', GradientType=0);
  749. border-color: #62c462 #62c462 #3b9e3b;
  750. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  751. *background-color: #62c462;
  752. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  753. filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
  754. }
  755. .has-switch span.switch-success:hover,.has-switch span.switch-success:focus,.has-switch span.switch-success:active,.has-switch span.switch-success.active,.has-switch span.switch-success.disabled,.has-switch span.switch-success[disabled]
  756. {
  757. color: #ffffff;
  758. background-color: #62c462;
  759. *background-color: #4fbd4f;
  760. }
  761. .has-switch span.switch-success:active,.has-switch span.switch-success.active
  762. {
  763. background-color: #42b142 \9;
  764. }
  765. .has-switch span.switch-warning {
  766. color: #ffffff;
  767. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  768. background-color: #f9a123;
  769. background-image: -moz-linear-gradient(top, #f89406, #fbb450);
  770. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f89406),
  771. to(#fbb450));
  772. background-image: -webkit-linear-gradient(top, #f89406, #fbb450);
  773. background-image: -o-linear-gradient(top, #f89406, #fbb450);
  774. background-image: linear-gradient(to bottom, #f89406, #fbb450);
  775. background-repeat: repeat-x;
  776. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff89406',
  777. endColorstr='#fffbb450', GradientType=0);
  778. border-color: #fbb450 #fbb450 #f89406;
  779. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  780. *background-color: #fbb450;
  781. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  782. filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
  783. }
  784. .has-switch span.switch-warning:hover,.has-switch span.switch-warning:focus,.has-switch span.switch-warning:active,.has-switch span.switch-warning.active,.has-switch span.switch-warning.disabled,.has-switch span.switch-warning[disabled]
  785. {
  786. color: #ffffff;
  787. background-color: #fbb450;
  788. *background-color: #faa937;
  789. }
  790. .has-switch span.switch-warning:active,.has-switch span.switch-warning.active
  791. {
  792. background-color: #fa9f1e \9;
  793. }
  794. .has-switch span.switch-danger {
  795. color: #ffffff;
  796. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  797. background-color: #d14641;
  798. background-image: -moz-linear-gradient(top, #bd362f, #ee5f5b);
  799. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bd362f),
  800. to(#ee5f5b));
  801. background-image: -webkit-linear-gradient(top, #bd362f, #ee5f5b);
  802. background-image: -o-linear-gradient(top, #bd362f, #ee5f5b);
  803. background-image: linear-gradient(to bottom, #bd362f, #ee5f5b);
  804. background-repeat: repeat-x;
  805. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd362f',
  806. endColorstr='#ffee5f5b', GradientType=0);
  807. border-color: #ee5f5b #ee5f5b #e51d18;
  808. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  809. *background-color: #ee5f5b;
  810. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  811. filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
  812. }
  813. .has-switch span.switch-danger:hover,.has-switch span.switch-danger:focus,.has-switch span.switch-danger:active,.has-switch span.switch-danger.active,.has-switch span.switch-danger.disabled,.has-switch span.switch-danger[disabled]
  814. {
  815. color: #ffffff;
  816. background-color: #ee5f5b;
  817. *background-color: #ec4844;
  818. }
  819. .has-switch span.switch-danger:active,.has-switch span.switch-danger.active
  820. {
  821. background-color: #e9322d \9;
  822. }
  823. #em_search {
  824. max-height: 200px;
  825. overflow-y: auto;
  826. }
  827. input:read-only,.setInput
  828. {
  829. border-left: 0px;
  830. border-top: 0px;
  831. border-right: 0px;
  832. border-bottom: 1px;
  833. background: none;
  834. outline:none;
  835. }
  836. select[readonly]{
  837. -webkit-appearance:none;
  838. -moz-appearance:none;
  839. appearance:none;
  840. border-left: 0px;
  841. border-top: 0px;
  842. border-right: 0px;
  843. border-bottom: 1px;
  844. background: none!important;
  845. outline:none;
  846. }
  847. #mainForm textarea{
  848. display: block;
  849. margin:0 auto;
  850. overflow: hidden;
  851. height: 20px;
  852. padding:2px;
  853. }
  854. /* .mainForm input:required, textarea:required {
  855. padding-right:30px;
  856. background: #fff url(images/icon/need.png) no-repeat 98% center;
  857. } */
  858. .cellElement{
  859. width:100%;
  860. }
  861. .ui-autocomplete{
  862. z-index: 11111!important;
  863. max-height: 100px;
  864. overflow-y: auto;
  865. /* 防止水平滚动条 */
  866. overflow-x: hidden;
  867. }
  868. /* IE 6 不支持 max-height
  869. * 我们使用 height 代替,但是这会强制菜单总是显示为那个高度
  870. */
  871. * html .ui-autocomplete {
  872. height: 100px;
  873. }
  874. .ui-jqgrid tr.jqgrow td {
  875. white-space: normal !important;
  876. height:auto;
  877. }
  878. textarea:read-only{
  879. display: block;
  880. margin:0 auto;
  881. overflow: hidden;
  882. height: auto;
  883. padding:2px;
  884. }
  885. .clearbutton {
  886. background-image: url(../../resource/images/ie_notice.jpg);
  887. background-position: 0 -25px;
  888. background-repeat: no-repeat;
  889. -moz-user-focus: ignore; /* https://developer.mozilla.org/en/CSS/-moz-user-focus */
  890. cursor: pointer;
  891. position: absolute;
  892. overflow: hidden; /* IE 6 :-( */
  893. display: inline-block;
  894. width: 15px;
  895. height: 15px;
  896. top: 15px;
  897. right: 15px;
  898. }