123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /*解决鼠标指针*/
- .ui-jqgrid td {
- cursor: default;
- }
- /*解决标题栏颜色*/
- .ui-jqgrid-view > .ui-jqgrid-titlebar {
- background: #004c8b;
- }
- /*解决表格框架的问题*/
- .ui-widget.ui-widget-content {
- border: none
- }
- /*解决 grid 工具条自适应高度问题*/
- .ui-jqgrid > .ui-jqgrid-view > .ui-userdata {
- height: auto;
- border: none;
- border-bottom: 1px solid #ccc !important;
- }
- /*解决分页栏高度*/
- .ui-jqgrid .ui-jqgrid-pager {
- height: 30px;
- padding: 0 !important;
- }
- .ui-jqgrid .ui-pager-control {
- height: 30px
- }
- /*分页栏左边不要按钮*/
- .ui-jqgrid .ui-pg-table td[align=left] {
- width: 0
- }
- /*解决高度问题*/
- .ui-jqgrid tr.jqgrow {
- height: 36px !important;
- padding: 2px 6px;
- }
- .ui-jqgrid tr.jqgrow td {
- height: auto !important;
- padding: 0 3px;
- }
- /*拖动列 宽度不够的问题*/
- .ui-jqgrid .ui-jqgrid-htable th span.ui-jqgrid-resize {
- width: 35px;
- }
- .ui-jqgrid .ui-jqgrid-htable th.ui-th-ltr, .ui-th-ltr {
- height: 38px;
- }
- .ui-userdata {
- background: none !important;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid .ui-jqgrid-bdiv tr.ui-row-ltr > td {
- padding: 0 10px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
- background: #e1e6e9 !important;
- color: #000;
- border: 1px solid #ccc;
- }
- .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
- background: #e4efff;
- }
- .ui-icon, .ui-widget-content .ui-icon {
- background-image: url(/static/plugins/jquery-ui-1.12.1.custom/images/pagination_icons.png);
- }
- .ui-icon-seek-first {
- background-position: 0 0;
- }
- .ui-icon-seek-prev {
- background-position: -16px -0;
- }
- .ui-icon-seek-next {
- background-position: -32px 0px;
- }
- .ui-icon-seek-end {
- background-position: -48px 0px;
- }
- .ui-jqgrid .ui-pg-table .ui-pg-input, .ui-jqgrid .ui-pg-table .ui-pg-selbox {
- height: 22px;
- padding: 0 5px;
- }
- .ui-pager-control .ui-jqgrid-pg-left {
- display: none;
- }
- .ui-jqgrid-view > .ui-jqgrid-titlebar {
- height: 38px;
- color: #fff;
- line-height: 30px;
- padding-left: 10px;
- }
- .ui-corner-top {
- border-radius: 0;
- }
- .ui-jqgrid > .loading {
- display: block;
- background: #fff url(/yvanui/themes/default/images/list-loding.gif) 4px 3px no-repeat;
- color: #333;
- padding-left: 45px;
- border: 2px solid #999;
- height: 26px;
- line-height: 26px;
- }
|