123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626 |
- /*!
- * jqGrid 4.15.5-pre - free jqGrid: https://github.com/free-jqgrid/jqGrid
- * Date: 2018-08-12
- */
- /* Grid */
- .ui-jqgrid {
- position: relative;
- -moz-box-sizing: content-box;
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
- -ms-touch-action: none;
- touch-action: manipulation;
- }
- .ui-jqgrid div {
- line-height: normal;
- }
- .ui-jqgrid table {
- border-collapse: separate;
- border-spacing: 0;
- border-width: 0;
- border-style: none;
- }
- .ui-jqgrid table td {
- padding: 0;
- }
- .ui-jqgrid > .ui-jqgrid-view {
- position: relative;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- left: 0;
- top: 0;
- padding: 0;
- font-size: 11px;
- }
- .ui-jqgrid > .ui-jqgrid-view *,
- .ui-jqgrid > .ui-jqgrid-view *:before,
- .ui-jqgrid > .ui-jqgrid-view *:after {
- -webkit-box-sizing: inherit;
- -moz-box-sizing: inherit;
- box-sizing: inherit;
- }
- /* Caption of grid and title of ui-jqdialog */
- .ui-jqgrid .ui-jqgrid-titlebar,
- .ui-jqgrid .ui-jqgrid-errorbar,
- .ui-jqdialog .ui-jqdialog-titlebar {
- padding: .3em .3em .3em .3em;
- position: relative;
- font-size: 12px;
- border-left: 0 none;
- border-right: 0 none;
- border-top: 0 none;
- }
- .ui-jqgrid-errorbar {
- max-height: 100px;
- margin-bottom: 0;
- overflow: auto;
- }
- .ui-jqgrid .ui-jqgrid-caption,
- .ui-jqgrid .ui-jqgrid-errorbar-ltr {
- text-align: left;
- }
- .ui-jqgrid .ui-jqgrid-caption-rtl,
- .ui-jqgrid .ui-jqgrid-errorbar-rtl {
- text-align: right;
- }
- /* Close/Hide button */
- .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close,
- .ui-jqdialog-titlebar > .ui-jqdialog-titlebar-close {
- vertical-align: middle;
- text-align: center;
- text-decoration: none;
- position: absolute;
- top: 50%;
- width: 1.4em;
- line-height: 1.5em;
- font-size: 12px;
- margin: -0.7em 0 0 0;
- padding: .2em;
- border: 1px solid transparent;
- height: 1.4em;
- cursor: pointer;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .ui-jqgrid-jquery-ui .ui-jqdialog-titlebar > .ui-jqdialog-titlebar-close {
- margin: -8px 0 0 0;
- }
- .ui-jqgrid .ui-jqgrid-caption .ui-jqgrid-titlebar-close {
- right: .1em;
- }
- .ui-jqgrid .ui-jqgrid-caption-rtl .ui-jqgrid-titlebar-close {
- left: .1em;
- }
- .ui-jqdialog .ui-jqdialog-titlebar-ltr .ui-jqdialog-titlebar-close {
- right: .3em;
- }
- .ui-jqdialog .ui-jqdialog-titlebar-rtl .ui-jqdialog-titlebar-close {
- left: .3em;
- }
- .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close,
- .ui-jqdialog-titlebar > .ui-jqdialog-titlebar-close {
- -ms-border-radius: .5em;
- border-radius: .5em;
- }
- .ui-jqgrid .ui-jqgrid-caption .ui-jqgrid-title,
- .ui-jqgrid .ui-jqgrid-errorbar-ltr .ui-jqgrid-error,
- .ui-jqdialog .ui-jqdialog-titlebar-ltr .ui-jqdialog-title {
- position: relative;
- left: .1em;
- }
- .ui-jqgrid .ui-jqgrid-caption-rtl .ui-jqgrid-title,
- .ui-jqgrid .ui-jqgrid-errorbar-rtl .ui-jqgrid-error,
- .ui-jqdialog .ui-jqdialog-titlebar-rtl .ui-jqdialog-title {
- position: relative;
- right: .1em;
- }
- .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close span {
- margin-top: 0;
- margin-left: 0;
- }
- .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close span,
- .ui-jqdialog-titlebar > .ui-jqdialog-titlebar-close span {
- display: block;
- }
- .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close span.ui-icon,
- .ui-jqdialog-titlebar > .ui-jqdialog-titlebar-close span.ui-icon {
- position: relative;
- top: -2px;
- }
- .ui-jqgrid .ui-jqgrid-caption .ui-jqgrid-titlebar-close span.ui-icon,
- .ui-jqdialog-titlebar-ltr .ui-jqdialog-titlebar-close span.ui-icon {
- right: 3.5px;
- }
- .ui-jqgrid .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close > span.ui-icon {
- margin-top: -1px;
- }
- .ui-jqgrid .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close > span.fa,
- .ui-jqgrid .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close > span.fa,
- .ui-jqgrid .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close > span.glyphicon {
- /* the values below are based on the difference between the
- font-size of fa-icon and the font size of the parent element */
- font-size: 14px;
- margin-top: -2px;
- }
- .ui-jqgrid .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close > .svg-inline--fa {
- font-size: 14px;
- display: block;
- margin-top: -.125em;
- margin-left: -.125em;
- }
- .ui-jqgrid .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close > span.fa {
- margin-left: -1px;
- }
- .ui-jqdialog-titlebar-close > .svg-inline--fa {
- display: block;
- margin-left: .0625em;
- margin-top: -.0625em;
- }
- .ui-jqgrid .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close > span.glyphicon {
- margin-left: -2px;
- }
- .ui-jqdialog-titlebar .ui-jqdialog-titlebar-close > span {
- margin-top: -1px;
- }
- .ui-jqdialog-titlebar .ui-jqdialog-titlebar-close > span.glyphicon {
- margin-top: -.05em;
- margin-left: -.05em;
- }
- /* Resizer */
- /*.ui-jqdialog .ui-resizable-handle {
- right: -3px;
- bottom: -3px;
- }*/
- .ui-jqdialog .ui-resizable-handle > .ui-icon {
- right: -1px;
- bottom: -1px;
- }
- .ui-jqdialog .ui-resizable-handle > .fa {
- font-size: 12px;
- right: -2px;
- position: relative;
- }
- .ui-jqdialog .ui-resizable-handle > .svg-inline--fa {
- font-size: 12px;
- right: -1px;
- /*right: -2px;
- bottom: -1px;*/
- position: relative;
- }
- .ui-jqdialog .ui-resizable-handle > .glyphicon {
- font-size: 12px;
- right: -1px;
- bottom: -2.8px;
- }
- /* Header */
- .ui-jqgrid > .ui-jqgrid-view > .ui-jqgrid-hdiv {
- position: relative;
- margin: 0;
- padding: 0;
- overflow: hidden;
- border-left: 0 none;
- border-top: 0 none;
- border-right: 0 none;
- height: auto;
- }
- .ui-jqgrid .ui-jqgrid-hbox {
- float: left;
- padding-right: 20px;
- }
- .ui-jqgrid .ui-jqgrid-htable {
- table-layout: fixed;
- margin: 0;
- }
- .ui-jqgrid .ui-jqgrid-htable th {
- height: auto;
- padding: 0 2px 0 2px;
- }
- .ui-jqgrid-htable > thead > .jqg-first-row-header > th {
- padding-top: 0;
- padding-bottom: 0;
- border-bottom: 0 none;
- border-top: 0 none;
- }
- .ui-jqgrid .ui-jqgrid-htable th.jqgh_cbox {
- padding: 0;
- }
- .ui-jqgrid .ui-jqgrid-htable .ui-jqgrid-labels th div {
- overflow: hidden;
- position: relative;
- height: auto;
- margin: 2px 2px;
- }
- .ui-jqgrid .ui-jqgrid-htable .ui-jqgrid-labels > th.jqgh_cbox {
- vertical-align: middle;
- }
- .ui-jqgrid .ui-jqgrid-htable .ui-jqgrid-labels .jqgh_cbox > div {
- text-align: center;
- vertical-align: baseline;
- margin: 0;
- }
- .ui-jqgrid-labels .ui-th-column-header,
- .ui-jqgrid .ui-jqgrid-labels th.ui-th-column,
- .ui-jqgrid .ui-jqgrid-legacy-subgrid .ui-th-subgrid {
- overflow: hidden;
- white-space: nowrap;
- text-align: center;
- }
- .ui-jqgrid-labels .ui-th-column-header {
- vertical-align: middle;
- height: auto;
- vertical-align: middle;
- border-top: 0 none;
- }
- .ui-jqgrid .ui-jqgrid-labels th.ui-th-column {
- position: relative;
- vertical-align: middle;
- border-top: 0 none;
- border-bottom: 0 none;
- }
- .ui-th-ltr,
- .ui-jqgrid .ui-jqgrid-htable th.ui-th-ltr {
- border-left: 0 none;
- }
- .ui-th-rtl,
- .ui-jqgrid .ui-jqgrid-htable th.ui-th-rtl {
- border-right: 0 none;
- }
- .ui-first-th-ltr {
- border-right: 1px solid;
- }
- .ui-first-th-rtl {
- border-left: 1px solid;
- }
- .ui-jqgrid .ui-th-div-ie {
- white-space: nowrap;
- zoom: 1;
- height: 17px;
- }
- .ui-jqgrid .ui-th-column > .jqgh_cbox {
- margin: 3px 0;
- }
- .ui-jqgrid .ui-th-column .cbox {
- margin: .1em;
- cursor: pointer;
- text-align: center;
- vertical-align: middle;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-th-column .cbox {
- height: 18px;
- width: 18px;
- }
- .ui-jqgrid .ui-th-column .ui-th-div-ie > .cbox {
- margin-left: -1px;
- margin-right: -1px;
- }
- .ui-jqgrid .ui-jqgrid-labels > .ui-th-column > .ui-jqgrid-resize {
- top: 0;
- height: 100%;
- width: .3em;
- position: absolute;
- cursor: col-resize;
- -webkit-touch-callout: none;
- -ms-user-select: none;
- -moz-user-select: -moz-none;
- -webkit-user-select: none;
- user-select: none;
- display: inline;
- overflow: hidden;
- }
- .ui-jqgrid .ui-jqgrid-htable .ui-jqgrid-labels th div.ui-jqgrid-rotate {
- -webkit-transform: translateX(-50%) translateY(0) rotate(-90deg);
- -moz-transform: translateX(-50%) translateY(0) (-90deg);
- -o-transform: translateX(-50%) translateY(0) rotate(-90deg);
- -ms-transform: translateX(-50%) translateY(0) rotate(-90deg);
- transform: translateX(-50%) translateY(0) rotate(-90deg);
- transform-origin: center center;
- margin: 0;
- left: 50%;
- }
- .ui-jqgrid .ui-grid-ico-sort {
- overflow: hidden;
- position: absolute;
- display: inline;
- }
- .ui-grid-ico-sort {
- /* use pointer cursor over all visible icons. It can be important if
- viewsortcols: [true, "vertical", false] or viewsortcols: [true, "horizontal", false]
- mode are used. The viewsortcols[2] element means that sorting are made only on clicking
- on the sorting icon. So the class ui-jqgrid-sortable will be not added to the div of
- the column header. It informs the user that clicking on the text of the column header
- will do nothing. One still need to have the cursor over the icon which inform about sorting.
- */
- cursor: pointer;
- }
- .ui-state-disabled.ui-grid-ico-sort {
- cursor: pointer !important; /* to overwrite .ui-state-disabled { cursor: default !important; } from jQuery UI */
- }
- .ui-jqgrid .s-ico {
- position: relative;
- width: .87em;
- height: 1.125em;
- display: inline-block;
- vertical-align: middle;
- margin: 0 .1em
- }
- .ui-jqgrid .s-ico > .ui-grid-ico-sort {
- display: block;
- position: relative;
- }
- .ui-jqgrid .s-ico > .ui-grid-ico-sort.ui-icon {
- width: 12px;
- margin-top: 0px;
- }
- .ui-jqgrid .s-ico > .ui-icon-asc.ui-icon {
- top: -6px;
- }
- .ui-jqgrid .s-ico > .ui-icon-desc.ui-icon {
- top: -16px;
- }
- .ui-jqgrid .s-ico > .ui-icon-triangle-1-s {
- background-position: -65px -16px;
- }
- .ui-jqgrid .s-ico > .ui-icon.ui-sort-ltr {
- margin-left: -3px;
- }
- .ui-jqgrid .s-ico > .ui-icon.ui-sort-rtl {
- margin-right: 0;
- }
- .ui-jqgrid-sortable > .ui-jqgrid-sort-order {
- position: relative;
- left: -.1em;
- top: 0;
- font-size: 75%;
- vertical-align: super;
- }
- .ui-jqgrid .ui-th-column > div {
- cursor: default;
- }
- .ui-jqgrid .ui-th-column > div.ui-jqgrid-sortable {
- cursor: pointer;
- }
- .ui-jqgrid .ui-jqgrid-hdiv .ui-search-toolbar {
- border-top-width: 1px;
- border-top-style: solid;
- }
- .ui-jqgrid .ui-jqgrid-hdiv .ui-search-toolbar .ui-th-column {
- border-top-width: 1px;
- border-top-style: solid;
- }
- .ui-jqgrid .ui-jqgrid-hdiv .ui-search-toolbar input {
- margin: 1px 0 0 0;
- }
- .ui-jqgrid .ui-jqgrid-hdiv .ui-search-toolbar select {
- margin: 1px 0 0 0;
- }
- /* Grig body */
- .ui-jqgrid .ui-jqgrid-bdiv {
- min-height: 1px;
- position: relative;
- margin: 0;
- padding: 0;
- overflow: auto;
- text-align: left;
- }
- .ui-jqgrid .ui-jqgrid-btable {
- table-layout: fixed;
- margin: 0;
- outline-style: none;
- height: 1px;
- }
- .ui-jqgrid tr.jqgrow,
- .ui-jqgrid tr.jqgroup {
- outline-style: none;
- }
- .ui-jqgrid tr.jqgrow > td,
- .ui-jqgrid tr.jqgroup > td,
- .ui-jqgrid tr.jqfoot > td,
- .ui-jqgrid tr.ui-subgrid > td,
- .ui-jqgrid tr.ui-subtblcell > td {
- overflow: hidden;
- white-space: pre;
- vertical-align: middle;
- text-align: center;
- height: 22px;
- border-top: 0 none;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid tr.jqgrow > td,
- .ui-jqgrid-jquery-ui.ui-jqgrid tr.jqgroup > td,
- .ui-jqgrid-jquery-ui.ui-jqgrid tr.jqfoot > td,
- .ui-jqgrid-jquery-ui.ui-jqgrid tr.ui-subgrid > td {
- border-bottom-color: inherit;
- }
- .ui-jqgrid tr.jqgrow > td,
- .ui-jqgrid tr.jqgroup > td,
- .ui-jqgrid tr.jqfoot > td {
- padding: 0 2px 0 2px;
- }
- .ui-jqgrid tr.ui-subgrid > td {
- padding: 0;
- }
- .ui-jqgrid tr.jqgfirstrow > td {
- padding: 0 2px 0 2px;
- border-top: 0 none;
- border-left: 0 none;
- height: 0;
- border-right-width: 1px;
- border-right-style: solid;
- border-bottom: 0 none;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid tr.jqgfirstrow > td {
- border-right-color: inherit;
- }
- .ui-jqgrid tr.jqgfirstrow > td.td_cbox {
- padding: 0;
- }
- .ui-jqgrid tr.jqgrow > td,
- .ui-jqgrid tr.jqgroup > td,
- .ui-jqgrid tr.jqfoot > td {
- font-weight: normal;
- }
- .ui-jqgrid tr.jqfoot > td {
- font-weight: bold;
- }
- .ui-jqgrid .ui-jqgrid-bdiv tr.ui-row-ltr > td {
- text-align: left;
- border-left-width: 0;
- border-left-style: none;
- border-right-width: 1px;
- border-right-style: solid;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid .ui-jqgrid-bdiv tr.ui-row-ltr > td {
- border-color: #ccc;
- }
- .ui-jqgrid .ui-jqgrid-bdiv tr.ui-row-rtl > td {
- text-align: right;
- border-right-width: 0;
- border-right-style: none;
- border-left-width: 1px;
- border-left-style: solid;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid .ui-jqgrid-bdiv tr.ui-row-rtl > td {
- border-color: inherit;
- }
- .ui-jqgrid .ui-jqgrid-btable td.jqgrid-rownum {
- padding: 0 2px 0 2px;
- margin: 0;
- border-width: 0;
- border-style: none;
- }
- .ui-jqgrid .ui-jqgrid-btable td.jqgrid-rownum {
- border-bottom-width: 1px;
- border-bottom-style: solid;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid .ui-jqgrid-btable td.jqgrid-rownum {
- border-bottom-color: inherit;
- }
- .ui-jqgrid .jqgrow > td.td_cbox {
- padding: 0;
- text-align: center;
- vertical-align: middle;
- }
- .ui-jqgrid .jqgrow > td.ui-sgcollapsed {
- text-align: center;
- vertical-align: middle;
- }
- .ui-jqgrid tr.jqgrow > td.td_cbox {
- padding: 0;
- }
- .ui-jqgrid .jqgrow > td > .cbox {
- height: 14px;
- width: 14px;
- cursor: pointer;
- text-align: center;
- vertical-align: middle;
- }
- .ui-jqgrid > .ui-jqgrid-resize-mark,
- body > .ui-jqgrid-resize-mark {
- width: 0;
- left: 0;
- cursor: col-resize;
- -webkit-touch-callout: none;
- -ms-user-select: none;
- -moz-user-select: -moz-none;
- -webkit-user-select: none;
- user-select: none;
- position: absolute;
- top: 0;
- overflow: hidden;
- display: none;
- border-left-width: 1px;
- border-right-width: 1px;
- z-index: 99999;
- }
- span.ui-jqgrid-cell-wrapper {
- margin: 0 !important;
- padding: 0 !important;
- }
- /* Footer */
- .ui-jqgrid > .ui-jqgrid-view > .ui-jqgrid-sdiv {
- position: relative;
- margin: 0;
- padding: 0;
- overflow: hidden;
- border-left: 0 none;
- border-top: 0 none;
- border-right: 0 none;
- }
- .ui-jqgrid .ui-jqgrid-ftable {
- table-layout: fixed;
- margin-bottom: 0;
- }
- .ui-jqgrid tr.footrow td {
- font-weight: bold;
- overflow: hidden;
- white-space: nowrap;
- height: 21px;
- padding: 0 2px 0 2px;
- border-top-width: 1px;
- border-top-style: solid;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid tr.footrow td {
- border-top-color: inherit;
- border-bottom-color: inherit;
- }
- .ui-jqgrid tr.footrow-ltr td {
- text-align: left;
- border-left-width: 0;
- border-left-style: none;
- border-right-width: 1px;
- border-right-style: solid;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid tr.footrow-ltr td {
- border-color: inherit;
- }
- .ui-jqgrid tr.footrow-rtl td {
- text-align: right;
- border-left-width: 1px;
- border-left-style: solid;
- border-right-width: 0;
- border-right-style: none;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid tr.footrow-rtl td {
- border-color: inherit;
- }
- /* Pager */
- .ui-jqgrid > .ui-jqgrid-pager {
- border: 0 none;
- margin: 0;
- padding: 0;
- position: relative;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- height: auto;
- min-height: 22px;
- overflow: hidden;
- font-size: 11px;
- }
- .ui-jqgrid > .ui-jqgrid-pager *,
- .ui-jqgrid > .ui-jqgrid-pager *:before,
- .ui-jqgrid > .ui-jqgrid-pager *:after {
- -webkit-box-sizing: inherit;
- -moz-box-sizing: inherit;
- box-sizing: inherit;
- }
- .ui-jqgrid .ui-jqgrid-toppager .ui-pager-control,
- .ui-jqgrid .ui-jqgrid-pager .ui-pager-control {
- position: relative;
- border-left: 0;
- border-bottom: 0;
- border-top: 0;
- }
- .ui-pager-control .ui-jqgrid-pg-left {
- text-align: left;
- }
- .ui-pager-control .ui-jqgrid-pg-center {
- text-align: center;
- white-space: pre;
- }
- .ui-pager-control .ui-jqgrid-pg-right {
- text-align: right;
- }
- .ui-jqgrid .ui-pg-table {
- position: relative;
- padding: 0;
- width: auto;
- margin: 0;
- }
- .jqgrow .ui-jqgrid-actions {
- background: inherit;
- border-style: none;
- }
- .ui-jqgrid .ui-pg-button:not(.ui-state-hover),
- .ui-jqgrid-jquery-ui .jqgrow .ui-jqgrid-actions .ui-pg-div:not(.ui-state-hover) {
- border: 1px solid transparent;
- }
- .ui-pager-control .ui-pg-table {
- border-color: inherit;
- }
- .ui-jqgrid .ui-pg-button:hover,
- .ui-jqgrid .ui-pg-button.ui-state-hover,
- .ui-jqgrid .ui-pg-button:focus,
- .jqgrow .ui-jqgrid-actions .ui-pg-div:hover,
- .jqgrow .ui-jqgrid-actions .ui-pg-div.ui-state-hover,
- .jqgrow .ui-jqgrid-actions .ui-pg-div:focus {
- border-style: solid;
- border-color: inherit;
- }
- .ui-jqgrid .ui-pg-table td {
- font-weight: normal;
- vertical-align: middle;
- padding: 1px;
- }
- .ui-jqgrid .ui-pager-control .ui-pg-button {
- display: inline-block;
- height: auto;
- }
- .ui-jqgrid .ui-pg-button span {
- display: block;
- margin: 1px;
- float: left;
- }
- .ui-jqgrid .ui-pg-table .ui-pg-input,
- .ui-jqgrid .ui-pg-table .ui-pg-selbox {
- height: auto;
- width: auto;
- margin: 0;
- line-height: inherit;
- }
- select.form-control.ui-pg-selbox:not([size]):not([multiple]) {
- height: auto;
- }
- .ui-jqgrid .ui-pg-table .ui-pg-selbox {
- display: block;
- padding: 1px;
- }
- .ui-jqgrid .ui-separator {
- height: 12px;
- border-left: 1px solid #ccc;
- border-right: 1px solid #ccc;
- margin: -1px;
- float: right;
- }
- .ui-jqgrid .ui-paging-info {
- font-weight: normal;
- height: auto;
- margin: 0 .2em 0 .2em;
- display: inline;
- }
- .ui-jqgrid .ui-jqgrid-pager .ui-pg-div {
- padding: 1px 0;
- float: left;
- position: relative;
- }
- .ui-jqgrid .ui-jqgrid-pager .ui-pg-button {
- cursor: pointer;
- }
- .ui-jqgrid .ui-jqgrid-pager .ui-pg-div span.ui-icon {
- float: left;
- margin: 0 2px;
- }
- .ui-jqgrid td input,
- .ui-jqgrid td select,
- .ui-jqgrid td textarea {
- margin: 0;
- }
- .ui-jqgrid td textarea {
- width: auto;
- height: auto;
- }
- .ui-jqgrid > .ui-jqgrid-view > .ui-jqgrid-toppager {
- border-left: 0 none;
- border-right: 0 none;
- border-top: 0 none;
- margin: 0;
- padding: 0;
- position: relative;
- height: auto;
- min-height: 22px;
- overflow: hidden;
- }
- .ui-jqgrid .ui-jqgrid-toppager .ui-pg-div {
- padding: 1px 0;
- float: left;
- position: relative;
- }
- .ui-jqgrid .ui-jqgrid-toppager .ui-pg-button {
- cursor: pointer;
- }
- .ui-jqgrid .ui-jqgrid-toppager .ui-pg-div span.ui-icon {
- float: left;
- margin: 0 2px;
- }
- /* Navigator buttons */
- .ui-jqgrid .ui-pg-table .ui-pg-button {
- margin: 2px;
- vertical-align: middle;
- }
- .ui-jqgrid .navtable .ui-pg-div span.ui-pg-button-text {
- padding-left: 0.2em;
- padding-right: 0.2em;
- }
- .ui-pg-button:hover > .ui-pg-div > .ui-pg-button-text,
- .ui-pg-button.ui-state-hover > .ui-pg-div > .ui-pg-button-text {
- font-weight: normal;
- }
- .ui-jqgrid .ui-pg-div {
- text-align: center;
- vertical-align: middle;
- display: inline-block;
- }
- .ui-jqgrid .navtable .ui-pg-div > span.ui-pg-button-icon-over-text {
- margin-left: auto;
- margin-right: auto;
- float: none;
- }
- /* Subgrid */
- .subgrid-data > .tablediv > .ui-jqgrid {
- -moz-box-sizing: content-box;
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
- }
- .subgrid-data > .tablediv > .ui-jqgrid > .ui-jqgrid-view {
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- .ui-jqgrid .ui-jqgrid-btable .jqgrow > .ui-sgcollapsed {
- text-align: center;
- vertical-align: middle;
- }
- .ui-jqgrid .ui-jqgrid-btable .ui-sgcollapsed span {
- display: inline-block;
- }
- .ui-jqgrid .ui-subgrid {
- margin: 0;
- padding: 0;
- width: 100%;
- }
- .sgbutton {
- cursor: pointer;
- }
- .ui-jqgrid .ui-subgrid table {
- table-layout: fixed;
- }
- .ui-jqgrid .ui-subgrid tr.ui-subtblcell td {
- height: 18px;
- border-top: 0 none;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- }
- .ui-jqgrid-jquery-ui.ui-jqgrid .ui-subgrid tr.ui-subtblcell td {
- border-bottom-color: inherit;
- }
- .ui-jqgrid .ui-th-subgrid {
- height: 20px;
- }
- .ui-jqgrid .ui-row-ltr.ui-subgrid > .subgrid-cell > span {
- float: right;
- }
- .ui-jqgrid .ui-row-rtl.ui-subgrid > .subgrid-cell > span {
- float: left;
- }
- /* Loading */
- .ui-jqgrid > .loading {
- position: absolute;
- top: 45%;
- left: 45%;
- width: auto;
- z-index: 101;
- padding: 6px;
- margin: 5px;
- text-align: center;
- font-weight: bold;
- display: none;
- border-width: 2px;
- font-size: 11px;
- }
- .ui-jqgrid .jqgrid-overlay {
- display: none;
- z-index: 100;
- }
- * .jqgrid-overlay iframe {
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- }
- /* Toolbar */
- .ui-jqgrid > .ui-jqgrid-view > .ui-userdata {
- border-left: 0 none;
- border-right: 0 none;
- height: 21px;
- overflow: hidden;
- }
- /* Modal Window */
- .ui-jqgrid .ui-jqdialog {
- font-size: 11px;
- }
- .ui-jqdialog {
- display: none;
- width: 300px;
- position: absolute;
- font-size: 11px;
- overflow: visible;
- }
- .ui-jqdialog.ui-jqgrid-jquery-ui {
- padding: .2em;
- }
- .ui-jqgrid-bootstrap.modal {
- right: auto;
- left: auto;
- }
- .ui-jqgrid-bootstrap.modal > .modal-dialog {
- max-width: none;
- }
- .ui-jqdialog-content,
- .ui-jqdialog .ui-jqdialog-content {
- border: 0;
- padding: .3em .2em;
- background: none;
- height: auto;
- }
- .ui-jqdialog .ui-jqconfirm {
- padding: .4em 1em;
- border-width: 3px;
- position: absolute;
- bottom: 10px;
- right: 10px;
- overflow: visible;
- display: none;
- height: 80px;
- width: 220px;
- text-align: center;
- }
- .ui-jqgrid > .ui-resizable-se,
- .ui-jqdialog > .ui-resizable-se {
- bottom: -3px;
- right: -3px;
- }
- /* Form edit */
- .ui-jqdialog-content .FormGrid {
- margin: 0;
- }
- .ui-jqdialog-content .EditTable {
- width: 100%;
- margin-bottom: 0;
- }
- .ui-jqdialog-content .DelTable {
- width: 100%;
- margin-bottom: 0;
- }
- .EditTable td input,
- .EditTable td select,
- .EditTable td textarea {
- margin: 0;
- }
- .EditTable td textarea {
- width: auto;
- height: auto;
- }
- .ui-jqdialog-content td.EditButton {
- border-top: 0 none;
- border-left: 0 none;
- border-right: 0 none;
- padding: 5px 0;
- }
- .ui-jqdialog-content td.EditButton-ltr {
- text-align: right;
- }
- .ui-jqdialog-content td.EditButton-rtl {
- text-align: left;
- }
- .ui-jqdialog-content td.navButton {
- text-align: left;
- border-left: 0 none;
- border-top: 0 none;
- border-right: 0 none;
- padding: 5px 0;
- }
- .ui-jqdialog-content td.navButton-ltr {
- text-align: left;
- }
- .ui-jqdialog-content td.navButton-ltr > .fm-button {
- float: left;
- }
- .ui-jqdialog-content td.navButton-rtl {
- text-align: right;
- }
- .ui-jqdialog-content td.navButton-rtl > .fm-button {
- float: right;
- }
- .ui-jqdialog-content .FormElement {
- width: 100%;
- box-sizing: border-box;
- }
- .ui-jqdialog-content input.FormElement,
- .ui-jqdialog-content select.FormElement {
- padding: .3em;
- }
- .ui-jqdialog-content .data-line {
- padding-top: .1em;
- border: 0 none;
- }
- .ui-jqdialog-content .CaptionTD {
- vertical-align: middle;
- border: 0 none;
- padding: 2px;
- white-space: nowrap;
- }
- .ui-jqdialog-content .DataTD {
- padding: 2px;
- border-width: 0;
- border-style: none;
- vertical-align: top;
- }
- /*.ui-jqdialog-content .form-view-data {
- white-space: pre;
- }*/
- .ui-jqgrid-jquery-ui.ui-jqdialog .form-view-data > span {
- border-width: 1px;
- border-style: solid;
- border-color: inherit;
- border-radius: 3px;
- display: block;
- padding: .2em;
- }
- .ui-jqgrid-jquery-ui.ui-jqdialog .form-view-label > label {
- font-weight: bold;
- }
- .ui-jqgrid-bootstrap.ui-jqdialog .ui-jqdialog-content .form-view-data > span {
- height: 100%;
- width: auto;
- }
- .ui-jqdialog .fm-button {
- display: inline-block;
- padding: .4em .5em;
- text-decoration: none;
- cursor: pointer;
- position: relative;
- text-align: center;
- zoom: 1;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .navButton .fm-button {
- padding: .375em .75em;
- margin-left: .125em;
- }
- .ui-jqdialog .fm-button > span {
- display: inline-block;
- vertical-align: middle;
- }
- .ui-jqdialog .fm-button .fm-button-text {
- padding: 0 .2em;
- }
- .ui-jqdialog .EditButton-ltr .fm-button-icon-left .fm-button-icon {
- margin-right: .2em;
- }
- .ui-jqdialog .EditButton-ltr .fm-button-icon-right .fm-button-icon {
- margin-left: .2em;
- }
- .ui-jqdialog .EditButton-rtl .fm-button-icon-right .fm-button-icon {
- margin-right: .2em;
- }
- .ui-jqdialog .EditButton-rtl .fm-button-icon-left .fm-button-icon {
- margin-left: .2em;
- }
- .delmsg {
- padding: .5em;
- }
- .ui-jqgrid .selected-row,
- .ui-jqgrid .selected-row td {
- font-style: normal;
- border-left: 0 none;
- }
- /* Inline edit actions button */
- .ui-jqgrid .jqgrow .ui-jqgrid-actions {
- display: inline-block;
- vertical-align: middle;
- margin: 0;
- }
- .jqgrow .ui-jqgrid-actions .ui-pg-div {
- cursor: pointer;
- float: left;
- margin: 0 1px;
- }
- /* Tree Grid */
- .ui-jqgrid .tree-wrap {
- display: inline-block;
- vertical-align: middle;
- white-space: nowrap;
- overflow: hidden;
- }
- .ui-jqgrid .treeclick {
- cursor: pointer;
- display: inline-block;
- vertical-align: middle;
- width: 18px;
- overflow: hidden;
- }
- .ui-jqgrid .ui-jqgrid-bdiv .jqgroup .tree-wrap {
- text-align: center;
- padding-left: .1em;
- }
- .ui-jqgrid .ui-jqgrid-bdiv .jqgroup .tree-wrap.glyphicon {
- margin-top: -.18em;
- }
- /* Modal dialog */
- * iframe.jqm {
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- }
- .ui-jqgrid-dnd tr td {
- border-right-width: 1px;
- border-right-color: inherit;
- border-right-style: solid;
- height: 20px;
- }
- /* RTL Support */
- .ui-jqgrid .ui-jqgrid-caption-rtl {
- text-align: right;
- }
- .ui-jqgrid .ui-jqgrid-hbox-rtl {
- float: right;
- padding-left: 20px;
- }
- .ui-jqgrid .ui-jqgrid-resize-ltr {
- right: 0;
- margin: 0;
- }
- .ui-jqgrid .ui-jqgrid-resize-rtl {
- left: 0;
- margin: 0;
- }
- .ui-jqgrid .ui-sort-rtl {
- left: 0;
- }
- .ui-jqgrid .cell-wrapperleaf,
- .ui-jqgrid .cell-wrapper {
- display: inline-block;
- vertical-align: middle;
- }
- .ui-jqgrid .ui-ellipsis {
- -moz-text-overflow: ellipsis;
- text-overflow: ellipsis;
- }
- /* Toolbar Search Menu */
- .ui-search-menu {
- position: absolute;
- padding: .2em;
- }
- .ui-search-menu.ui-menu .ui-jqgrid-menu-item {
- list-style-image: none;
- padding-right: 0;
- padding-left: 0;
- }
- .ui-search-menu.ui-menu .ui-jqgrid-menu-item a {
- text-decoration: none;
- display: block;
- }
- .ui-search-toolbar > .ui-th-column > div {
- position: relative;
- height: auto;
- overflow: hidden;
- }
- .ui-search-toolbar .ui-search-table {
- padding: 0;
- border: 0 none;
- height: 20px;
- width: 100%;
- }
- .table-hover .ui-search-table tbody tr:hover {
- background-color: inherit;
- }
- .ui-jqgrid .ui-jqgrid-htable .ui-search-toolbar th {
- padding: 0 .1em;
- }
- .ui-search-toolbar .ui-search-table .ui-search-oper {
- width: 20px;
- text-align: center;
- }
- .ui-search-toolbar .ui-th-column .ui-search-table .ui-search-input {
- padding: 0 .1em;
- }
- .ui-search-input input[type=text] {
- width: 100%;
- }
- a.g-menu-item,
- a.soptclass,
- a.clearsearchclass {
- text-decoration: none;
- cursor: pointer;
- }
- .ui-search-menu .ui-jqgrid-menu-item .g-menu-item {
- padding: .2em;
- }
- .ui-menu-jqueryui .ui-jqgrid-menu-item .g-menu-item:not(.ui-state-hover) {
- border: 1px solid transparent;
- }
- .ui-menu-jqueryui .ui-jqgrid-menu-item .g-menu-item:hover {
- font-weight: normal;
- }
- .ui-search-oper {
- padding: 0;
- }
- .ui-search-clear {
- text-align: center;
- padding: 0;
- }
- .ui-search-oper .soptclass,
- .ui-search-clear .clearsearchclass {
- padding: .1em;
- line-height: 1em;
- }
- .ui-jqgrid-jquery-ui .ui-search-oper .soptclass:not(.ui-state-hover),
- .ui-jqgrid-jquery-ui .ui-search-clear .clearsearchclass:not(.ui-state-hover) {
- border: 1px solid transparent;
- }
- .ui-search-clear .clearsearchclass span {
- position: relative;
- }
- .ui-search-input { text-align: center; }
- .ui-jqgrid .ui-search-table .ui-search-input > input[type=text],
- .ui-jqgrid .ui-search-table .ui-search-input > select {
- display: block;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- .ui-jqgrid > .ui-jqgrid-view input,
- .ui-jqgrid > .ui-jqgrid-view select,
- .ui-jqgrid > .ui-jqgrid-view textarea,
- .ui-jqgrid > .ui-jqgrid-view button {
- font-size: inherit;
- text-align: inherit;
- }
- .ui-jqgrid .s-ico > .ui-grid-ico-sort.glyphicon {
- font-size: 10px;
- }
- .ui-jqgrid .s-ico > .ui-icon-asc.glyphicon {
- margin-top: -.23em;
- }
- .ui-jqgrid .s-ico > .ui-icon-desc.glyphicon {
- margin-top: -.34em;
- }
- /* Support of Font Awesome */
- .ui-jqgrid .s-ico > .ui-grid-ico-sort.fa {
- width: .63em;
- }
- .ui-jqgrid .s-ico > .ui-icon-asc.fa {
- line-height: .81em;
- top: 0.07em;
- }
- .ui-jqgrid .s-ico > .ui-icon-desc.fa {
- line-height: .81em;
- top: -.81em;
- }
- .ui-jqgrid .s-ico > .ui-icon-asc.fa.ui-sort-ltr,
- .ui-jqgrid .s-ico > .ui-icon-desc.fa.ui-sort-ltr {
- left: 0;
- }
- .ui-jqgrid .s-ico > .ui-icon-asc.fa.ui-sort-rtl,
- .ui-jqgrid .s-ico > .ui-icon-desc.fa.ui-sort-rtl {
- right: 0;
- }
- .ui-jqgrid .s-ico > .ui-state-disabled.fa {
- padding: 0;
- }
- .ui-jqgrid .s-ico > .svg-inline--fa.fa-sort-down {
- margin-top: -1.05em;
- }
- .jqgrow .ui-pg-div > span.fa {
- font-weight: normal;
- font-size: 12px;
- vertical-align: baseline;
- background: none;
- border: 0 none;
- }
- .ui-subgrid > .subgrid-cell span.fa {
- font-weight: normal;
- font-size: 12px;
- text-indent: 0;
- background: none;
- border: 0 none;
- margin-bottom: 4px;
- }
- .jqgrow > .ui-sgcollapsed span.fa {
- font-weight: normal;
- font-size: 12px;
- text-indent: 0;
- background: none;
- border: 0 none;
- margin: 0;
- }
- .ui-jqgrid .ui-resizable-se.fa {
- -webkit-filter: alpha(opacity=40);
- -moz-filter: alpha(opacity=40);
- -o-filter: alpha(opacity=40);
- filter: alpha(opacity=40);
- -ms-opacity: 0.4;
- opacity: 0.4;
- background: none;
- border-style: none;
- right: -3px;
- font-weight: normal;
- }
- .ui-jqgrid-ltr .ui-resizable-se.fa {
- right: -3px;
- bottom: 0;
- }
- .ui-jqgrid-rtl .ui-resizable-se.fa {
- left: 0;
- bottom: 1px;
- }
- /* Classes for jquery.contextmenu-ui.js plugin we included here */
- .jqContextMenu .ui-menu .ui-jqgrid-menu-item a.ui-state-hover {
- font-weight: normal;
- margin: -1px;
- }
- .jqContextMenu .ui-menu .ui-jqgrid-menu-item.ui-state-hover {
- font-weight: normal;
- margin: -1px;
- }
- .jqContextMenu .ui-menu-icons > .ui-jqgrid-menu-item {
- font-size: 11px;
- }
- /* Classes for jQuery.jqGrid.showHideColumnMenu.js plugin */
- .ui-jqgrid-showHideColumnMenu .ui-jqgrid-menu-item:hover {
- font-weight: normal;
- }
- .ui-jqgrid-disablePointerEvents {
- pointer-events: none;
- }
- /* Bootstrap style support */
- .ui-jqgrid.ui-jqgrid-bootstrap {
- border: 1px solid #ddd;
- -ms-border-radius: 6px;
- border-radius: 6px;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-view > .ui-jqgrid-toppager {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-view > .ui-userdata {
- background-color: #f0f0f0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-hdiv,
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-legacy-subgrid > thead {
- background-color: #e5e5e5;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-view > .ui-jqgrid-sdiv td {
- background-color: #f9f9f9
- }
- .ui-jqdialog.ui-jqgrid-bootstrap > .modal-dialog {
- margin-top: 0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-titlebar .ui-jqgrid-title,
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-errorbar .ui-jqgrid-error,
- .ui-jqdialog.ui-jqgrid-bootstrap .ui-jqdialog-titlebar .ui-jqdialog-title {
- font-size: 16px;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-view {
- font-size: 12px;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-view .btn,
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-pager .btn {
- font-size: 12px;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-view .fa,
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-pager .fa {
- font-size: 14px;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap {
- font-size: 14px;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .ui-jqdialog-content .CaptionTD {
- padding: .5em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .frozen-bdiv.ui-jqgrid-bdiv .ui-jqgrid-btable {
- background-color: white;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap tr.jqgfirstrow > td,
- .ui-jqgrid.ui-jqgrid-bootstrap tr.jqgrow > td,
- .ui-jqgrid.ui-jqgrid-bootstrap tr.jqgroup > td,
- .ui-jqgrid.ui-jqgrid-bootstrap tr.jqfoot > td {
- padding: .2em .3em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap tr.jqgfirstrow > td {
- padding: 0 .3em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap tr.jqgfirstrow > td.td_cbox,
- .ui-jqgrid.ui-jqgrid-bootstrap tr.jqgrow > td.td_cbox {
- padding: 0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .jqgrow > td > .cbox {
- height: 18px;
- width: 18px;
- display: inline-block;
- vertical-align: middle;
- text-align: center;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-btable td.jqgrid-rownum {
- padding: .2em .3em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-caption,
- .ui-jqdialog.ui-jqgrid-bootstrap .ui-jqdialog-titlebar {
- background-color: #cacaca;
- -ms-border-top-left-radius: 6px;
- border-top-left-radius: 6px;
- -ms-border-top-right-radius: 6px;
- border-top-right-radius: 6px;
- }
- .modal-backdrop.jqgrid-overlay {
- -ms-opacity: .35;
- opacity: .35;
- -webkit-filter: Alpha(Opacity=35);
- -moz-filter: Alpha(Opacity=35);
- -o-filter: Alpha(Opacity=35);
- filter: Alpha(Opacity=35);
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .ui-jqdialog-content {
- border: 0;
- padding: .3em .2em;
- background: white;
- height: auto;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .modal-dialog {
- width: auto;
- }
- .ui-jqdialog.ui-widget {
- overflow: hidden;
- }
- .ui-jqdialog .ui-resizable-handle {
- cursor: se-resize;
- position: absolute;
- -ms-touch-action: none;
- touch-action: none;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .modal-content {
- overflow: hidden;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .modal-content > .ui-resizable-handle.fa {
- bottom: 1px;
- right: 1px;
- height: 12px;
- width: 12px;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .modal-content > .ui-resizable-handle.glyphicon {
- right: -.4em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .disabled {
- opacity: .35;
- filter: Alpha(Opacity=35);
- }
- .ui-jqgrid-bootstrap.ui-jqgrid-resize-mark {
- border: 1px solid #aaaaaa;
- background-color: #cccccc;
- color: #222222;
- font-weight: bold;
- }
- .ui-jqgrid .jqgfirstrow {
- border-bottom: 0 none;
- border-top: 0 none;
- height: 0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .jqgfirstrow td {
- border-bottom: 0 none;
- border-top: 0 none;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-pg-table .ui-pg-button.ui-state-disabled:hover {
- margin: 0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .navtable .ui-pg-button.ui-state-disabled:hover {
- margin: 0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-pg-table .ui-pg-button {
- margin: .2em 0;
- padding: .2em 0;
- border-radius: .4em;
- }
- .ui-search-input .form-control:not([size]):not([multiple]) {
- height: auto;
- min-height: 18px;
- }
- .ui-search-input input[type=text] {
- padding: 0;
- }
- .ui-search-input input[type=text].form-control {
- padding: 0 .3em;
- }
- .ui-search-input select.form-control {
- padding: 0;
- }
- .ui-search-input input[type=checkbox].form-control {
- width: auto;
- margin-left: auto;
- margin-right: auto;
- border-radius: 0;
- background: 0 transparent;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-actions .ui-pg-div.btn {
- padding: 0;
- margin: 0;
- box-shadow: none;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-actions .ui-pg-div.btn:not(:first-child) {
- margin-left: .125em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-actions .ui-pg-div.btn.ui-inline-save {
- margin-left: 0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap tr.jqgrow .sgbutton-div .sgbutton.btn {
- padding: 0;
- cursor: pointer;
- border: 1px solid transparent;
- margin: -.3em -.3em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .sgbutton-div .sgbutton.btn:focus,
- .ui-jqgrid.ui-jqgrid-bootstrap .sgbutton-div .sgbutton.btn:hover {
- border: 1px solid #333;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .ui-jqdialog-content {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-pager-control .ui-pg-input {
- display: inline-block;
- font-size: 12px;
- padding: .3em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap > .ui-jqgrid-pager {
- font-size: 12px;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-bootstrap-corner-top {
- border-top-left-radius: 6px;
- border-top-right-radius: 6px;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-bootstrap-corner-bottom {
- border-bottom-left-radius: 6px;
- border-bottom-right-radius: 6px;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-pager-control .ui-pg-selbox {
- font-size: 12px;
- padding: 0;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .FormData .CaptionTD {
- font-size: 14px;
- }
- .FormData .DataTD {
- vertical-align: middle;
- }
- .FormData .DataTD input[type="checkbox"] {
- width: auto;
- vertical-align: middle;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .FormData .DataTD input.form-control[type="checkbox"] {
- width: 2.193em;
- height: 2.193em;
- }
- .DelTable .delmsg {
- padding: .2em;
- }
- .queryresult {
- margin-bottom: .5em;
- padding: .25em;
- }
- .group.modal-content tr td {
- padding: .2em .1em;
- }
- .searchFilter .form-control {
- padding: .1em;
- }
- .searchFilter .form-control:not([size]):not([multiple]) {
- height: 2em;
- }
- .searchFilter .btn {
- margin-left: .125em;
- padding: .2em .375em;
- }
- .ui-jqgrid .searchFilter table.group td {
- padding: 1px;
- }
- .ui-jqgrid .searchFilter table {
- border-spacing: 2px;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .modal-header .close {
- margin-top: -0.7em;
- }
- .ui-jqdialog .glyphicon,
- .ui-jqgrid .glyphicon {
- font-size: 12px;
- top: auto;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .glyphicon,
- .ui-jqgrid.ui-jqgrid-bootstrap .glyphicon {
- font-size: 14px;
- top: auto;
- height: 1em;
- width: 1.28em;
- }
- .ui-jqgrid .ui-pg-button span.glyphicon {
- display: inline-block;
- text-align: center;
- /*margin-left: auto;
- margin-right: auto;
- padding: 0 .1em;*/
- vertical-align: middle;
- }
- .ui-jqgrid-actions .glyphicon {
- padding: .1em;
- }
- .ui-jqgrid.ui-jqgrid-bootstrap .ui-jqgrid-titlebar > .ui-jqgrid-titlebar-close > span.glyphicon {
- margin-top: -.125em;
- margin-left: -.275em;
- }
- .ui-jqdialog.ui-jqgrid-bootstrap .ui-jqdialog-titlebar > .ui-jqdialog-titlebar-close > span.glyphicon {
- margin-top: -.1em;
- margin-left: -.28em;
- }
- .tree-wrap > .treeclick {
- line-height: 1;
- }
- .tree-wrap > .treeclick.glyphicon {
- margin-top: -.2em;
- font-size: 12px;
- }
- .subgrid-data .ui-jqgrid-bootstrap .ui-jqgrid-hdiv .ui-jqgrid-htable,
- .subgrid-data .ui-jqgrid-bootstrap .ui-jqgrid-bdiv .ui-jqgrid-btable {
- background-color: transparent;
- }
- .subgrid-data .ui-jqgrid-legacy-subgrid {
- margin: 0;
- }
- .ui-jqgrid-btable > tbody > tr:nth-child(odd) {
- background: #f9f9f9;
- }
- .subgrid-data .ui-jqgrid-btable > tbody > tr:nth-child(even) {
- background: #fff;
- }
|