1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222 |
- /*
- * Validators
- */
- .Wt-invalid {
- background-color: #f79a9a;
- }
- .Wt-valid {
- background-color: #9af79a
- }
- /*
- * Wt-disabled
- */
- span.Wt-disabled, fieldset.Wt-disabled legend {
- color: gray;
- }
- /*
- * Effects
- */
- .Wt-animated {
- -webkit-backface-visibility: hidden; /* avoids flicker on Chrome */
- }
- /*
- * Outset using a dropshadow
- */
- .Wt-outset {
- border: 1px solid white;
- border: 1px solid rgba(0, 0, 0, 0.2);
- *border-right-width: 2px;
- *border-bottom-width: 2px;
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
- -webkit-background-clip: padding-box;
- -moz-background-clip: padding;
- background-clip: padding-box;
- }
- /*
- * WStackedWidget
- */
- .Wt-stack.Wt-animated {
- overflow: hidden;
- position: relative;
- }
- /*
- * WFormWidget
- */
- .Wt-edit-emptyText {
- color: gray;
- }
- /*
- * Silk screen
- */
- .Wt-dialogcover {
- background: #CCCCCC;
- background: rgb(204, 204, 204);
- height: 100%; width: 100%;
- top: 0px; left: 0px;
- position: fixed;
- }
- .Wt-dialogcover.in {
- filter: alpha(opacity=50);
- opacity: 0.5;
- }
- /*
- * WCalendar
- */
- .Wt-cal {
- padding: 0px;
- }
- .Wt-cal table {
- border-left: 1px solid #727D9C;
- font: normal 13px/22px "Trebuchet MS", Verdana, Arial, Helvetica,
- sans-serif;
- color: #515B66;
- text-align: center;
- background-color: #fff;
- border-collapse: separate;
- }
- .Wt-cal table td {
- text-align: center;
- }
- .Wt-cal table.d1 {
- width: 155px;
- }
- .Wt-cal table.d1 td {
- width: 20px;
- }
- .Wt-cal table.d3 {
- width: 220px;
- }
- .Wt-cal table.d3 td {
- width: 30px;
- }
- .Wt-cal table.dlong {
- width: 490px;
- }
- .Wt-cal table.dlong td {
- width: 70px;
- }
- .Wt-cal th.caption {
- margin: 0;
- padding: 0;
- border: 0;
- background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
- color: #fff;
- font: bold 13px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
- text-align: center;
- }
- .Wt-cal-navbutton {
- cursor: pointer; cursor: hand;
- font: bold 20px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
- vertical-align: middle;
- display: block;
- }
- .Wt-cal caption select {
- cursor: pointer; cursor: hand;
- font: 12px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
- margin: 2px 0px;
- vertical-align: middle;
- }
- .Wt-cal-year {
- vertical-align: middle;
- }
- .Wt-cal-year span {
- padding: 1px 2px;
- }
- .Wt-cal-year span:hover {
- color: #6880A0;
- background-color: #F0F0F0;
- }
- .Wt-cal th {
- font: bold 12px/22px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
- color: #515B66;
- background: #D9E2E1;
- border-right: 1px solid #6880A0;
- border-bottom: 1px solid #6880A0;
- border-top: 1px solid #6880A0;
- cursor: default;
- }
- .Wt-cal td {
- border-right: 1px solid #6880A0;
- border-bottom: 1px solid #6880A0;
- text-align: center;
- cursor: default;
- }
- .Wt-cal-oom {
- color: #CCCCCC;
- }
- .Wt-cal-oor {
- color: #CCCCCC;
- }
- .Wt-cal-sel {
- background-color:#FFF19F;
- }
- .Wt-cal-now {
- color: #F6F4DA;
- font-weight: bold;
- background: #AAAAAA;
- }
- /*
- * WDateEdit
- */
- .Wt-dateedit {
- background-image: url('../../calendar_edit.png');
- background-repeat: no-repeat;
- background-position: right top;
- padding-right: 40px;
- }
- /*
- * WDatePicker
- */
- .Wt-datepicker {
- background-color: white;
- }
- /*
- * Wt-dateedit
- */
- .Wt-dateedit::-ms-clear {
- display:none
- }
- /*
- * WDialog
- */
- .Wt-dialog {
- background-color: white;
- padding: 1px;
- }
- .Wt-dialog .titlebar {
- color: #FFFFFF;
- background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
- font: bold 12px Verdana;
- padding: 3px 6px;
- }
- .Wt-dialog .movable .titlebar {
- cursor: move;
- }
- .Wt-dialog .closeicon {
- background: transparent url(closeicons-dialog.png) no-repeat scroll right top;
- width: 13px;
- height: 13px;
- background-position: right 0px;
- cursor: default;
- vertical-align: center;
- position: absolute;
- right: 5px;
- top: 5px;
- }
- .Wt-dialog .closeicon:hover {
- background-position: right -13px;
- }
- .Wt-dialog .body, .Wt-dialog .footer {
- padding: 4px 6px;
- }
- .Wt-dialog .footer {
- text-align: right;
- }
- .Wt-dialog .footer button {
- padding: 1px 4px 1px;
- margin: 2px;
- }
- .Wt-dialog .titlebar h4 {
- margin: 0px 2px;
- font-size: 110%;
- }
- /*
- * WMessageBox
- */
- .Wt-dialog .Wt-msgbox-icon {
- display: block;
- float: left;
- margin: 0px 15px -15px;
- width: 25px;
- height: 35px;
- }
- .Wt-dialog .Wt-msgbox-body {
- padding: 10px;
- }
- .Wt-dialog .Wt-msgbox-text {
- overflow: auto;
- }
- /*
- * WGridLayout
- */
- .Wt-hrh2, .Wt-vsh2 {
- cursor: row-resize;
- }
- .Wt-vrh2, .Wt-hsh2 {
- cursor: col-resize;
- }
- .Wt-hrh2 {
- background: url(splitter-v.png) no-repeat 50% 50% #EEE;
- }
- .Wt-vrh2 {
- background: url(splitter-h.png) no-repeat 50% 50% #EEE;
- }
- .Wt-hsh2, .Wt-vsh2 {
- background-color: #8ea2bd;
- }
- .Wt-vrh2:hover, .Wt-hrh2:hover {
- background-color: #8ea2bd;
- }
- /*
- * WItemDelegate, when editable
- */
- .Wt-delegate-edit {
- line-height: 0px;
- }
- /*
- * WPanel
- */
- .Wt-panel {
- }
- .Wt-panel .titlebar {
- color: #FFFFFF;
- background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
- font: bold 12px Verdana;
- padding: 3px 6px;
- cursor: default;
- }
- .Wt-panel .body {
- clear: left;
- padding: 4px 6px;
- }
- /*
- * Icons, check-boxes in WMenuItem
- */
- .Wt-icon {
- display: inline-block;
- margin-right: 8px;
- background-repeat: no-repeat;
- background-position: center left;
- width: 16px;
- height: 16px;
- line-height: 16px;
- vertical-align: text-top;
- }
- .Wt-chkbox {
- margin-left: 2px;
- margin-right: 10px;
- display: inline-block;
- width: 12px;
- }
- /*
- * WPopupMenu
- */
- .Wt-popupmenu {
- position: absolute;
- display: none;
- background: #FAFAFA;
- font: normal 13px/22px "Trebuchet MS", Verdana, Arial, Helvetica,
- sans-serif;
- color: #515B66;
- z-index: 200;
- cursor: default;
- white-space: nowrap;
- list-style: none;
- padding: 0px;
- margin: 0;
- }
- .Wt-popupmenu li a {
- display: block;
- padding: 2px 10px;
- }
- .Wt-popupmenu .Wt-padded {
- margin-right: 3px;
- margin-left: 24px;
- padding-right: 24px;
- }
- .Wt-popupmenu .active {
- background: #6880A0;
- color: white;
- }
- .Wt-popupmenu .Wt-disabled, .Wt-popupmenu .Wt-disable.active {
- background: transparent;
- color: #888;
- }
- .Wt-popupmenu .submenu {
- background-image: url(../../right-arrow.gif);
- background-repeat: no-repeat;
- background-position: right center;
- }
- .Wt-popupmenu .Wt-separator {
- border-top: 1px solid #CCCCCC;
- border-bottom: 1px solid #DDDDDD;
- margin: 0px 3px;
- line-height: 0px;
- padding: 0;
- }
- .Wt-popupmenu .Wt-sectheader, .Wt-popupmenu .Wt-sectheader.active {
- background: transparent;
- color: #888;
- }
- /*
- * WProgressBar
- */
- .Wt-progressbar
- {
- font: normal 1em "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
- background: gray;
- border: 1px solid #555;
- position: relative;
- overflow: hidden;
- color: white;
- font-weight: bold;
- width: 200px;
- height: 1em;
- line-height: 1em;
- }
- .Wt-progressbar .Wt-pgb-bar
- {
- position: absolute;
- left: 0px;
- top: 0px;
- height: 100%;
- background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
- }
- .Wt-progressbar .Wt-pgb-label
- {
- font-size: 0.8em;
- position: absolute;
- left: 0px;
- width: 100%;
- text-align: center;
- }
- /*
- * WPushButton
- */
- .Wt-btn:hover {
- border-color:#9CF #69E #69E #7AF;
- }
- .Wt-btn {
- background: transparent url(gradient.png) repeat-x scroll 0 0;
- border: 1px outset #CCC;
- cursor: pointer; cursor: hand;
- font-size: small;
- margin: 0px 2px;
- padding: 2px 5px;
- text-decoration: none;
- }
- .Wt-btn img {
- vertical-align: middle;
- }
- .Wt-btn.with-label img {
- padding-right: 10px;
- }
- .Wt-btn:active {
- border: 1px inset #CCC;
- }
- .Wt-btn[disabled] {
- border: 1px outset #CCC;
- cursor: not-allowed;
- opacity: 0.75;
- }
- .Wt-btn-default {
- font-weight: bold;
- border: 1px outset #37E;
- }
- /*
- * WResizable
- */
- .Wt-resizable {
- background-image: url(../../resizable.png);
- background-repeat: no-repeat;
- background-attachment: scroll;
- background-position: right bottom;
- }
- /*
- * WSlider
- */
- .Wt-slider-h .Wt-slider-bg {
- background: url(sliderbg-h.png) repeat-x scroll left center;
- margin: 0px 5px;
- }
- .Wt-slider-v .Wt-slider-bg {
- background: url(sliderbg-v.png) repeat-y scroll center top;
- margin: 5px 0px;
- }
- .Wt-slider-h .Wt-w {
- position: absolute;
- left: 0px;
- width: 5px;
- top: 0px;
- bottom: 0px;
- background: url(sliderbg-hw.png) no-repeat scroll left center;
- }
- .Wt-slider-h .Wt-e {
- position: absolute;
- right: 0px;
- width: 5px;
- top: 0px;
- bottom: 0px;
- background: url(sliderbg-he.png) no-repeat scroll left center;
- }
- .Wt-slider-v .Wt-w {
- position: absolute;
- left: 0px;
- height: 5px;
- top: 0px;
- right: 0px;
- background: url(sliderbg-vw.png) no-repeat scroll center top;
- }
- .Wt-slider-v .Wt-e {
- position: absolute;
- left: 0px;
- height: 5px;
- right: 0px;
- bottom: 0px;
- background: url(sliderbg-ve.png) no-repeat scroll center top;
- }
- .Wt-slider-h .handle {
- cursor: pointer; cursor: hand;
- background: url(slider-thumb.png) no-repeat scroll center;
- }
- .Wt-slider-v .handle {
- cursor: pointer; cursor: hand;
- background: url(slider-thumb.png) no-repeat scroll center;
- }
- /*
- * WSlider - disabled
- */
- .Wt-slider-h.Wt-disabled .Wt-slider-bg {
- background: url(sliderbg-h-disabled.png) repeat-x scroll left center;
- margin: 0px 5px;
- }
- .Wt-slider-v.Wt-disabled .Wt-slider-bg {
- background: url(sliderbg-v-disabled.png) repeat-y scroll center top;
- margin: 5px 0px;
- }
- .Wt-slider-h.Wt-disabled .Wt-w {
- position: absolute;
- left: 0px;
- width: 5px;
- top: 0px;
- bottom: 0px;
- background: url(sliderbg-hw-disabled.png) no-repeat scroll left center;
- }
- .Wt-slider-h.Wt-disabled .Wt-e {
- position: absolute;
- right: 0px;
- width: 5px;
- top: 0px;
- bottom: 0px;
- background: url(sliderbg-he-disabled.png) no-repeat scroll left center;
- }
- .Wt-slider-v.Wt-disabled .Wt-w {
- position: absolute;
- left: 0px;
- height: 5px;
- top: 0px;
- right: 0px;
- background: url(sliderbg-vw-disabled.png) no-repeat scroll center top;
- }
- .Wt-slider-v.Wt-disabled .Wt-e {
- position: absolute;
- left: 0px;
- height: 5px;
- right: 0px;
- bottom: 0px;
- background: url(sliderbg-ve-disabled.png) no-repeat scroll center top;
- }
- .Wt-slider-h.Wt-disabled .handle {
- cursor: auto;
- background: url(slider-thumb-disabled.png) no-repeat scroll center;
- }
- .Wt-slider-v.Wt-disabled .handle {
- cursor: auto;
- background: url(slider-thumb-disabled.png) no-repeat scroll center;
- }
- /*
- * WSuggestionPopup
- */
- .Wt-suggest {
- background: #FAFAFA;
- font: normal 13px/22px "Trebuchet MS", Verdana, Arial, Helvetica,
- sans-serif;
- color: #515B66;
- cursor: default;
- overflow-y: auto;
- list-style: none;
- margin: 0;
- padding: 1px;
- }
- .Wt-suggest li {
- padding: 0px 3px;
- }
- .Wt-suggest .active {
- background: #6880A0;
- color: white;
- }
- .Wt-suggest-dropdown {
- background-image: url('suggest-dropdown.png');
- background-repeat: no-repeat;
- background-position: right center;
- }
- /*
- * WSpinBox -- todo: polish this
- */
- .Wt-spinbox {
- background-image: url('../default/spin-buttons.png');
- background-repeat: no-repeat;
- background-position: right center;
- padding-right: 16px;
- }
- .Wt-spinbox.up {
- background-image: url('../default/spin-buttons-up.png');
- }
- .Wt-spinbox.dn {
- background-image: url('../default/spin-buttons-dn.png');
- }
- .Wt-spinbox::-ms-clear {
- display: none
- }
- /*
- * WTabWidget
- */
- .Wt-tabs {
- border-bottom: 1px solid gray;
- padding: 3px 3px 0px;
- font: bold 12px Verdana;
- list-style-type: none;
- margin: 0px;
- }
- .Wt-tabs li {
- cursor: pointer; cursor: hand;
- display: block;
- white-space: nowrap;
- float: left;
- padding: 2px 6px 3px;
- margin: 0px 3px 0px;
- border: 1px solid gray;
- border-bottom: none;
- background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
- color: #FFFFFF;
- height: 16px;
- }
- body.Wt-rtl .Wt-tabs li {
- float: right;
- }
- .Wt-tabs li a, .Wt-tabs li button {
- text-decoration: none;
- color: inherit;
- }
- .Wt-tabs li button a {
- padding: 0;
- margin: 0;
- border: 0;
- color: inherit;
- background: transparent;
- }
- .Wt-tabs li:hover, .Wt-tabs .itemselected {
- background: white;
- color: black;
- border-bottom: 1px solid white;
- margin-bottom: -1px;
- }
- .Wt-tabs li.active a, .Wt-tabs li.active button {
- background: white;
- color: black;
- }
- .Wt-tabs .closeicon {
- background: transparent url(closeicons-tab.png) no-repeat scroll right top;
- height: 16px;
- float: right;
- background-position: right 3px;
- border-width: 3px 0px 0px 0px;
- padding: 0px 6px 0px 7px;
- cursor: default;
- margin-left: 3px;
- vertical-align: top;
- }
- .Wt-tabs .closeicon:hover {
- background-position: right -10px;
- }
- .Wt-tabs:after { content: ""; display: block; height: 0; clear: both; }
- .Wt-tabs { clear-after: both; }
- /*
- * XHTML Tooltips
- */
- .Wt-tooltip {
- position: absolute;
- max-width: 700px;
- background-color: #ffffcc;
- border: 1px solid black;
- padding: 1px 2px;
- font-family: sans-serif;
- font-size: smaller;
- z-index: 1000;
- }
- /*
- * WTree(node)
- */
- .Wt-tree {
- font-family: verdana,helvetica,tahoma,sans-serif;
- font-size: 9pt;
- cursor: default;
- white-space: nowrap;
- }
- .Wt-tree ul {
- margin: 0;
- padding-left: 20px;
- list-style: none;
- }
- body.Wt-rtl .Wt-tree ul {
- padding-right: 20px;
- padding-left: 0px;
- }
- /* nodes */
- .Wt-tree div.Wt-root {
- display: none;
- }
- .Wt-tree ul.Wt-root {
- padding-left: 0px;
- }
- body.Wt-rtl .Wt-tree ul.Wt-root {
- padding-right: 0px;
- }
- .Wt-tree .Wt-ctrl {
- float: left;
- display: block;
- width: 19px;
- height: 17px;
- }
- body.Wt-rtl .Wt-tree .Wt-ctrl {
- float: right;
- }
- .Wt-treetable {
- background: white;
- border: 1px solid #dcdfe8;
- }
- .Wt-treetable .Wt-header {
- background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
- font-family: verdana,helvetica,tahoma,sans-serif;
- font-size: 9pt;
- cursor: default;
- color: white;
- cursor: default;
- white-space: nowrap;
- text-overflow: ellipsis;
- padding: 3px 0px 3px 3px;
- }
- .Wt-sbspacer {
- float: right;
- width: 16px;
- height: 1px;
- border: 0px;
- display: none;
- }
- body.Wt-rtl .Wt-sbspacer {
- float: left;
- }
- .Wt-tree .cols-row {
- float: right;
- }
- body.Wt-rtl .Wt-tree .cols-row {
- float: left;
- }
- /* selection */
- .Wt-tree .Wt-selected {
- background-color: #999999;
- color: white;
- }
- /* label */
- .Wt-tree .Wt-label {
- padding: 0px 2px;
- line-height: 150%;
- }
- /*
- * WAbstractItemView (WTableView and WTreeView)
- */
- .Wt-itemview .Wt-headerdiv {
- -moz-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- overflow: hidden;
- width: 100%;
- }
- .Wt-itemview .Wt-tv-rh {
- float: right;
- width: 4px;
- cursor: col-resize;
- }
- .Wt-itemview .Wt-disabled .Wt-tv-rh {
- cursor: default;
- }
- body.Wt-rtl .Wt-itemview .Wt-tv-rh {
- float: left;
- }
- .Wt-itemview .Wt-tv-no-rh {
- width: 0px;
- margin-left: 4px;
- cursor: default;
- }
- body.Wt-rtl .Wt-itemview .Wt-tv-no-rh {
- margin-left: 0px;
- margin-right: 4px;
- }
- /* sort handles */
- .Wt-itemview .Wt-tv-sh {
- float: right;
- width: 16px;
- height: 16px;
- padding-bottom: 6px;
- cursor: pointer; cursor: hand;
- }
- .Wt-itemview .Wt-disabled .Wt-tv-sh {
- background: url(sort-arrow-disabled.gif) no-repeat 0 6px;
- cursor: default;
- }
- body.Wt-rtl .Wt-itemview .Wt-tv-sh {
- float: left;
- }
- .Wt-itemview {
- font-family: verdana,helvetica,tahoma,sans-serif;
- font-size: 9pt;
- cursor: default;
- white-space: nowrap;
- background: white;
- border: 1px solid #dcdfe8;
- }
- .Wt-itemview .Wt-spacer {
- background: url(../../loading.png);
- }
- .Wt-itemview .Wt-headerdiv,
- .Wt-itemview .Wt-headerdiv .Wt-tv-rowc,
- .Wt-itemview th {
- background: #6880A0 url(title-gradient.png) repeat-x scroll 0 -20px;
- color: white;
- }
- .Wt-itemview th, .Wt-itemview th .Wt-tv-br {
- overflow: hidden;
- }
- .Wt-itemview .Wt-header .Wt-label {
- font-weight: bold;
- text-overflow: ellipsis;
- overflow: hidden; /* needed for IE only */
- white-space: nowrap;
- height: 100%;
- }
- .Wt-itemview .Wt-header .Wt-disabled .Wt-label {
- color: gray;
- }
- .Wt-itemview .Wt-header .Wt-wwrap .Wt-label {
- overflow: visible;
- white-space: normal;
- }
- .Wt-itemview .Wt-tv-rh:hover {
- background-color: #DDDDDD;
- }
- .Wt-itemview .Wt-disabled .Wt-tv-rh:hover {
- background-color: transparent;
- }
- .Wt-itemview .Wt-tv-sh-none {
- background: url(sort-arrow-none.gif) no-repeat 0 6px;
- }
- .Wt-itemview .Wt-tv-sh-up {
- background: url(sort-arrow-up.gif) no-repeat 0 6px;
- }
- .Wt-itemview .Wt-tv-sh-down {
- background: url(sort-arrow-down.gif) no-repeat 0 6px;
- }
- /* selection */
- .Wt-itemview .Wt-selected {
- background-color: #999999;
- color: white;
- }
- /* item drag & drop */
- .Wt-itemview .Wt-drop-site {
- background-color: #EEEEEE;
- outline: 1px dotted black;
- }
- /*
- * WTableView
- */
- body.Wt-ltr .Wt-tableview .Wt-header .Wt-tv-c {
- padding-left: 6px;
- }
- body.Wt-rtl .Wt-tableview .Wt-header .Wt-tv-c {
- padding-right: 6px;
- }
- .Wt-tableview .Wt-tv-contents .Wt-tv-c,
- .Wt-plaintable .Wt-tv-c {
- padding: 0px 3px;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .Wt-tableview .Wt-tv-contents img.icon,
- .Wt-tableview .Wt-plaintable img.icon,
- .Wt-tableview .Wt-tv-contents input.icon,
- .Wt-tableview .Wt-plaintable input.icon {
- margin: 0px 3px 2px 0px;
- vertical-align: middle;
- }
- .Wt-tableview .Wt-spacer {
- position: relative;
- overflow: hidden;
- }
- /* header */
- .Wt-tableview {
- white-space: nowrap
- }
- .Wt-tableview th {
- padding: 0px;
- }
- .Wt-tableview table {
- background-position: left bottom;
- }
- /* borders */
- body.Wt-ltr .Wt-tableview .Wt-tv-br {
- border-right: 1px solid #dcdfe8;
- }
- body.Wt-rtl .Wt-tableview .Wt-tv-br {
- border-left: 1px solid #dcdfe8;
- }
- body.Wt-ltr .Wt-tableview .Wt-tv-contents .Wt-tv-c,
- body.Wt-ltr .Wt-tableview .Wt-plaintable tbody .Wt-tv-c {
- border-right: 0px;
- margin-right: 1px;
- }
- body.Wt-rtl .Wt-tableview .Wt-tv-contents .Wt-tv-c,
- body.Wt-rtl .Wt-tableview .Wt-plaintable tbody .Wt-tv-c {
- border-left: 0px;
- margin-left: 1px;
- }
- /*
- * WTreeView
- */
- /* Layout styling */
- .Wt-treeview ul {
- margin: 0px;
- padding-left: 20px;
- list-style: none;
- }
- body.Wt-rtl .Wt-treeview ul {
- padding-left: 0px;
- padding-right: 20px;
- }
- .Wt-treeview ul.Wt-tv-root {
- padding-left: 0px;
- }
- body.Wt-rtl .Wt-treeview ul.Wt-tv-root {
- padding-right: 0px;
- }
- .Wt-treeview .Wt-tv-row {
- float: right;
- overflow: hidden;
- }
- body.Wt-rtl .Wt-treeview .Wt-tv-row {
- float: left;
- }
- .Wt-treeview .Wt-tv-row .Wt-tv-c {
- display: block;
- float: left;
- padding: 0px 3px;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- body.Wt-rtl .Wt-treeview .Wt-tv-row .Wt-tv-c {
- float: right;
- }
- .Wt-treeview img.icon, .Wt-treeview input.icon {
- vertical-align: middle;
- }
- body.Wt-ltr .Wt-treeview img.icon,
- body.Wt-ltr .Wt-treeview input.icon {
- margin: 0px 3px 2px 0px;
- }
- body.Wt-rtl .Wt-treeview img.icon,
- body.Wt-rtl .Wt-treeview input.icon {
- margin: 0px 0px 2px 3px;
- }
- body.Wt-ltr .Wt-treeview .Wt-header .Wt-tv-c {
- padding: 0px;
- margin-left: 7px;
- }
- body.Wt-rtl .Wt-treeview .Wt-header .Wt-tv-c {
- padding: 0px;
- margin-right: 7px;
- }
-
- .Wt-treeview .Wt-scroll {
- overflow: auto;
- height: 22px;
- }
- .Wt-treeview .Wt-scroll div {
- height: 1px;
- }
- /* header */
- .Wt-treeview .Wt-headerdiv .background {
- background-color: #FFFFFF;
- }
- /* nodes */
- .Wt-treeview .Wt-ctrl {
- width: 19px;
- height: 18px;
- float: left;
- }
- body.Wt-rtl .Wt-treeview .Wt-ctrl {
- float: right;
- }
- .Wt-treeview .Wt-ctrl.expand {
- background-image: url(nav-plus.png);
- background-repeat: no-repeat;
- background-position: 0 center;
- }
- body.Wt-rtl .Wt-treeview .Wt-ctrl.expand {
- background-image: url(nav-plus-rtl.png);
- }
- .Wt-treeview .Wt-ctrl.collapse {
- background-image: url(nav-minus.png);
- background-repeat: no-repeat;
- background-position: 0 center;
- }
- body.Wt-rtl .Wt-treeview .Wt-ctrl.collapse {
- background-image: url(nav-minus-rtl.png);
- }
- /* borders */
- body.Wt-ltr .Wt-treeview .Wt-tv-br {
- border-right: 1px solid #dcdfe8;
- }
- body.Wt-rtl .Wt-treeview .Wt-tv-br {
- border-left: 1px solid #dcdfe8;
- }
- body.Wt-ltr .Wt-treeview li .Wt-tv-row .Wt-tv-c {
- border-right: 0px;
- margin-right: 1px;
- }
- body.Wt-rtl .Wt-treeview li .Wt-tv-row .Wt-tv-c {
- border-left: 0px;
- margin-left: 1px;
- }
- /*
- * WTreeView and WTableView default paging bar
- */
- .Wt-pagingbar {
- text-align: center;
- height: 35px;
- line-height: 35px;
- }
- .Wt-pagingbar span {
- margin: 0px 4px;
- }
- .Wt-pagingbar button {
- margin: 0px 4px;
- padding: 0px 3px;
- vertical-align: middle;
- line-height: 20px;
- }
- /*
- * For Ext::TableView
- */
- table.x-grid3-row-table {
- table-layout: fixed;
- }
- .Wt-filedropzone {
- width: 200px;
- height: 200px;
- border: thick dashed grey;
- background-color: lightgrey;
- }
- .Wt-filedropzone-hover {
- border-color: green;
- }
- .Wt-filedropzone-hover * {
- pointer-events: none;
- }
|