yvan-ext.css 17 KB

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