yvan-ext.css 17 KB

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