yvan-ext.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797
  1. /* 空表格文字 */
  2. .x-grid-scrollbar-clipper .x-grid-empty {
  3. text-align: center;
  4. }
  5. .x-grid-scrollbar-clipper-locked .x-grid-empty {
  6. display: none;
  7. }
  8. .x-grid-empty {
  9. -moz-user-select: none;
  10. -webkit-user-select: none;
  11. -ms-user-select: none;
  12. user-select: none;
  13. }
  14. /* 表格内部的拖动条不可见 */
  15. /*.x-grid .x-splitter {*/
  16. /* display: none;*/
  17. /*}*/
  18. /*.x-grid-locking-body .x-box-item.x-panel-default.x-grid {*/
  19. /* left: 0 !important;*/
  20. /* border-style: none;*/
  21. /*}*/
  22. /* 对话框 警告和提示 */
  23. .x-dlg-icon.info {
  24. font: normal normal normal 40px/1 FontAwesome;
  25. color: #31708f;
  26. }
  27. .x-dlg-icon.info:before {
  28. content: "\f05a"
  29. }
  30. .x-dlg-icon.error {
  31. font: normal normal normal 40px/1 FontAwesome;
  32. color: #a94442;
  33. }
  34. .x-dlg-icon.error:before {
  35. content: "\f071"
  36. }
  37. /* 合计行 */
  38. .x-grid-row-summary .x-grid-cell {
  39. font-weight: bold;
  40. }
  41. /** 单元格换行 **/
  42. .cell_wrap > .x-grid-cell-inner {
  43. white-space: normal;
  44. word-break: break-all;
  45. }
  46. /** 隐藏 class, 用于 iconCls 层叠 **/
  47. .hide_tag {
  48. display: none;
  49. }
  50. /** 进度条颜色 **/
  51. .x-progress.progres_hide {
  52. opacity: 0;
  53. }
  54. .x-progress.progres_green .x-progress-bar {
  55. background-color: #5cb85c;
  56. }
  57. .x-progress.progres_red .x-progress-bar {
  58. background-color: #d9534f;
  59. }
  60. .x-progress.progres_yellow .x-progress-bar {
  61. background-color: #f0ad4e;
  62. }
  63. .x-progress.progres_yellow .x-progress-bar > .x-progress-text {
  64. color: black;
  65. }
  66. /** 日期弹出框底部,清空按钮不要出现 **/
  67. .x-datepicker-footer .x-form-clear-trigger {
  68. display: none;
  69. }
  70. /** 日期弹出框右侧下拉框,是日期图标 **/
  71. .x-form-field-date .x-form-arrow-trigger:before {
  72. content: "\f073" !important;
  73. }
  74. /** 日期弹出框底部,不要出现数字+1-1的滑动条 **/
  75. .x-datepicker-footer .x-form-trigger-spinner {
  76. display: none;
  77. }
  78. /** displayField 放大值 **/
  79. .yvan-display-field .x-form-item-label-inner {
  80. margin-top: 7px;
  81. }
  82. .yvan-display-field .x-form-display-field {
  83. font-size: 24px;
  84. margin-top: 12px;
  85. }
  86. /*== layer提示框==*/
  87. .yvan-msg {
  88. min-width: 100px;
  89. background-color: rgba(0, 0, 0, .6);
  90. color: #fff;
  91. border: none;
  92. -webkit-box-shadow: none;
  93. box-shadow: none;
  94. margin: 0;
  95. padding: 0;
  96. border-radius: 2px;
  97. position: fixed;
  98. pointer-events: auto;
  99. z-index: 99999999999;
  100. }
  101. .yvan-msg-content {
  102. pointer-events: auto;
  103. color: #fff;
  104. padding: 12px 25px;
  105. text-align: center;
  106. position: relative;
  107. line-height: 24px;
  108. word-break: break-all;
  109. overflow: hidden;
  110. font-size: 14px;
  111. overflow-x: hidden;
  112. overflow-y: auto;
  113. }
  114. /*== 动画 ==*/
  115. .yvan-anim {
  116. -webkit-animation-fill-mode: both;
  117. animation-fill-mode: both;
  118. -webkit-animation-duration: 0.3s;
  119. animation-duration: 0.3s;
  120. }
  121. @-webkit-keyframes yvan-bounceIn {
  122. 0% {
  123. opacity: 0;
  124. -webkit-transform: scale(0.5);
  125. transform: scale(0.5);
  126. }
  127. 100% {
  128. opacity: 1;
  129. -webkit-transform: scale(1);
  130. transform: scale(1);
  131. }
  132. }
  133. @keyframes yvan-bounceIn {
  134. 0% {
  135. opacity: 0;
  136. -webkit-transform: scale(0.5);
  137. transform: scale(0.5);
  138. }
  139. 100% {
  140. opacity: 1;
  141. -webkit-transform: scale(1);
  142. transform: scale(1);
  143. }
  144. }
  145. .yvan-anim-00 {
  146. -webkit-animation-name: yvan-bounceIn;
  147. animation-name: yvan-bounceIn;
  148. }
  149. @-webkit-keyframes yvan-zoomInDown {
  150. 0% {
  151. opacity: 0;
  152. -webkit-transform: scale(0.1) translatey(-2000px);
  153. transform: scale(0.1) translatey(-2000px);
  154. -webkit-animation-timing-function: ease-in-out;
  155. animation-timing-function: ease-in-out;
  156. }
  157. 60% {
  158. opacity: 1;
  159. -webkit-transform: scale(0.475) translatey(60px);
  160. transform: scale(0.475) translatey(60px);
  161. -webkit-animation-timing-function: ease-out;
  162. animation-timing-function: ease-out;
  163. }
  164. }
  165. @keyframes yvan-zoomInDown {
  166. 0% {
  167. opacity: 0;
  168. -webkit-transform: scale(0.1) translatey(-2000px);
  169. transform: scale(0.1) translatey(-2000px);
  170. -webkit-animation-timing-function: ease-in-out;
  171. animation-timing-function: ease-in-out;
  172. }
  173. 60% {
  174. opacity: 1;
  175. -webkit-transform: scale(0.475) translatey(60px);
  176. transform: scale(0.475) translatey(60px);
  177. -webkit-animation-timing-function: ease-out;
  178. animation-timing-function: ease-out;
  179. }
  180. }
  181. .yvan-anim-01 {
  182. -webkit-animation-name: yvan-zoomInDown;
  183. animation-name: yvan-zoomInDown;
  184. }
  185. @-webkit-keyframes yvan-fadeInUpBig {
  186. 0% {
  187. opacity: 0;
  188. -webkit-transform: translatey(2000px);
  189. transform: translatey(2000px);
  190. }
  191. 100% {
  192. opacity: 1;
  193. -webkit-transform: translatey(0);
  194. transform: translatey(0);
  195. }
  196. }
  197. @keyframes yvan-fadeInUpBig {
  198. 0% {
  199. opacity: 0;
  200. -webkit-transform: translatey(2000px);
  201. transform: translatey(2000px);
  202. }
  203. 100% {
  204. opacity: 1;
  205. -webkit-transform: translatey(0);
  206. transform: translatey(0);
  207. }
  208. }
  209. .yvan-anim-02 {
  210. -webkit-animation-name: yvan-fadeInUpBig;
  211. animation-name: yvan-fadeInUpBig;
  212. }
  213. @-webkit-keyframes yvan-zoomInLeft {
  214. 0% {
  215. opacity: 0;
  216. -webkit-transform: scale(0.1) translatex(-2000px);
  217. transform: scale(0.1) translatex(-2000px);
  218. -webkit-animation-timing-function: ease-in-out;
  219. animation-timing-function: ease-in-out;
  220. }
  221. 60% {
  222. opacity: 1;
  223. -webkit-transform: scale(0.475) translatex(48px);
  224. transform: scale(0.475) translatex(48px);
  225. -webkit-animation-timing-function: ease-out;
  226. animation-timing-function: ease-out;
  227. }
  228. }
  229. @keyframes yvan-zoomInLeft {
  230. 0% {
  231. opacity: 0;
  232. -webkit-transform: scale(0.1) translatex(-2000px);
  233. transform: scale(0.1) translatex(-2000px);
  234. -webkit-animation-timing-function: ease-in-out;
  235. animation-timing-function: ease-in-out;
  236. }
  237. 60% {
  238. opacity: 1;
  239. -webkit-transform: scale(0.475) translatex(48px);
  240. transform: scale(0.475) translatex(48px);
  241. -webkit-animation-timing-function: ease-out;
  242. animation-timing-function: ease-out;
  243. }
  244. }
  245. .yvan-anim-03 {
  246. -webkit-animation-name: yvan-zoomInLeft;
  247. animation-name: yvan-zoomInLeft;
  248. }
  249. @-webkit-keyframes yvan-rollIn {
  250. 0% {
  251. opacity: 0;
  252. -webkit-transform: translatex(-100%) rotate(-120deg);
  253. transform: translatex(-100%) rotate(-120deg);
  254. }
  255. 100% {
  256. opacity: 1;
  257. -webkit-transform: translatex(0) rotate(0);
  258. transform: translatex(0) rotate(0);
  259. }
  260. }
  261. @keyframes yvan-rollIn {
  262. 0% {
  263. opacity: 0;
  264. -webkit-transform: translatex(-100%) rotate(-120deg);
  265. transform: translatex(-100%) rotate(-120deg);
  266. }
  267. 100% {
  268. opacity: 1;
  269. -webkit-transform: translatex(0) rotate(0);
  270. transform: translatex(0) rotate(0);
  271. }
  272. }
  273. .yvan-anim-04 {
  274. -webkit-animation-name: yvan-rollIn;
  275. animation-name: yvan-rollIn;
  276. }
  277. @-webkit-keyframes yvan-fadeIn {
  278. 0% {
  279. opacity: 0;
  280. }
  281. 100% {
  282. opacity: 1;
  283. }
  284. }
  285. @keyframes yvan-fadeIn {
  286. 0% {
  287. opacity: 0;
  288. }
  289. 100% {
  290. opacity: 1;
  291. }
  292. }
  293. .yvan-anim-05 {
  294. -webkit-animation-name: yvan-fadeIn;
  295. animation-name: yvan-fadeIn;
  296. }
  297. @-webkit-keyframes yvan-shake {
  298. 0%,
  299. 100% {
  300. -webkit-transform: translatex(0);
  301. transform: translatex(0);
  302. }
  303. 10%,
  304. 30%,
  305. 50%,
  306. 70%,
  307. 90% {
  308. -webkit-transform: translatex(-10px);
  309. transform: translatex(-10px);
  310. }
  311. 20%,
  312. 40%,
  313. 60%,
  314. 80% {
  315. -webkit-transform: translatex(10px);
  316. transform: translatex(10px);
  317. }
  318. }
  319. @keyframes yvan-shake {
  320. 0%,
  321. 100% {
  322. -webkit-transform: translatex(0);
  323. transform: translatex(0);
  324. }
  325. 10%,
  326. 30%,
  327. 50%,
  328. 70%,
  329. 90% {
  330. -webkit-transform: translatex(-10px);
  331. transform: translatex(-10px);
  332. }
  333. 20%,
  334. 40%,
  335. 60%,
  336. 80% {
  337. -webkit-transform: translatex(10px);
  338. transform: translatex(10px);
  339. }
  340. }
  341. .yvan-anim-06 {
  342. -webkit-animation-name: yvan-shake;
  343. animation-name: yvan-shake;
  344. }
  345. @-webkit-keyframes fadeIn {
  346. 0% {
  347. opacity: 0;
  348. }
  349. 100% {
  350. opacity: 1;
  351. }
  352. }
  353. .webix_template {
  354. padding: 0;
  355. }
  356. .input_validate_false {
  357. background-color: #ffdedb;
  358. border-color: #ff8d82;
  359. }
  360. .webix_dataview_item[role='option'] {
  361. padding: 2px 2px;
  362. }
  363. /*== extjs 提示框==*/
  364. .x-message-box .x-window-body {
  365. background-color: #fff;
  366. border-width: 0
  367. }
  368. .x-message-box-info, .x-message-box-warning, .x-message-box-question, .x-message-box-error {
  369. background-position: left top;
  370. background-repeat: no-repeat
  371. }
  372. .x-message-box-icon {
  373. height: 44px;
  374. width: 44px;
  375. margin-right: 10px
  376. }
  377. .x-message-box-info {
  378. font: 44px/1 'Font Awesome 5 Free';
  379. color: grey
  380. }
  381. .x-message-box-info:before {
  382. content: '\f05a'
  383. }
  384. .x-message-box-warning {
  385. font: 44px/1 'Font Awesome 5 Free';
  386. color: #f8d400
  387. }
  388. .x-message-box-warning:before {
  389. content: '\f071'
  390. }
  391. .x-message-box-question {
  392. font: 44px/1 'Font Awesome 5 Free';
  393. color: grey
  394. }
  395. .x-message-box-question:before {
  396. content: '\f059'
  397. }
  398. .x-message-box-error {
  399. font: 44px/1 'Font Awesome 5 Free';
  400. color: #ee611f
  401. }
  402. .x-message-box-error:before {
  403. content: '\f057'
  404. }
  405. /*
  406. */
  407. .wotu-ui.x-border-layout-ct, .wotu-ui div.x-border-layout-ct {
  408. background: #f0f2f5;
  409. }
  410. .wotu-ui.x-keyboard-mode .x-tab-focus.x-tab-default {
  411. /** 选中的标签 focus 之后,隐藏内边框
  412. outline: none;
  413. */
  414. }
  415. .wotu-ui .x-tab-bar-plain.x-tab-bar .x-tab.x-tab-default {
  416. background: #dcdcdc;
  417. border-radius: 3px 3px 0 0;
  418. border: 1px solid #d9d9d9;
  419. color: #333;
  420. border-bottom: none;
  421. }
  422. .wotu-ui .x-tab-bar-plain.x-tab-bar .x-tab.x-tab-active.x-tab-default {
  423. background: #fff;
  424. }
  425. .wotu-ui .x-tab-bar-plain.x-tab-bar .x-tab.x-tab-active.x-tab-default {
  426. position: relative;
  427. overflow: visible;
  428. z-index: 1;
  429. }
  430. .wotu-ui .x-tab-bar-plain.x-tab-bar .x-tab.x-tab-active.x-tab-default:after {
  431. width: 100%;
  432. height: 1px;
  433. background: #000;
  434. content: '';
  435. position: absolute;
  436. left: -10px;
  437. bottom: -1px;
  438. padding: 0 10px;
  439. -webkit-box-sizing: content-box;
  440. box-sizing: content-box;
  441. z-index: 9999;
  442. }
  443. .wotu-ui .x-tab-bar-plain.x-tab-bar .x-tab.x-tab-default .x-tab-close-btn {
  444. top: 10px;
  445. right: 3px;
  446. }
  447. .wotu-ui .x-form-trigger-wrap > div.x-form-trigger {
  448. width: 23px;
  449. }
  450. .wotu-ui .x-form-trigger-wrap > div.x-form-trigger.x-form-clear-trigger {
  451. width: 12px;
  452. font-size: 12px;
  453. font-weight: inherit;
  454. }
  455. .wotu-ui .x-form-trigger-wrap > div.x-form-trigger:last-child {
  456. width: 23px;
  457. }
  458. .wotu-ui.x-keyboard-mode .x-btn-focus.x-btn-default-toolbar-small {
  459. -webkit-box-shadow: none;
  460. box-shadow: none;
  461. }
  462. .wotu-ui .x-btn.x-btn-disabled {
  463. cursor: not-allowed;
  464. }
  465. .wotu-ui .x-item-disabled, .wotu-ui .x-item-disabled * {
  466. cursor: not-allowed;
  467. pointer-events: auto;
  468. }
  469. .wotu-ui .ext-btn-success, .wotu-ui .ext-btn-success.x-btn-disabled {
  470. background: #5cb85c;
  471. border-color: #4cae4c;
  472. }
  473. .wotu-ui .ext-btn-success .x-btn-icon-el-default-toolbar-small, .wotu-ui .ext-btn-success .x-btn-inner-default-toolbar-small {
  474. color: #fff
  475. }
  476. .wotu-ui .ext-btn-success:hover {
  477. background-color: #449d44;
  478. border-color: #398439;
  479. }
  480. .wotu-ui.x-keyboard-mode .ext-btn-success.x-btn-focus.x-btn-default-toolbar-small {
  481. background-color: #449d44;
  482. }
  483. .wotu-ui .ext-btn-primary, .wotu-ui .ext-btn-primary.x-btn-disabled {
  484. background: #146bb3;
  485. border-color: #004c8b;
  486. }
  487. .wotu-ui .ext-btn-primary .x-btn-icon-el-default-toolbar-small, .wotu-ui .ext-btn-primary .x-btn-inner-default-toolbar-small {
  488. color: #fff
  489. }
  490. .wotu-ui .ext-btn-primary:hover {
  491. background-color: #286090;
  492. border-color: #204d74;
  493. }
  494. .wotu-ui.x-keyboard-mode .ext-btn-primary.x-btn-focus.x-btn-default-toolbar-small {
  495. background-color: #286090;
  496. }
  497. .wotu-ui .ext-btn-warning, .wotu-ui .ext-btn-warning.x-btn-disabled {
  498. background: #f0ad4e;
  499. border-color: #eea236;
  500. }
  501. .wotu-ui .ext-btn-warning .x-btn-icon-el-default-toolbar-small, .wotu-ui .ext-btn-warning .x-btn-inner-default-toolbar-small {
  502. color: #fff
  503. }
  504. .wotu-ui .ext-btn-warning:hover {
  505. background-color: #ec971f;
  506. border-color: #d58512;
  507. }
  508. .wotu-ui.x-keyboard-mode .ext-btn-warning.x-btn-focus.x-btn-default-toolbar-small {
  509. background-color: #ec971f;
  510. }
  511. .wotu-ui .ext-btn-danger, .wotu-ui .ext-btn-danger.x-btn-disabled {
  512. background: #d9534f;
  513. border-color: #d43f3a;
  514. }
  515. .wotu-ui .ext-btn-danger .x-btn-icon-el-default-toolbar-small, .wotu-ui .ext-btn-danger .x-btn-inner-default-toolbar-small {
  516. color: #fff
  517. }
  518. .wotu-ui .ext-btn-danger:hover {
  519. background-color: #c9302c;
  520. border-color: #ac2925;
  521. }
  522. .wotu-ui.x-keyboard-mode .ext-btn-danger.x-btn-focus.x-btn-default-toolbar-small {
  523. background-color: #c9302c;
  524. border-color: #ac2925;
  525. }
  526. /*皮肤*/
  527. .wotu-ui .x-panel-header-default {
  528. background: #004c8b;
  529. }
  530. .wotu-ui .x-tab-bar-default {
  531. background: #004c8b;
  532. }
  533. .wotu-ui .x-tab.x-tab-active.x-tab-default .x-tab-inner-default {
  534. color: #404040;
  535. }
  536. .wotu-ui .x-tree-icon-parent-expanded, .wotu-ui .x-tree-icon-leaf {
  537. color: #404040;
  538. }
  539. .wotu-ui .x-grid-tree-node-expanded .x-tree-elbow-plus, .wotu-ui .x-grid-tree-node-expanded .x-tree-elbow-end-plus {
  540. color: #404040;
  541. }
  542. .wotu-ui.x-keyboard-mode .x-grid-item-focused .x-grid-cell-inner:before {
  543. /** 单元格 focus 之后不需要内边框
  544. border:none
  545. */
  546. }
  547. .wotu-ui .x-tree-elbow-plus, .wotu-ui .x-tree-elbow-end-plus, .wotu-ui .x-tree-icon-parent {
  548. color: #404040;
  549. }
  550. .wotu-ui .x-window-header-default-top {
  551. background: #004c8b;
  552. }
  553. .wotu-ui .x-window-default, .wotu-ui .x-window-header-default {
  554. border-color: #004c8b
  555. }
  556. .wotu-ui .x-window-body-default {
  557. border: none
  558. }
  559. .wotu-ui .x-window-header-default .x-tool-img {
  560. background: #004c8b;
  561. }
  562. .wotu-ui.x-keyboard-mode .x-form-checkbox-focus.x-form-checkbox-default {
  563. color: #004c8b;
  564. }
  565. .wotu-ui .x-boundlist-selected {
  566. background: #004c8b;
  567. border-color: #004c8b;
  568. }
  569. .wotu-ui .x-boundlist-item-over {
  570. background: #004c8b;
  571. }
  572. .wotu-ui .x-boundlist-item {
  573. border: none
  574. }
  575. .wotu-ui .x-datepicker-selected div.x-datepicker-date {
  576. background: #004c8b;
  577. }
  578. .wotu-ui .x-datepicker-footer .x-btn-default-small {
  579. background: #004c8b;
  580. }
  581. /*.wotu-ui .x-btn-default-small{*/
  582. /* background:#004c8b ;*/
  583. /*}*/
  584. /*form*/
  585. .wotu-ui .x-form-readonly .x-form-trigger-wrap {
  586. border: none
  587. }
  588. .wotu-ui .x-menu-item-default.x-menu-item-focus, .wotu-ui .x-menu-item-default.x-menu-item-active {
  589. background: #004c8b;
  590. }
  591. .wotu-ui .x-grid-locked-split .x-grid-inner-normal {
  592. border-width: 0 0 0 1px
  593. }
  594. .wotu-ui .x-grid-locked .x-grid-inner-locked {
  595. border-width: 0 1px 0 0
  596. }
  597. .wotu-ui .x-grid-scrollbar-clipper-locked, .wotu-ui .x-grid-scrollbar-locked {
  598. border-width: 0 1px 0 0;
  599. background: #000;
  600. }
  601. /*grid行颜色设定*/
  602. .x-grid-record-red {
  603. color: red
  604. }
  605. .x-grid-record-bg-green {
  606. background: #b7d6a4;
  607. }
  608. .x-grid-record-bg-red {
  609. background: #e2baba;
  610. }
  611. .x-grid-record-bg-red-highlight {
  612. background: #ea4b4b;
  613. }
  614. .x-grid-record-bg-yellow {
  615. background: #f2e3b2;
  616. }
  617. .x-grid-record-bg-yellow-highlight {
  618. background: #d6ca22;
  619. }
  620. .x-grid-record-bg-purple {
  621. background: #d3bde0;
  622. }
  623. .x-grid-record-bg-blue {
  624. background: #bac3e2;
  625. }
  626. /*
  627. .x-grid-scrollbar-clipper-locked .x-grid-row[aria-selected="true"] {
  628. outline: 0 !important;
  629. }
  630. */
  631. /** 无论什么颜色,选中的状态都是黄色 */
  632. .x-grid-row[aria-selected="true"],
  633. .x-grid-row.x-grid-record-red[aria-selected="true"],
  634. .x-grid-row.x-grid-record-bg-green[aria-selected="true"],
  635. .x-grid-row.x-grid-record-bg-red[aria-selected="true"],
  636. .x-grid-row.x-grid-record-bg-yellow[aria-selected="true"],
  637. .x-grid-row.x-grid-record-bg-purple[aria-selected="true"],
  638. .x-grid-row.x-grid-record-bg-blue[aria-selected="true"] {
  639. /*
  640. border: 1px solid #0066bf;
  641. outline: 1px double #5fa2dd;
  642. */
  643. background-color: #ffefbb;
  644. }
  645. /*表格样式调整*/
  646. .x-grid-inner-locked .x-column-header-inner {
  647. padding: 7px 0;
  648. }
  649. .x-grid-cell-inner-row-numberer {
  650. text-align: center !important;
  651. }
  652. /*按钮样式修改*/
  653. .wotu-ui .x-segmented-button-item-horizontal.x-btn-default-small {
  654. border: none;
  655. background-color: #134c8b;
  656. }
  657. .wotu-ui .x-btn.x-btn-menu-active.x-btn-default-small, .wotu-ui .x-btn.x-btn-pressed.x-btn-default-small {
  658. border: none;
  659. background-color: #1960af;
  660. }
  661. /*功能菜单样式修改*/
  662. .x-panel-header-default {
  663. border: none;
  664. }
  665. /*底部工具栏样式修改*/
  666. .x-grid-paging-toolbar .x-form-text-default {
  667. text-align: center;
  668. padding: 5px 0;
  669. }