123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- /** 只读框 **/
- .textbox-readonly {
- background: white;
- border: 0;
- }
- .textbox-disabled .textbox-text, .textbox-readonly .textbox-text {
- background: white;
- border: 0;
- cursor: default;
- box-shadow: none;
- }
- .yvgrid-searchbox {
- background: url(/static/images/searchbox.png) right no-repeat !important;
- background-size: 48px 30px;
- padding-right: 50px;
- }
- .yvgrid-searchbox-hilight {
- background: url(/static/images/searchbox-hover.png) right no-repeat !important;
- background-size: 48px 30px;
- cursor: pointer;
- }
- .yvgrid-searchbox-hilight1 {
- background: url(/static/images/searchbox-hover1.png) right no-repeat !important;
- background-size: 40px 25px;
- cursor: pointer;
- }
- .yvgrid-searchbox-hilight2 {
- background: url(/static/images/searchbox-hover2.png) right no-repeat !important;
- background-size: 40px 25px;
- cursor: pointer;
- }
- .yvgrid-presentrow-disable{
- height: 100%;
- width: 100%;
- background-color:#e5e5e5 !important;
- }
- /*
- .yvgrid-searchbox:hover, .yvgrid-searchbox:focus {
- background: url(/static/images/searchbox-hover.png) right no-repeat!important;;
- background-size: 40px 25px;
- }
- */
- [yv-grid-cell-selected] {
- color: #ffffff !important;
- background-color: #428bca !important;
- border-color: #357ebd !important;
- }
- /* 禁用掉勾选用的 checkbox 列*/
- .jqx-grid-cell > .jqx-checkbox{
- display: none;
- }
- .jqx-widget-header > div > .jqx-checkbox{
- display: none;
- }
- .jqx-grid-cell-filter-row.jqx-grid-cell > .jqx-checkbox {
- display: block;
- }
- .jqx-tooltip-main .jqx-fill-state-normal {
- background-color: RED;
- color: WHITE
- }
- .asterisk{
- line-height: 34px;
- width: 100%;
- height: 30px;
- text-align: center;
- }
- .yvgrid-yvdate{
- background: url(/static/images/datebox_arrow.png) right 7px center no-repeat !important;
- background-size: 48px 30px;
- padding-right: 30px;
- }
- .yvgrid-numberbox {
- border: 0;
- padding: 4px;
- text-align: right;
- }
- /* 去掉 input[type=number] 右边的上下箭头图标 */
- input::-webkit-outer-spin-button,
- input::-webkit-inner-spin-button{
- -webkit-appearance: none !important;
- }
- input[type="number"]{
- -moz-appearance:textfield;
- }
- .jqx-grid-cell-edit input{
- width:100%!important;
- height:100%!important;
- }
- .jqx-grid-cell-selected.jqx-grid-cell-edit{
- border-color: #ababab !important;
- }
- .jqx-combobox-arrow-normal{
- width:19px!important;
- }
- .jqx-grid-cell-checkbox{
- text-align: center;
- }
- .jqx-grid-cell-checkbox .yvgrid-checkbox{
- margin-top:8px;
- }
- .jqx-grid-cell-center-align{
- text-align: center;
- }
- .textbox .select2-container{
- width:100%!important;
- padding:0;
- }
- .textbox .select2-container .select2-choice{
- height:100%;
- line-height: 30px;
- border:0;
- border-radius: 0;
- background:#fff;
- }
- .textbox .select2-container .select2-choice .select2-arrow{
- border-radius: 0;
- }
- .select2-drop-active{
- border:1px solid #aaa;
- }
- .select2-search input{
- margin-top:4px;
- }
- .select2-choices{
- border: none!important;
- display: flex;
- overflow-x: auto!important;
- white-space: nowrap;
- }
|