yvan-ext.css 17 KB

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