diff -r db4de4f37b65 -r 67bf19c50fcc www/jqwidgets/styles/jqx.light.css --- a/www/jqwidgets/styles/jqx.light.css Sun Apr 11 10:53:20 2021 +0200 +++ b/www/jqwidgets/styles/jqx.light.css Mon Apr 12 16:03:38 2021 +0200 @@ -1,1227 +1,411 @@ -.jqx-widget-light { - font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size:14px; - color: #555; -} -.jqx-widget-content-light { - font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size:14px; - color: #555; -} -.jqx-widget-header-light { - font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size:14px; - background: #fff; - color: #555; +:root { + --jqx-primary-rgb: 0, 92, 153; + --jqx-primary: rgb(var(--jqx-primary-rgb)); + --jqx-primary-color: #fff; + --jqx-background: #fff; + --jqx-background-color: rgba(0,0,0, .88); + --jqx-background-hover-rgb: 225, 225, 225; + --jqx-background-hover: rgb(var(--jqx-background-hover-rgb)); + --jqx-background-color-hover: rgba(0,0,0,.54); + --jqx-surface-rgb: 255, 255, 255; + --jqx-surface: rgb(var(--jqx-surface-rgb)); + --jqx-surface-color: rgba(0,0,0, .88); + --jqx-border: #E0E0E0; + --jqx-scrollbar-background: #f5f5f5; + --jqx-scrollbar-border: #ddd; + --jqx-scrollbar-thumb-background: #C1C1C1; + --jqx-scrollbar-thumb-border: #b3b3b3; + --jqx-scrollbar-thumb-background-hover: #e6e6e6; + --jqx-scrollbar-thumb-border-hover: #b3b3b3; + --jqx-scrollbar-thumb-background-pressed: #d9d9d9; + --jqx-scrollbar-thumb-border-pressed: #b3b3b3; + --jqx-scrollbar-button-color-hover: #333; + --jqx-scrollbar-button-background-hover: #f5f5f5; + --jqx-scrollbar-button-border-hover: #f5f5f5; + --jqx-scrollbar-button-color-pressed: #333; + --jqx-scrollbar-button-background-pressed: #f5f5f5; + --jqx-scrollbar-button-border-pressed: #f5f5f5; } +.jqx-icon-search-light, +.jqx-icon-close-light { + background-image: none; + font-family: jqx-icons; +} +.jqx-icon-close-light:after { + content: var(--jqx-icon-close); +} +.jqx-icon-search-light:after { + content: var(--jqx-icon-search); + color: + +} +.jqx-calendar-light { + width: 280px !important; + height: 280px !important; +} +.jqx-fill-state-normal-light { + background: var(--jqx-background); + color: var(--jqx-background-color); + border-color: var(--jqx-border); +} +.jqx-fill-state-hover-light { + background: var(--jqx-background-hover); + color: var(--jqx-background-color-hover); + border-color: var(--jqx-background-hover); +} +.jqx-fill-state-pressed-light { + background: var(--jqx-primary); + color: var(--jqx-primary-color); + border-color: var(--jqx-primary); +} + +@font-face { + font-family: jqx-icons; + src: local('./font/jqx-icons'), url('./font/jqx-icons.woff2') format('woff2'), url('./font/jqx-icons.woff') format('woff'), url('./font/jqx-icons.ttf') format('truetype'), url('./font/jqx-icons.eot') format('embedded-opentype'); + font-weight: normal; + font-style: normal; +} /*Rounded Corners*/ /*top-left rounded Corners*/ .jqx-rc-tl-light { - -moz-border-radius-topleft: 4px; - -webkit-border-top-left-radius: 4px; - border-top-left-radius: 4px; + border-top-left-radius: var(--jqx-border-radius); } /*top-right rounded Corners*/ .jqx-rc-tr-light { - -moz-border-radius-topright: 4px; - -webkit-border-top-right-radius: 4px; - border-top-right-radius: 4px; + border-top-right-radius: var(--jqx-border-radius); } /*bottom-left rounded Corners*/ .jqx-rc-bl-light { - -moz-border-radius-bottomleft: 4px; - -webkit-border-bottom-left-radius: 4px; - border-bottom-left-radius: 4px; + border-bottom-left-radius: var(--jqx-border-radius); } /*bottom-right rounded Corners*/ .jqx-rc-br-light { - -moz-border-radius-bottomright: 4px; - -webkit-border-bottom-right-radius: 4px; - border-bottom-right-radius: 4px; + border-bottom-right-radius: var(--jqx-border-radius); } /*top rounded Corners*/ .jqx-rc-t-light { - -moz-border-radius-topleft: 4px; - -webkit-border-top-left-radius: 4px; - border-top-left-radius: 4px; - -moz-border-radius-topright: 4px; - -webkit-border-top-right-radius: 4px; - border-top-right-radius: 4px; + border-top-left-radius: var(--jqx-border-radius); + border-top-right-radius: var(--jqx-border-radius); } /*bottom rounded Corners*/ .jqx-rc-b-light { - -moz-border-radius-bottomleft: 4px; - -webkit-border-bottom-left-radius: 4px; - border-bottom-left-radius: 4px; - -moz-border-radius-bottomright: 4px; - -webkit-border-bottom-right-radius: 4px; - border-bottom-right-radius: 4px; + border-bottom-left-radius: var(--jqx-border-radius); + border-bottom-right-radius:var(--jqx-border-radius); } /*right rounded Corners*/ .jqx-rc-r-light { - -moz-border-radius-topright: 4px; - -webkit-border-top-right-radius: 4px; - border-top-right-radius: 4px; - -moz-border-radius-bottomright: 4px; - -webkit-border-bottom-right-radius: 4px; - border-bottom-right-radius: 4px; + border-top-right-radius: var(--jqx-border-radius); + border-bottom-right-radius: var(--jqx-border-radius); } /*left rounded Corners*/ .jqx-rc-l-light { - -moz-border-radius-topleft: 4px; - -webkit-border-top-left-radius: 4px; - border-top-left-radius: 4px; - -moz-border-radius-bottomleft: 4px; - -webkit-border-bottom-left-radius: 4px; - border-bottom-left-radius: 4px; + border-top-left-radius: var(--jqx-border-radius); + border-bottom-left-radius: var(--jqx-border-radius); } /*all rounded Corners*/ .jqx-rc-all-light { - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; + border-radius: var(--jqx-border-radius); } .jqx-widget-light, .jqx-widget-header-light, .jqx-fill-state-normal-light, .jqx-widget-content-light, .jqx-fill-state-hover-light, .jqx-fill-state-pressed-light { - font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size:14px; + font-family: var(--jqx-font-family); + font-size: var(--jqx-font-size); +} + +.jqx-widget-light { + font-family: var(--jqx-font-family); + font-size: var(--jqx-font-size); + color: inherit; + border-color:var(--jqx-border); } .jqx-widget-content-light { - background-color: #ffffff; - border-color: #dddddd; + font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + color: var(--jqx-background-color); + background-color: var(--jqx-background); + border-color: var(--jqx-border); +} +.jqx-grid-table-light.jqx-grid-table-one-cell { + border-right-color: var(--jqx-border); } .jqx-widget-header-light { - color: #555; - background-color:#f8f8f8; - border-color:#dddddd; - *zoom: 1; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -} -.jqx-widget-light input::selection, input.jqx-input-widget-light::selection, .jqx-widget-content-light input::selection { - background: #0077BE; - color: #fff; -} -.jqx-button-light { - transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .2s ease-in-out; -} -.jqx-button-light, .jqx-fill-state-normal-light { - color: #555; - background:#fafafa; - border-color: #dddddd; - *zoom: 1; -} - -.jqx-fill-state-hover-light { - color: #373a3c; - border-color: #b2b2b2; - border-color: rgba(0, 0, 0, 0.3); - background-color: #f0f0f0; - } -.jqx-fill-state-pressed-light { - color: #fff ; - background-color: #0077BE; - border-color: #0077BE; - *background-color: #fff; -} - -.jqx-fill-state-hover-light, .jqx-fill-state-focus-light { - color: #333333; - text-decoration: none; -} -.jqx-fill-state-focus-light, .jqx-item-light.jqx-fill-state-focus { - border-color: #0077BE; -} -.jqx-fill-state-pressed-light.jqx-fill-state-hover-light, .jqx-dropdownlist-state-selected-light{ - color: #fff ; -} -.jqx-datetimeinput-light .jqx-action-button-light.jqx-fill-state-hover{ - border-color: #ddd; -} -.jqx-datetimeinput-light.jqx-fill-state-focus .jqx-action-button-light{ - border-color: #0077BE; -} -.jqx-filter-input-light:focus { - border-color: #0077BE !important; -} - -.jqx-button-light { - color: #555; - border-color: #ddd; - *zoom: 1; -} - -.jqx-button-light.jqx-fill-state-hover { - - *zoom: 1; - -webkit-transition: background-color 100ms linear; - -moz-transition: background-color 100ms linear; - -o-transition: background-color 100ms linear; - -ms-transition: background-color 100ms linear; - transition: background-color 100ms linear; -} -.jqx-button-light.jqx-fill-state-pressed { - color: #fff; - background:#0077BE; - border-color: #0077BE; - *zoom: 1; - -webkit-transition: background-color 100ms linear; - -moz-transition: background-color 100ms linear; - -o-transition: background-color 100ms linear; - -ms-transition: background-color 100ms linear; - transition: background-color 100ms linear; + background-color: var(--jqx-surface); + border-color: var(--jqx-border); + font-weight: 500; + font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + background: var(--jqx-surface); + color: var(--jqx-surface-color); } -.jqx-dropdownlist-state-normal-light, .jqx-dropdownlist-state-hover-light, .jqx-dropdownlist-state-selected-light, -.jqx-scrollbar-button-state-hover-light, .jqx-scrollbar-button-state-normal-light, .jqx-scrollbar-button-state-pressed-light, -.jqx-scrollbar-thumb-state-normal-horizontal-light, .jqx-scrollbar-thumb-state-hover-horizontal-light, .jqx-scrollbar-thumb-state-pressed-horizontal-light, -.jqx-scrollbar-thumb-state-normal-light, .jqx-scrollbar-thumb-state-pressed-light, .jqx-tree-item-hover-light, .jqx-tree-item-selected-light, -.jqx-tree-item-light, .jqx-menu-item-light, .jqx-menu-item-hover-light, .jqx-menu-item-selected-light, .jqx-menu-item-top-light, .jqx-menu-item-top-hover-light, -.jqx-menu-item-top-selected-light, .jqx-slider-button-light, .jqx-slider-slider-light - { - -webkit-transition: background-color 100ms linear; - -moz-transition: background-color 100ms linear; - -o-transition: background-color 100ms linear; - -ms-transition: background-color 100ms linear; - transition: background-color 100ms linear; -} -.jqx-primary-light -{ - color: #0077BE !important; - background: #fff !important; - border-color: #0077BE!important; - text-shadow: none !important; -} -.jqx-primary-light.jqx-dropdownlist-state-normal-light, -.jqx-primary-light.jqx-slider-button-light, -.jqx-primary-light.jqx-slider-slider-light, -.jqx-primary-light.jqx-combobox-arrow-normal-light, -.jqx-primary-light.jqx-combobox-arrow-hover-light, -.jqx-primary-light.jqx-action-button-light, -.jqx-primary-light:hover, -.jqx-primary-light:focus, -.jqx-primary-light:active, -.jqx-primary-light.active, -.jqx-primary-light.disabled, -.jqx-primary-light[disabled] { - color: #fff !important; - background: #0077BE !important; - border-color: #0077BE !important; - text-shadow: none !important; -} - -.jqx-fill-state-pressed-light.jqx-primary-light, -.jqx-primary-light:active, -.jqx-primary-light.active { - color: #fff !important; - background-color: #0077BE !important; - border-color: #0077BE!important; - text-shadow: none !important; -} - -.jqx-success-light -{ - color: #5cb85c !important; - background: #fff !important; - border-color: #5cb85c!important; - text-shadow: none !important; +.jqx-calendar-title-header-light { + text-transform: uppercase; } -.jqx-success-light.jqx-dropdownlist-state-normal-light, -.jqx-success-light.jqx-slider-button-light, -.jqx-success-light.jqx-slider-slider-light, -.jqx-success-light.jqx-combobox-arrow-normal-light, -.jqx-success-light.jqx-combobox-arrow-hover-light, -.jqx-success-light.jqx-action-button-light, -.jqx-success-light:hover, -.jqx-success-light:focus, -.jqx-success-light:active, -.jqx-success-light.active, -.jqx-success-light.disabled, -.jqx-success-light[disabled] { - color: #fff !important; - background: #5cb85c !important; - border-color: #5cb85c!important; - text-shadow: none !important; -} - -.jqx-fill-state-pressed-light.jqx-success-light, -.jqx-success-light:active, -.jqx-success-light.active { - text-shadow: none !important; - color: #fff !important; - background: #5cb85c !important; - border-color: #5cb85c!important; +.jqx-window-header-light { + padding: 10px; + text-transform: uppercase; + color: var(--jqx-surface-color); + background: var(--jqx-surface); } - -.jqx-inverse-light -{ - text-shadow: none !important; - color: #666 !important; - background: #fff !important; - border-color: #cccccc!important; -} -.jqx-inverse-light.jqx-dropdownlist-state-normal-light, -.jqx-inverse-light.jqx-slider-button-light, -.jqx-inverse-light.jqx-slider-slider-light, -.jqx-inverse-light.jqx-combobox-arrow-hover-light, -.jqx-inverse-light.jqx-combobox-arrow-normal-light, -.jqx-inverse-light.jqx-action-button-light, -.jqx-inverse-light:hover, -.jqx-inverse-light:focus, -.jqx-inverse-light:active, -.jqx-inverse-light.active, -.jqx-inverse-light.disabled, -.jqx-inverse-light[disabled] { - text-shadow: none !important; - color: #666 !important; - background: #cccccc !important; - border-color: #cccccc!important; -} - -.jqx-fill-state-pressed-light.jqx-inverse-light, -.jqx-inverse-light:active, -.jqx-inverse-light.active { - text-shadow: none !important; - color: #666 !important; - background: #cccccc !important; - border-color: #cccccc!important; +.jqx-calendar tr { + border-bottom-color: var(--jqx-border); } -.jqx-danger-light -{ - text-shadow: none !important; - color: #d9534f !important; - background: #fff !important; - border-color: #d9534f!important; +.jqx-widget-light input::selection, input.jqx-input-widget-light::selection, .jqx-widget-content-light input::selection { + background: var(--jqx-primary); + color: var(--jqx-primary-color); } -.jqx-danger-light.jqx-dropdownlist-state-normal-light, -.jqx-danger-light.jqx-slider-button-light, -.jqx-danger-light.jqx-slider-slider-light, -.jqx-danger-light.jqx-combobox-arrow-hover-light, -.jqx-danger-light.jqx-combobox-arrow-normal-light, -.jqx-danger-light.jqx-action-button-light, -.jqx-danger-light:hover, -.jqx-danger-light:focus, -.jqx-danger-light:active, -.jqx-danger-light.active, -.jqx-danger-light.disabled, -.jqx-danger-light[disabled] { - text-shadow: none !important; - color: #fff !important; - background: #d9534f !important; - border-color: #d9534f!important; +.jqx-toolbar-light{ + border-color: var(--jqx-border); +} + +.jqx-toolbar-light { + height: auto !important; + display: flex; + align-items: center; } -.jqx-fill-state-pressed-light.jqx-danger-light, -.jqx-danger-light:active, -.jqx-danger-light.active { - text-shadow: none !important; - color: #fff !important; - background: #d9534f !important; - border-color: #d9534f!important; +.jqx-button-light, .jqx-button-light.jqx-fill-state-normal-light { + color: var(--jqx-background-color); + background-color: var(--jqx-background); + border-color: var(--jqx-border); + text-transform: uppercase; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + outline: none; + transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1); + border-radius: 4px; + box-shadow: 0 0 0 0 rgba(0,0,0,.2), 0 0 0 0 rgba(0,0,0,.14), 0 0 0 0 var(--jqx-border); +} +.jqx-button-light.jqx-fill-state-hover-light, +.jqx-button-light.jqx-fill-state-pressed-light { + background-color: var(--jqx-background-hover); + border-color: var(--jqx-border); + color: var(--jqx-background-color-hover); } - -.jqx-warning-light -{ - text-shadow: none !important; - color: #f0ad4e !important; - background: #fff !important; - border-color: #f0ad4e!important; +.jqx-button-light.primary { + color: var(--jqx-primary-color); + background-color: var(--jqx-primary); + border-color: var(--jqx-primary); +} +.jqx-button-light.jqx-fill-state-hover-light.primary, +.jqx-button-light.jqx-fill-state-pressed-light.primary { + color: var(--jqx-primary-color); + background-color: var(--jqx-primary); + border-color: var(--jqx-primary); } -.jqx-warning-light.jqx-dropdownlist-state-normal-light, -.jqx-warning-light.jqx-slider-button-light, -.jqx-warning-light.jqx-slider-slider-light, -.jqx-warning-light.jqx-combobox-arrow-hover-light, -.jqx-warning-light.jqx-combobox-arrow-normal-light, -.jqx-warning-light.jqx-action-button-light, -.jqx-warning-light:hover, -.jqx-warning-light:focus, -.jqx-warning-light:active, -.jqx-warning-light.active, -.jqx-warning-light.disabled, -.jqx-warning-light[disabled] { - text-shadow: none !important; - color: #fff !important; - background: #f0ad4e !important; - border-color: #f0ad4e!important; +.jqx-button-light.secondary, +.jqx-button-light.jqx-toolbar-tool { + background-color: var(--jqx-surface); + border-color: var(--jqx-border); + color: var(--jqx-surface-color) !important; +} +.jqx-button-light.secondary:hover, +.jqx-button-light.jqx-toolbar-tool:hover { + background-color: var(--jqx-background-hover); + border-color: var(--jqx-border); + color: var(--jqx-background-color-hover) !important; +} +.jqx-button-light.secondary:active, +.jqx-button-light.jqx-toolbar-tool:active { + background-color: var(--jqx-surface); + border-color: var(--jqx-border); + color: var(--jqx-surface-color) !important; +} +.jqx-scheduler-edit-dialog-field .jqx-button-light { + padding: 6px 16px; + text-transform: uppercase; } -.jqx-fill-state-pressed-light.jqx-warning-light, -.jqx-warning-light:active, -.jqx-warning-light.active { - text-shadow: none !important; - color: #fff !important; - background: #f0ad4e !important; - border-color: #f0ad4e!important; +.jqx-button-light button, jqx-button-light input { + background: transparent; + color: inherit; + border:none; + outline: none; +} +.jqx-group-button-normal-light{ + box-shadow: none; + background: var(--jqx-background); + border-color: var(--jqx-border); + color: var(--jqx-background-color) !important; + border-radius:0px; +} +.jqx-group-button-normal.jqx-fill-state-hover { + box-shadow: none !important; + } +.jqx-group-button-normal.jqx-fill-state-pressed { + box-shadow: none !important; + background: var(--jqx-primary) !important; + border-color: var(--jqx-primary) !important; + color: var(--jqx-primary-color)!important; + border-radius:0px; } -.jqx-info-light -{ - text-shadow: none !important; - color: #5bc0de !important; - background: #fff !important; - border-color: #5bc0de!important; +.jqx-slider-button-light { + padding:3px; + background: transparent; + border:transparent; } -.jqx-info-light.jqx-dropdownlist-state-normal-light, -.jqx-info-light.jqx-slider-button-light, -.jqx-info-light.jqx-slider-slider-light, -.jqx-info-light.jqx-combobox-arrow-hover-light, -.jqx-info-light.jqx-combobox-arrow-normal-light, -.jqx-info-light.jqx-action-button-light, -.jqx-info-light:hover, -.jqx-info-light:focus, -.jqx-info-light:active, -.jqx-info-light.active, -.jqx-info-light.disabled, -.jqx-info-light[disabled] { - color: #fff !important; - background: #5bc0de !important; - border-color: #5bc0de!important; - text-shadow: none !important; -} + .jqx-button-light.float { + border-radius: 100%; + min-height: 48px; + min-width: 48px; + width: 48px; + height: 48px; + max-height: 48px; + max-width:48px; + } -.jqx-fill-state-pressed-light.jqx-info-light, -.jqx-info-light:active, -.jqx-info-light.active { - text-shadow: none !important; - color: #fff !important; - background: #5bc0de !important; - border-color: #5bc0de!important; -} + .jqx-button-light.outlined { + background: transparent; + color: var(--jqx-primary); + border-width: 2px; + } -.jqx-fill-state-pressed-light { - background-image: none; - outline: 0; + .jqx-button-light.flat { + background: transparent; + color: var(--jqx-primary); + border: none; + } + +.jqx-fill-state-hover-light, .jqx-fill-state-focus-light { + text-decoration: none; } -.jqx-grid-cell-light { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} - -.jqx-grid-column-menubutton-light { - background-color: transparent; - border-color: #ddd !important; -} -.jqx-cell-light { - font-size: 14px; -} - -.jqx-calendar-light > div { - padding: 10px; - box-sizing: border-box; -} - -.jqx-calendar-light .jqx-widget-header-light -{ - background-color: #fff; - font-size:12px; - box-shadow:none; -} -.jqx-calendar-row-header-light, .jqx-calendar-top-left-header-light { - background-color: #f0f0f0; - border-color: #f2f2f2; - box-shadow:none; -} -.jqx-calendar-title-content-light { - font-weight:bold; -} -.jqx-calendar-column-header-light { - background-color: #FFF; - border-top-color: #fff; - box-shadow:none; - border-bottom-color: #e9e9e9; -} -.jqx-calendar-light > div { - padding: 10px; - box-sizing: border-box; -} -.jqx-expander-header-light { - padding-top: 10px; padding-bottom: 10px; -} .jqx-expander-header.jqx-fill-state-hover-light, .jqx-expander-header.jqx-fill-state-normal-light, .jqx-expander-header.jqx-fill-state-pressed-light { - background: #fff; - border-color: #e0e0e0; - color: #333; + background: var(--jqx-background-hover); + border-color: var(--jqx-border); + color:var(--jqx-background-color-hover); } .jqx-expander-header.jqx-fill-state-hover-light { - background: #f6f6f6; + background: var(--jqx-background-hover); } -.jqx-expander-header.jqx-fill-state-focus-light { - border-color: #0077BE; -} -.jqx-expander-content.jqx-fill-state-focus-light { - border-color: #e0e0e0; - background: #fdfdfd; +.jqx-expander-content-light{ + padding:0px; } .jqx-expander-header-light { padding:10px; } - -.jqx-ribbon-header-vertical-light, .jqx-widget-header-vertical-light { - background:#f0f0f0; -} - -.jqx-scrollbar-state-normal-light { - background-color: #f8f8f8; - border: 1px solid #f8f8f8; - border-left-color: #ddd; -} - -.jqx-scrollbar-thumb-state-normal-light, .jqx-scrollbar-thumb-state-normal-horizontal-light { - background: #f6f6f6; - border-color: #b3b3b3; -} - -.jqx-scrollbar-thumb-state-hover-light, .jqx-scrollbar-thumb-state-hover-horizontal-light { - background: #e6e6e6; - border-color: #b3b3b3; - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; -} - -.jqx-progressbar-light { - background: #f7f7f7 !important; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} - -.jqx-progressbar-value-light, .jqx-splitter-collapse-button-horizontal-light { - background: #0077BE; -} - -.jqx-splitter-collapse-button-vertical-light, .jqx-progressbar-value-vertical-light { - background: #0077BE; -} - - -.jqx-scrollbar-thumb-state-pressed-light, .jqx-splitter-splitbar-vertical-light, .jqx-splitter-splitbar-horizontal-light, .jqx-scrollbar-thumb-state-pressed-horizontal-light, -.jqx-scrollbar-button-state-pressed-light - { - background: #d9d9d9; - border-color: #b3b3b3; - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; -} - -.jqx-grid-column-sortdescbutton-light, jqx-grid-column-filterbutton-light, .jqx-grid-column-sortascbutton-light { - background-color: transparent; - border-style: solid; - border-width: 0px 0px 0px 0px; - border-color: #ddd; -} - -.jqx-menu-vertical-light { - background: #ffffff; - filter: none; +.jqx-button-light.jqx-fill-state-hover { + opacity: 0.9; + cursor: pointer; + box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); + *zoom: 1; } -.jqx-checkbox-check-checked-light { - background: transparent url(images/material_check_black.png) center center no-repeat; -} -.jqx-checkbox-check-indeterminate-light { - width:14px !important; - height:14px !important; - position:relative; - top: 1px; - left: 1px; - background: #0379BF; -} -.jqx-checkbox-hover { - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; -} -.jqx-combobox-content-light, .jqx-input-light { -} - -.jqx-combobox-content-light { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.25); -} - -.jqx-grid-bottomright-light, .jqx-panel-bottomright-light, .jqx-listbox-bottomright-light { - background-color: #f8f8f8; -} - -.jqx-window-light, .jqx-tooltip-light { - box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15); -} - -.jqx-docking-light .jqx-window-light { - box-shadow: none; -} - -.jqx-docking-panel-light .jqx-window-light { - box-shadow: none; -} - -.jqx-radiobutton-light { - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - background-repeat: no-repeat; - background: none; -} + .jqx-button-light.jqx-fill-state-hover.outlined, + .jqx-button-light.jqx-fill-state-hover.flat { + color: var(--jqx-primary); + box-shadow: none; + } -.jqx-radiobutton-light-light, .jqx-radiobutton-hover-light { - -moz-border-radius: 100%; - -webkit-border-radius: 100%; - border-radius: 100%; - background-repeat: no-repeat; -} - -.jqx-radiobutton-check-checked-light { - filter: none; - background: #0077BE; - background-repeat: no-repeat; - -moz-border-radius: 100%; - -webkit-border-radius: 100%; - border-radius: 100%; -} - -.jqx-radiobutton-check-indeterminate-light { - filter: none; - background: #999; - -moz-border-radius: 100%; - -webkit-border-radius: 100%; - border-radius: 100%; -} - -.jqx-radiobutton-check-indeterminate-disabled-light { - filter: none; - background: #999; - -moz-border-radius: 100%; - -webkit-border-radius: 100%; - border-radius: 100%; -} - -.jqx-slider-track-horizontal-light, .jqx-slider-track-vertical-light { - border-color: #ddd; - background: #f0f0f0; -} - -.jqx-slider-button-light { - -moz-border-radius: 100%; - -webkit-border-radius: 100%; - border-radius: 100%; - background-color: transparent; - border-color: transparent !important; -} - -.jqx-slider-slider-light { - transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease; +.jqx-button-light.jqx-fill-state-pressed { + cursor: pointer; + box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); } -.jqx-slider-has-value-light { - -moz-border-radius: 100%; - -webkit-border-radius: 100%; - border-radius: 100%; - background-color: #0077BE; - border-color: #0077BE !important; -} - -.jqx-slider-slider-light:active { - transform: scale(1.2); - box-shadow: rgba(0,0,0,0.3) 0 0 10px; -} + .jqx-button-light.jqx-fill-state-pressed.float { + box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12); + } -.jqx-slider-tooltip-light, .jqx-slider-tooltip-light .jqx-fill-state-normal-light { - border-radius: 4px; - display: flex; - align-items: center; - justify-content: center; - background: #0077BE; - border-color: #0077BE; - color: #fff; - font-size:11px; -} + .jqx-slider-button-light.jqx-fill-state-pressed-light, + .jqx-button-light.jqx-fill-state-pressed.outlined, + .jqx-button-light.jqx-fill-state-pressed.flat { + background: rgba(179,229,252,0.15); + box-shadow: none; + color: var(--jqx-primary); + } -.jqx-slider-tooltip-light .jqx-tooltip-arrow-t-b, -.jqx-slider-tooltip-light .jqx-tooltip-arrow-l-r { - background: #0077BE; - border-color: #0077BE; +.jqx-button-light.jqx-fill-state-focus { + box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); } -.jqx-listitem-state-normal-light, -.jqx-listitem-state-hover-light, -.jqx-listitem-state-selected-light - { - padding-top:5px; - padding-bottom:5px; - margin:0px; - border-radius: 0px; -} - -.jqx-listitem-state-normal-light.checkboxes, -.jqx-listitem-state-hover-light.checkboxes, -.jqx-listitem-state-selected-light.checkboxes { - border-radius: 4px; -} - -.jqx-listitem-element-light { - -} - -/*applied to a list item when the item is selected.*/ -.jqx-listitem-state-hover-light, .jqx-menu-item-hover-light, .jqx-tree-item-hover-light, .jqx-calendar-cell-hover-light, .jqx-grid-cell-hover-light, -.jqx-menu-vertical-light .jqx-menu-item-top-hover-light, .jqx-input-popup-light .jqx-fill-state-hover-light, -.jqx-input-popup-light .jqx-fill-state-pressed-light { - color: #0077BE !important; - border-color: #e1f5fe; - text-decoration: none; - background-color: #e1f5fe; - background-repeat: repeat-x; - outline: 0; - background: #e1f5fe; /* Old browsers */ - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - background-position: 0 0; -} -.jqx-scheduler-cell-hover-light { - border-color: #e3f5fb !important; - background: #e3f5fb !important; -} -.jqx-grid-table-dark { - font-size: 14px; -} - + .jqx-slider-button-light.jqx-fill-state-focus-light { + background: transparent; + border-color: transparent; + box-shadow:none; + } -.jqx-listitem-state-selected-light, .jqx-menu-item-selected-light, .jqx-tree-item-selected-light, .jqx-calendar-cell-selected-light, .jqx-grid-cell-selected-light, -.jqx-menu-vertical-light .jqx-menu-item-top-selected-light, .jqx-grid-selectionarea-light, .jqx-input-button-header-light, .jqx-input-button-innerHeader-light { - color: #ffffff !important; - background-color: #0077BE; - *background-color: #0077BE; - background-repeat: repeat-x; - border-color: #0077BE !important; - background: #0077BE; /* Old browsers */ - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.jqx-scheduler-cell-selected-light { - border-color: #0077BE !important; - background: #0077BE !important; -} -.jqx-grid-cell-light .jqx-button-light, .jqx-grid-cell-light .jqx-button-light.jqx-fill-state-hover-light, .jqx-grid-cell-light .jqx-button-light.jqx-fill-state-pressed-light { - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; - -webkit-transition: none; - -moz-transition: none; - -o-transition: none; - transition: none; -} + .jqx-button-light.jqx-fill-state-focus.outlined, + .jqx-button-light.jqx-fill-state-focus.flat { + box-shadow: none; + background: rgba(rgb(var(--jqx-primary-rgb)),0.15); + color: var(--jqx-primary); + } -.jqx-popup-light { - border: 1px solid #ddd; - *border-right-width: 2px; - *border-bottom-width: 2px; - -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15); - -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15); -} -.jqx-grid-column-sortascbutton-light, .jqx-expander-arrow-bottom-light, .jqx-window-collapse-button-light, .jqx-menu-item-arrow-up-light, .jqx-menu-item-arrow-up-selected-light, .jqx-menu-item-arrow-top-up-light, .jqx-icon-arrow-up-light, .jqx-icon-arrow-up-hover-light, .jqx-icon-arrow-up-selected-light { - background-image: url('images/metro-icon-up.png'); - background-repeat: no-repeat; - background-position: center; -} - -.jqx-widget-light .jqx-grid-group-expand-light, .jqx-grid-group-expand-light, .jqx-grid-column-menubutton-light, .jqx-grid-column-sortdescbutton-light, .jqx-expander-arrow-top-light, .jqx-window-collapse-button-collapsed-light, .jqx-menu-item-arrow-down-light, .jqx-menu-item-arrow-down-selected-light, .jqx-menu-item-arrow-down-light, .jqx-icon-arrow-down-light, .jqx-icon-arrow-down-hover-light, .jqx-icon-arrow-down-selected-light { - background-image: url('images/metro-icon-down.png'); - background-repeat: no-repeat; - background-position: center; -} + .jqx-dropdownlist-content-light { + display: flex; + align-items: center; + height: 100% !important; + margin-top: 0px !important; + } -.jqx-tabs-arrow-left-light, .jqx-menu-item-arrow-left-selected-light, .jqx-menu-item-arrow-top-left, .jqx-icon-arrow-left-light, .jqx-icon-arrow-down-left-light, .jqx-icon-arrow-left-selected-light { - background-image: url('images/metro-icon-left.png'); - background-repeat: no-repeat; - background-position: center; -} - -.jqx-widget-light .jqx-grid-group-collapse-light, .jqx-grid-group-collapse-light, .jqx-tabs-arrow-right-light, .jqx-menu-item-arrow-right-selected-light, .jqx-menu-item-arrow-top-right-light, .jqx-icon-arrow-right-light, .jqx-icon-arrow-right-hover-light, .jqx-icon-arrow-right-selected-light { - background-image: url('images/metro-icon-right.png'); - background-repeat: no-repeat; - background-position: center; -} - -.jqx-tree-item-arrow-collapse-rtl-light, .jqx-tree-item-arrow-collapse-hover-rtl-light { - background-image: url(images/metro-icon-left.png); -} - -.jqx-menu-item-arrow-left-selected-light { - background-image: url('images/metro-icon-left-white.png'); - background-repeat: no-repeat; - background-position: center; -} - -.jqx-menu-item-arrow-right-selected-light { - background-image: url('images/metro-icon-right-white.png'); - background-repeat: no-repeat; - background-position: center; -} - -.jqx-input-button-content-light { - font-size: 10px; -} -.jqx-widget .jqx-grid-cell, .jqx-widget .jqx-grid-column-header, .jqx-widget .jqx-grid-group-cell {border-color: #ddd;} -.jqx-grid-groups-row-light > span { - padding-left: 4px; -} -.jqx-combobox-content-light, .jqx-input-light { - border-color: #ddd; - color: #555555; - background-color: #ffffff; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} - -.jqx-combobox-content-light, .jqx-combobox-light, .jqx-combobox-state-normal-light { - border-color: #ddd; -} - -.jqx-combobox-content-focus-light, .jqx-combobox-state-focus-light, .jqx-fill-state-focus-light, -.jqx-numberinput-focus-light { - outline: none; - border-color: #959595; + .jqx-dropdownlist-content-light span { + top: 0px !important; + } +.jqx-dropdownlist-state-normal-light, .jqx-dropdownlist-state-hover-light, .jqx-dropdownlist-state-selected-light, +.jqx-scrollbar-button-state-hover-light, .jqx-scrollbar-button-state-normal-light, .jqx-scrollbar-button-state-pressed-light, +.jqx-scrollbar-thumb-state-normal-horizontal-light, .jqx-scrollbar-thumb-state-hover-horizontal-light, .jqx-scrollbar-thumb-state-pressed-horizontal-light, +.jqx-scrollbar-thumb-state-normal-light, .jqx-scrollbar-thumb-state-pressed-light, .jqx-tree-item-hover-light, .jqx-tree-item-selected-light, +.jqx-tree-item-light, .jqx-menu-item-light, .jqx-menu-item-hover-light, .jqx-menu-item-selected-light, .jqx-menu-item-top-light, .jqx-menu-item-top-hover-light, +.jqx-menu-item-top-selected-light, .jqx-slider-button-light, .jqx-slider-slider-light { + -webkit-transition: background-color 100ms linear; + -moz-transition: background-color 100ms linear; + -o-transition: background-color 100ms linear; + -ms-transition: background-color 100ms linear; + transition: background-color 100ms linear; } -input[type="text"].jqx-input-light, input[type="password"].jqx-input-light, input[type="text"].jqx-widget-content-light, input[type="textarea"].jqx-widget-content-light, textarea.jqx-input-light { - font-size: 14px; - padding-left:3px; - padding-right: 3px; - resize: none; -} - -input[type="text"].jqx-input-light:-moz-placeholder, input[type="text"].jqx-widget-content-light:-moz-placeholder, input[type="textarea"].jqx-widget-content-light:-moz-placeholder, textarea.jqx-input-light:-moz-placeholder { - color: #999999; -} - -input[type="text"].jqx-input-light:-webkit-input-placeholder, input[type="text"].jqx-widget-content-light:-webkit-input-placeholder, input[type="textarea"].jqx-widget-content-light:-webkit-input-placeholder, textarea.jqx-input-light:-webkit-input-placeholder { - color: #999999; -} - -input[type="text"].jqx-input-light:-ms-input-placeholder, input[type="text"].jqx-widget-content-light:-ms-input-placeholder, input[type="textarea"].jqx-widget-content-light:-ms-input-placeholder, textarea.jqx-input-light:-ms-input-placeholder { - color: #999999; -} - -.jqx-combobox-content-light, .jqx-input-light { - border-color: #ddd; - color: #555555; - background-color: #ffffff; -} - -.jqx-combobox-content-light, .jqx-combobox-light, .jqx-combobox-state-normal-light { - border-color: #ddd; -} - -.jqx-combobox-content-focus-light, .jqx-combobox-state-focus-light, .jqx-fill-state-focus-light, -.jqx-numberinput-focus-light { - outline: none; - border-color: #0077BE; -} -.jqx-popup-light.jqx-fill-state-focus-light -{ - outline: none; - border-color: #ddd !important; -} - -.jqx-datetimeinput-content, .jqx-datetimeinput-container { - overflow: visible !important; -} -.jqx-slider-rangebar-light { - border-color: #0077BE; - background: #0077BE; +.jqx-primary-light.jqx-input-label-light { + color: var(--jqx-primary) !important; } -.jqx-switchbutton-light{ - border-radius: 15px; -} -.jqx-switchbutton-light .jqx-fill-state-normal-light, -.jqx-switchbutton-light .jqx-fill-state-hover-light, -.jqx-switchbutton-light .jqx-fill-state-pressed-light { - border-color: #0077BE; - background: #0077BE; -} - -.jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-expand-light { - background-image: url('images/metro-icon-down-white.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-collapse-light{ - background-image: url('images/metro-icon-right-white.png'); - background-repeat: no-repeat; - background-position: center; +.jqx-primary-light.jqx-input-bar-light:before { + background: var(--jqx-primary) !important; } -.jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-collapse-rtl-light{ - background-image: url('images/metro-icon-left-white.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-expand-rtl-light { - background-image: url('images/metro-icon-down-white.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-tabs-title-selected-top-light, .jqx-tabs-selection-tracker-top-light { - border-color: transparent; - filter: none; - background: #fff; - color: #333; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} -.jqx-tabs-arrow-background-light{ - background: #fff; - border:none; - box-shadow:none; -} -.jqx-tabs-title-light, .jqx-ribbon-item-light { - color: #333; +.jqx-success-light.jqx-input-label-light { + color: #5cb85c !important; } -.jqx-tabs-title-selected-bottom-light, -.jqx-tabs-title-selected-top-light - { - padding-top:5px; - padding-bottom:5px; - color: #1997C6; - font-weight:500; -} -.jqx-tabs-title.jqx-fill-state-hover-light { - border-color: transparent; -} -.jqx-ribbon-item-light { - cursor: pointer; -} -.jqx-ribbon-item-selected-light { - color: #1997C6; - font-weight:500; - border-color: transparent; -} - -.jqx-ribbon-item-hover-light { - background: transparent; - border-color: transparent; -} - -.jqx-ribbon-header-top-light { - border-color: transparent; - border-bottom-color: #E0E0E0; -} - -.jqx-ribbon-header-bottom-light { - border-color: transparent; - border-top-color: #E0E0E0; -} - -.jqx-ribbon-header-right-light { - border-color: transparent; - border-left-color:#E0E0E0; -} - -.jqx-ribbon-header-left-light { - border-color: transparent; - border-right-color:#E0E0E0; -} - -.jqx-tabs-title-selected-bottom-light, .jqx-tabs-selection-tracker-bottom-light { - border-color: transparent; - border-top: 1px solid #fff; - filter: none; - background: #fff; - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; +.jqx-success-light.jqx-input-bar-light:before { + background: #5cb85c !important; } - -.jqx-tabs-light, .jqx-ribbon-light { - border-color: transparent; -} - -.jqx-tabs-header-light, .jqx-ribbon-header-light { - background: transparent; -} -.jqx-tabs-position-bottom .jqx-tabs-header-light { - border-color: transparent; -} -.jqx-layout-light .jqx-tabs-header-light, .jqx-layout-light .jqx-ribbon-header-light { - background: #fff; - border-color: #E0E0E0; -} -.jqx-tabs-title-bottom { - border-color: transparent; -} -.jqx-tabs-title-hover-top-light, .jqx-tabs-title-hover-bottom-light, .jqx-tabs-header-light { - -webkit-box-shadow: none !important; - -moz-box-shadow: none !important; - box-shadow: none !important; - background: transparent; +.jqx-inverse-light.jqx-input-label-light { + color: #666 !important; } - -.jqx-tabs-content-light { - box-sizing: border-box; - border: 1px solid #E0E0E0; - border-top-color: transparent; - padding:5px; -} - -.jqx-tabs-bar-light { - position: absolute; - bottom: 0; - background: #1997C6; - height: 2px; - z-index:20; - transition: .5s cubic-bezier(.35,0,.25,1); -} -.jqx-tabs-bar-light.vertical { - width: 2px; -} -.jqx-tabs-position-bottom .jqx-tabs-bar-light { - top: 0; -} - -.jqx-window-content-light { - box-sizing:border-box; -} - -.jqx-layout-light -{ - background-color: #cccccc; +.jqx-inverse-light.jqx-input-bar-light:before { + background: #666 !important; } -.jqx-kanban-column-header-collapsed-light { - background: -moz-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* ff3.6+ */ - background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(248,248,248,1)), color-stop(100%, rgba(234,234,234,1))); /* safari4+,chrome */ - background: -webkit-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* safari5.1+,chrome10+ */ - background: -o-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* opera 11.10+ */ - background: -ms-linear-gradient(0deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* ie10+ */ - background: linear-gradient(90deg, rgba(248,248,248,1) 0%, rgba(234,234,234,1) 100%); /* w3c */ -} - -.jqx-calendar-light td { - font-size: 12px; -} -.jqx-grid-column-menubutton-light { - background-image: url('images/metro-icon-down.png'); - } -.jqx-grid-pager-top-light .jqx-grid-pager-number-light, -.jqx-grid-pager-light .jqx-grid-pager-number-light { - - background-color: transparent; - border-color: transparent; - color: rgba(0,0,0,.54) !important; - font-size:12px; -} - -.jqx-grid-pager-top-light .jqx-grid-pager-number-light:hover, -.jqx-grid-pager-light .jqx-grid-pager-number-light:hover { - font-size:12px; -} - -.jqx-grid-pager-top-light .jqx-grid-pager-number-light.jqx-fill-state-pressed-light , -.jqx-grid-pager-light .jqx-grid-pager-number-light.jqx-fill-state-pressed-light { - color: #0077BE !important; - font-weight: bold !important; -} -.jqx-menu-item-arrow-up-selected-light, .jqx-icon-arrow-up-selected-light{background-image:url('images/metro-icon-up-white.png');background-repeat:no-repeat;background-position:center;} -.jqx-menu-item-arrow-down-selected-light, .jqx-icon-arrow-down-selected-light{background-image:url('images/metro-icon-down-white.png');background-repeat:no-repeat;background-position:center;} -.jqx-menu-item-arrow-left-selected-light, .jqx-icon-arrow-left-selected-light{background-image:url('images/metro-icon-left-white.png');background-repeat:no-repeat;background-position:center;} -.jqx-menu-item-arrow-right-selected-light, .jqx-icon-arrow-right-selected-light{background-image:url('images/metro-icon-right-white.png');background-repeat:no-repeat;background-position:center;} -.jqx-tabs-close-button-light{background-image:url(images/close.png); background-repeat:no-repeat; background-position:center;} -.jqx-tabs-close-button-selected-light{background-image:url(images/close.png); background-repeat:no-repeat; background-position:center;} -.jqx-tabs-close-button-hover-light{background-image:url(images/close.png); background-repeat:no-repeat; background-position:center;} -.jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-up-selected-light{background-image:url('images/metro-icon-up.png');background-repeat:no-repeat;background-position:center;} -.jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-down-selected-light{background-image:url('images/metro-icon-down.png');background-repeat:no-repeat;background-position:center;} -.jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-left-selected-light{background-image:url('images/metro-icon-left.png');background-repeat:no-repeat;background-position:center;} -.jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-right-selected-light{background-image:url('images/metro-icon-right.png');background-repeat:no-repeat;background-position:center;} - -.jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-expand-light { - background-image: url('images/metro-icon-down-white.png'); - background-repeat: no-repeat; - background-position: center; +.jqx-danger-light.jqx-input-label-light { + color: #d9534f !important; } -.jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-collapse-light{ - background-image: url('images/metro-icon-right-white.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-collapse-rtl-light { - background-image: url('images/metro-icon-left-white.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-grid-cell-light.jqx-grid-cell-selected-light>.jqx-grid-group-expand-rtl-light{ - background-image: url('images/metro-icon-down-white.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-grid-group-collapse-light { - background-image: url(images/metro-icon-right.png); - background-position: 50% 50%; - background-repeat: no-repeat; +.jqx-danger-light.jqx-input-bar-light:before { + background: #d9534f !important; } -.jqx-grid-group-collapse-rtl-light -{ - padding-right: 0px; - background-image: url(images/metro-icon-left.png); - background-position: 50% 50%; - background-repeat: no-repeat; -} -.jqx-grid-group-expand-light, .jqx-grid-group-expand-rtl-light -{ - padding-right: 0px; - background-image: url(images/metro-icon-down.png); - background-position: 50% 50%; - background-repeat: no-repeat; -} -.jqx-icon-arrow-first-light -{ - background-image: url('images/metro-icon-first.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-icon-arrow-last-light -{ - background-image: url('images/metro-icon-last.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-icon-arrow-first-hover-light -{ - background-image: url('images/metro-icon-first.png'); - background-repeat: no-repeat; - background-position: center; +.jqx-warning-light.jqx-input-label-light { + color: #f0ad4e !important; } -.jqx-icon-arrow-last-hover-light -{ - background-image: url('images/metro-icon-last.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-icon-arrow-first-selected-light -{ - background-image: url('images/metro-icon-first-white.png'); - background-repeat: no-repeat; - background-position: center; -} -.jqx-icon-arrow-last-selected-light -{ - background-image: url('images/metro-icon-last-white.png'); - background-repeat: no-repeat; - background-position: center; -} - -.jqx-icon-calendar-pressed-light { - background-image: url('images/icon-calendar-white.png'); -} -.jqx-icon-time-pressed-light { - background-image: url('images/icon-time-white.png'); -} -.jqx-icon-time-light{ - margin-left:1px; -} - - -.sorticon, .filtericon { - box-shadow:none; -} -.sorticon.descending .jqx-grid-column-sorticon-light { - margin-top:-1px; -} -.sorticon.ascending .jqx-grid-column-sorticon-light { - margin-top:1px; -} - -.jqx-dropdownlist-state-normal-light .jqx-icon-arrow-down-light, -.jqx-combobox-state-normal-light .jqx-icon-arrow-down-light, -.sorticon.descending .jqx-grid-column-sorticon-light, -.jqx-tree-item-arrow-expand-light, - .jqx-expander-header-light .jqx-icon-arrow-down - { - transform: rotate(0deg); - transition: transform 0.2s ease-out; -} -.jqx-expander-header-light .jqx-icon-arrow-up { - transform: rotate(180deg); - transition: transform 0.2s ease-out; - background-image: url('images/metro-icon-down.png'); +.jqx-warning-light.jqx-input-bar-light:before { + background: #f0ad4e !important; } - -.jqx-tree-item-arrow-collapse-light -{ - transform: rotate(-90deg); - background-image: url('images/metro-icon-down.png'); - background-repeat: no-repeat; - background-position: center; - transition: transform 0.2s ease-out; -} -.jqx-dropdownlist-state-selected-light .jqx-icon-arrow-down-light, -.jqx-combobox-state-selected-light .jqx-icon-arrow-down-light, -.sorticon.ascending .jqx-grid-column-sorticon-light - { - transform: rotate(180deg); - transition: transform 0.2s ease-out; -} -.jqx-combobox-state-selected-light .jqx-icon-arrow-down-light{ - left:0px; -} - -.jqx-primary .jqx-icon-arrow-down-light, .jqx-warning .jqx-icon-arrow-down-light, .jqx-danger .jqx-icon-arrow-down-light, .jqx-success .jqx-icon-arrow-down-light, .jqx-info .jqx-icon-arrow-down-light { - background-image: url('images/metro-icon-down-white.png'); -} -.jqx-primary .jqx-icon-arrow-down-selected-light, .jqx-warning .jqx-icon-arrow-down-selected-light, .jqx-danger .jqx-icon-arrow-down-selected-light, .jqx-success .jqx-icon-arrow-down-selected-light, .jqx-info .jqx-icon-arrow-down-selected-light { - background-image: url('images/metro-icon-down-white.png'); -} -.jqx-primary .jqx-icon-arrow-down-hover-light, .jqx-warning .jqx-icon-arrow-down-hover-light, .jqx-danger .jqx-icon-arrow-down-hover-light, .jqx-success .jqx-icon-arrow-down-hover-light, .jqx-info .jqx-icon-arrow-down-hover-light { - background-image: url('images/metro-icon-down-white.png'); +.jqx-info-light.jqx-input-label-light { + color: #5bc0de !important; } -.jqx-primary .jqx-icon-arrow-up-light, .jqx-warning .jqx-icon-arrow-up-light, .jqx-danger .jqx-icon-arrow-up-light, .jqx-success .jqx-icon-arrow-up-light, .jqx-info .jqx-icon-arrow-up-light { - background-image: url('images/metro-icon-up-white.png'); -} -.jqx-primary .jqx-icon-arrow-up-selected-light, .jqx-warning .jqx-icon-arrow-up-selected-light, .jqx-danger .jqx-icon-arrow-up-selected-light, .jqx-success .jqx-icon-arrow-up-selected-light, .jqx-info .jqx-icon-arrow-up-selected-light { - background-image: url('images/metro-icon-up-white.png'); -} -.jqx-primary .jqx-icon-arrow-up-hover-light, .jqx-warning .jqx-icon-arrow-up-hover-light, .jqx-danger .jqx-icon-arrow-up-hover-light, .jqx-success .jqx-icon-arrow-up-hover-light, .jqx-info .jqx-icon-arrow-up-hover-light { - background-image: url('images/metro-icon-up-white.png'); -} - - -.jqx-primary .jqx-icon-arrow-left-light, .jqx-warning .jqx-icon-arrow-left-light, .jqx-danger .jqx-icon-arrow-left-light, .jqx-success .jqx-icon-arrow-left-light, .jqx-info .jqx-icon-arrow-left-light { - background-image: url('images/metro-icon-left-white.png'); -} -.jqx-primary .jqx-icon-arrow-left-selected-light, .jqx-warning .jqx-icon-arrow-left-selected-light, .jqx-danger .jqx-icon-arrow-left-selected-light, .jqx-success .jqx-icon-arrow-left-selected-light, .jqx-info .jqx-icon-arrow-left-selected-light { - background-image: url('images/metro-icon-left-white.png'); -} -.jqx-primary .jqx-icon-arrow-left-hover-light, .jqx-warning .jqx-icon-arrow-left-hover-light, .jqx-danger .jqx-icon-arrow-left-hover-light, .jqx-success .jqx-icon-arrow-left-hover-light, .jqx-info .jqx-icon-arrow-left-hover-light { - background-image: url('images/metro-icon-left-white.png'); -} -.jqx-primary .jqx-icon-arrow-right-light, .jqx-warning .jqx-icon-arrow-right-light, .jqx-danger .jqx-icon-arrow-right-light, .jqx-success .jqx-icon-arrow-right-light, .jqx-info .jqx-icon-arrow-right-light { - background-image: url('images/metro-icon-right-white.png'); -} -.jqx-primary .jqx-icon-arrow-right-selected-light, .jqx-warning .jqx-icon-arrow-right-selected-light, .jqx-danger .jqx-icon-arrow-right-selected-light, .jqx-success .jqx-icon-arrow-right-selected-light, .jqx-info .jqx-icon-arrow-right-selected-light { - background-image: url('images/metro-icon-right-white.png'); -} -.jqx-primary .jqx-icon-arrow-right-hover-light, .jqx-warning .jqx-icon-arrow-right-hover-light, .jqx-danger .jqx-icon-arrow-right-hover-light, .jqx-success .jqx-icon-arrow-right-hover-light, .jqx-info .jqx-icon-arrow-right-hover-light { - background-image: url('images/metro-icon-right-white.png'); +.jqx-info-light.jqx-input-bar-light:before { + background: #5bc0de !important; } .jqx-slider-tooltip-light.jqx-primary-slider, .jqx-slider-tooltip-light.jqx-primary-slider .jqx-fill-state-normal-light { - border-color: #1ca8dd; - background: #1ca8dd; + border-color: var(--jqx-primary); + background: var(--jqx-primary); } .jqx-slider-tooltip-light.jqx-success-slider, .jqx-slider-tooltip-light.jqx-success-slider .jqx-fill-state-normal-light { border-color: #5cb85c; @@ -1244,6 +428,1833 @@ background: #5bc0de; } + +.jqx-primary-light { + color: var(--jqx-primary) !important; + background: #fff !important; + border-color: var(--jqx-primary) !important; + text-shadow: none !important; +} + + .jqx-primary-light.jqx-dropdownlist-state-normal-light, + .jqx-primary-light.jqx-slider-button-light, + .jqx-primary-light.jqx-slider-slider-light, + .jqx-primary-light.jqx-combobox-arrow-normal-light, + .jqx-primary-light.jqx-combobox-arrow-hover-light, + .jqx-primary-light.jqx-action-button-light, + .jqx-primary-light:hover, + .jqx-primary-light:focus, + .jqx-primary-light:active, + .jqx-primary-light.active, + .jqx-primary-light.disabled, + .jqx-primary-light[disabled] { + color: #fff !important; + background: var(--jqx-primary) !important; + border-color: var(--jqx-primary) !important; + text-shadow: none !important; + } + + .jqx-fill-state-pressed-light.jqx-primary-light, + .jqx-primary-light:active, + .jqx-primary-light.active { + color: #fff !important; + background-color: var(--jqx-primary) !important; + border-color: var(--jqx-primary) !important; + text-shadow: none !important; + } + +.jqx-success-light { + color: #5cb85c !important; + background: #fff !important; + border-color: #5cb85c !important; + text-shadow: none !important; +} + + .jqx-success-light.jqx-dropdownlist-state-normal-light, + .jqx-success-light.jqx-slider-button-light, + .jqx-success-light.jqx-slider-slider-light, + .jqx-success-light.jqx-combobox-arrow-normal-light, + .jqx-success-light.jqx-combobox-arrow-hover-light, + .jqx-success-light.jqx-action-button-light, + .jqx-success-light:hover, + .jqx-success-light:focus, + .jqx-success-light:active, + .jqx-success-light.active, + .jqx-success-light.disabled, + .jqx-success-light[disabled] { + color: #fff !important; + background: #5cb85c !important; + border-color: #5cb85c !important; + text-shadow: none !important; + } + + .jqx-fill-state-pressed-light.jqx-success-light, + .jqx-success-light:active, + .jqx-success-light.active { + text-shadow: none !important; + color: #fff !important; + background: #5cb85c !important; + border-color: #5cb85c !important; + } + +.jqx-inverse-light { + text-shadow: none !important; + color: #666 !important; + background: #fff !important; + border-color: #cccccc !important; +} + + .jqx-inverse-light.jqx-dropdownlist-state-normal-light, + .jqx-inverse-light.jqx-slider-button-light, + .jqx-inverse-light.jqx-slider-slider-light, + .jqx-inverse-light.jqx-combobox-arrow-hover-light, + .jqx-inverse-light.jqx-combobox-arrow-normal-light, + .jqx-inverse-light.jqx-action-button-light, + .jqx-inverse-light:hover, + .jqx-inverse-light:focus, + .jqx-inverse-light:active, + .jqx-inverse-light.active, + .jqx-inverse-light.disabled, + .jqx-inverse-light[disabled] { + text-shadow: none !important; + color: #666 !important; + background: #cccccc !important; + border-color: #cccccc !important; + } + + .jqx-fill-state-pressed-light.jqx-inverse-light, + .jqx-inverse-light:active, + .jqx-inverse-light.active { + text-shadow: none !important; + color: #666 !important; + background: #cccccc !important; + border-color: #cccccc !important; + } + + +.jqx-danger-light { + text-shadow: none !important; + color: #d9534f !important; + background: #fff !important; + border-color: #d9534f !important; +} + + .jqx-danger-light.jqx-dropdownlist-state-normal-light, + .jqx-danger-light.jqx-slider-button-light, + .jqx-danger-light.jqx-slider-slider-light, + .jqx-danger-light.jqx-combobox-arrow-hover-light, + .jqx-danger-light.jqx-combobox-arrow-normal-light, + .jqx-danger-light.jqx-action-button-light, + .jqx-danger-light:hover, + .jqx-danger-light:focus, + .jqx-danger-light:active, + .jqx-danger-light.active, + .jqx-danger-light.disabled, + .jqx-danger-light[disabled] { + text-shadow: none !important; + color: #fff !important; + background: #d9534f !important; + border-color: #d9534f !important; + } + + .jqx-fill-state-pressed-light.jqx-danger-light, + .jqx-danger-light:active, + .jqx-danger-light.active { + text-shadow: none !important; + color: #fff !important; + background: #d9534f !important; + border-color: #d9534f !important; + } + +.jqx-validator-error-label-light { + color: #d9534f !important; +} + +.jqx-warning-light { + text-shadow: none !important; + color: #f0ad4e !important; + background: #fff !important; + border-color: #f0ad4e !important; +} + + .jqx-warning-light.jqx-dropdownlist-state-normal-light, + .jqx-warning-light.jqx-slider-button-light, + .jqx-warning-light.jqx-slider-slider-light, + .jqx-warning-light.jqx-combobox-arrow-hover-light, + .jqx-warning-light.jqx-combobox-arrow-normal-light, + .jqx-warning-light.jqx-action-button-light, + .jqx-warning-light:hover, + .jqx-warning-light:focus, + .jqx-warning-light:active, + .jqx-warning-light.active, + .jqx-warning-light.disabled, + .jqx-warning-light[disabled] { + text-shadow: none !important; + color: #fff !important; + background: #f0ad4e !important; + border-color: #f0ad4e !important; + } + + .jqx-fill-state-pressed-light.jqx-warning-light, + .jqx-warning-light:active, + .jqx-warning-light.active { + text-shadow: none !important; + color: #fff !important; + background: #f0ad4e !important; + border-color: #f0ad4e !important; + } + + +.jqx-info-light { + text-shadow: none !important; + color: #5bc0de !important; + background: #fff !important; + border-color: #5bc0de !important; +} + + .jqx-info-light.jqx-dropdownlist-state-normal-light, + .jqx-info-light.jqx-slider-button-light, + .jqx-info-light.jqx-slider-slider-light, + .jqx-info-light.jqx-combobox-arrow-hover-light, + .jqx-info-light.jqx-combobox-arrow-normal-light, + .jqx-info-light.jqx-action-button-light, + .jqx-info-light:hover, + .jqx-info-light:focus, + .jqx-info-light:active, + .jqx-info-light.active, + .jqx-info-light.disabled, + .jqx-info-light[disabled] { + color: #fff !important; + background: #5bc0de !important; + border-color: #5bc0de !important; + text-shadow: none !important; + } + + .jqx-fill-state-pressed-light.jqx-info-light, + .jqx-info-light:active, + .jqx-info-light.active { + text-shadow: none !important; + color: #fff !important; + background: #5bc0de !important; + border-color: #5bc0de !important; + } + +.jqx-fill-state-pressed-light { + background-image: none; + outline: 0; +} + +.jqx-grid-group-column-light { + border-color: transparent; +} +.jqx-grid-column-menubutton-light { + border-width: 0px; +} +.jqx-grid-groups-row-light > span { + padding-left: 4px; +} +.jqx-grid-column-filterbutton-light, +.jqx-grid-column-menubutton-light{ + background-image: none; + font-family: 'jqx-icons'; + display: flex; + justify-content: center; + align-items: center; + margin-top: 0px; +} + +.jqx-grid-column-filterbutton-light:after { + content: var(--jqx-icon-filter); + background: var(--jqx-surface); + color: var(--jqx-surface-color); +} +.jqx-grid-column-menubutton-light:after { + content: var(--jqx-icon-menu) !important; + background: var(--jqx-surface); + color: var(--jqx-surface-color); +} +.jqx-datatable-dark .jqx-widget-header-dark .jqx-grid-column-header-dark { + border-right-color: var(--jqx-border); +} + +.jqx-datatable-light .jqx-widget-header:not(:hover) .jqx-grid-column-header-light{ + border-right-color: transparent !important; +} + +.jqx-datatable-light td.jqx-grid-cell-light, +.jqx-treegrid-light .jqx-grid-cell-light{ + padding-top: 10px; + padding-bottom: 9px; + font-size: 14px; + border-left: none !important; +} + +.jqx-grid-cell-light { + background: var(--jqx-background); + color: var(--jqx-background-color); + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.jqx-grid-cell-alt-light { + background: #fafafa; + color: var(--jqx-surface-color); +} + +.jqx-grid-pager-top-light .jqx-button-light, +.jqx-grid-pager-light .jqx-button-light { + color: inherit !important; + background-color: transparent !important; + border-color: transparent !important; + position: relative; + top: 0px; + border-radius: 4px; + display: flex; + font-size: 16px; + justify-content: center; + align-content: center; +} + +.jqx-grid-pager-input-light { + padding:0px !important; +} + +.jqx-grid-pager-top-light .jqx-button-light > div, +.jqx-grid-pager-light .jqx-button-light > div { + top: 0px; + position: relative; + left: 0px; + display: flex; + align-items: center; + margin-left: 0px !important; +} + +.jqx-grid-pager-top-light .jqx-button-light.jqx-fill-state-hover, +.jqx-grid-pager-light .jqx-button-light.jqx-fill-state-hover +{ + color: var(--jqx-background-color-hover); + background: var(--jqx-background-hover); + border-color: var(--jqx-background-hover); + box-shadow: none; +} +.jqx-grid-pager-top-light .jqx-button-light.jqx-fill-state-pressed, +.jqx-grid-pager-light .jqx-button-light.jqx-fill-state-pressed +{ + background: var(--jqx-primary); +} +.jqx-grid-pager-light .jqx-button-light:hover:after, +.jqx-grid-pager-top-light .jqx-button-light:hover:after, +.jqx-grid-pager-top-light .jqx-button-light.jqx-fill-state-pressed-light:after, +.jqx-grid-pager-light .jqx-button-light.jqx-fill-state-pressed-light:after { + content: ''; + position: absolute; + width: calc(100% - 4px); + height: calc(100% - 4px); + border: 2px solid var(--jqx-background); + border-radius: 4px; + left:0px; + top:0px; +} +.jqx-grid-pager-top-light .jqx-grid-pager-number-light, +.jqx-grid-pager-light .jqx-grid-pager-number-light { + background-color: transparent; + border-color: transparent; + color: inherit; + font-size:14px; + padding: 6px 10px; + border-radius: 4px; + + position: relative; +} + +.jqx-grid-pager-top-light .jqx-grid-pager-number-light:hover, +.jqx-grid-pager-light .jqx-grid-pager-number-light:hover { + background: var(--jqx-background-hover); + color:var(--jqx-background-color-hover) !important; + font-size: var(--jqx-font-size); +} +.jqx-grid-pager-light .jqx-grid-pager-number-light:hover:after, +.jqx-grid-pager-top-light .jqx-grid-pager-number-light:hover:after, +.jqx-grid-pager-top-light .jqx-grid-pager-number-light.jqx-fill-state-pressed-light:after, +.jqx-grid-pager-light .jqx-grid-pager-number-light.jqx-fill-state-pressed-light:after { + content: ''; + position: absolute; + width: calc(100% - 4px); + height: calc(100% - 4px); + border: 2px solid var(--jqx-background); + border-radius: var(--jqx-border-radius); + left:0px; + top:0px; +} +.jqx-grid-pager-top-light .jqx-grid-pager-number-light.jqx-fill-state-pressed-light , +.jqx-grid-pager-light .jqx-grid-pager-number-light.jqx-fill-state-pressed-light { + font-weight: bold !important; + background: var(--jqx-primary); + color:var(--jqx-background) !important; +} + +.jqx-grid-column-menubutton-light { + background-color: transparent; + border-color: var(--jqx-border) !important; +} + +.jqx-cell-light { + font-size: 13px; +} + +.jqx-calendar-light > div { + padding: 0px; + box-sizing: border-box; +} +.jqx-calendar-month-light { + width: 90%; + position: relative; + left: 5%; +} +.jqx-calendar-title-navigation-light { + font-size: 20px; + padding: 0px 20px; +} +.jqx-calendar-row-header-light, .jqx-calendar-top-left-header-light { + background-color: var(--jqx-background); + border: 0px solid var(--jqx-background); +} + +.jqx-calendar-column-header-light { + background-color: var(--jqx-background); + border-top: 1px solid var(--jqx-background); + border-bottom: 1px solid var(--jqx-border); + font-size: 12px; + color: var(--jqx-background-color); +} + +.jqx-expander-header-light { + padding-top: 10px; + padding-bottom: 10px; +} + +.jqx-ribbon-header-vertical-light, .jqx-widget-header-vertical-light { + background: var(--jqx-background); +} + +.jqx-scrollbar-state-normal-light { + background-color: var(--jqx-scrollbar-background); + border: 1px solid var(--jqx-scrollbar-background); + border-left-color: var(--jqx-scrollbar-border); +} + +.jqx-scrollbar-thumb-state-normal-light, .jqx-scrollbar-thumb-state-normal-horizontal-light { + background: var(--jqx-scrollbar-thumb-background); + border-color: var(--jqx-scrollbar-thumb-border); + border-radius: 0px; +} + +.jqx-scrollbar-thumb-state-hover-light, .jqx-scrollbar-thumb-state-hover-horizontal-light { + background: var(--jqx-scrollbar-thumb-background-hover); + border-color: var(--jqx-scrollbar-thumb-border-hover); + box-shadow: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; +} + +.jqx-progressbar-light { + background: var(--jqx-background) !important; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.jqx-progressbar-value-light, .jqx-splitter-collapse-button-horizontal-light { + background: var(--jqx-primary); +} + +.jqx-splitter-collapse-button-vertical-light, .jqx-progressbar-value-vertical-light { + background: var(--jqx-primary); +} + +.jqx-scrollbar-mobile-light .jqx-scrollbar-button-state-normal { + display: none !important; +} + +.jqx-scrollbar-button-state-hover-light { + color: var(--jqx-scrollbar-button-color-hover); + background: var(--jqx-scrollbar-button-background-hover); + border-color: var(--jqx-scrollbar-button-border-hover); +} + + +.jqx-scrollbar-button-state-pressed-light { + color: var(--jqx-scrollbar-button-color-pressed); + background: var(--jqx-scrollbar-button-background-pressed); + border-color: var(--jqx-scrollbar-button-border-pressed); +} + +.jqx-splitter-splitbar-vertical-light, +.jqx-splitter-splitbar-horizontal-light { + background: var(--jqx-scrollbar-thumb-background); + border-color: var(--jqx-scrollbar-thumb-border); +} + +.jqx-scrollbar-thumb-state-pressed-light, +.jqx-scrollbar-thumb-state-pressed-horizontal-light, +.jqx-scrollbar-button-state-pressed-light { + background: var(--jqx-scrollbar-thumb-background-pressed); + border-color: var(--jqx-scrollbar-thumb-border-pressed); + box-shadow: none; +} + +.jqx-grid-column-sortdescbutton-light, jqx-grid-column-filterbutton-light, .jqx-grid-column-sortascbutton-light { + background-color: transparent; + border-style: solid; + border-width: 0px 0px 0px 0px; + border-color: var(--jqx-border); +} + +.jqx-menu-vertical-light { + background: var(--jqx-background); + filter: none; +} + +.jqx-grid-bottomright-light, .jqx-panel-bottomright-light, .jqx-listbox-bottomright-light { + background-color: var(--jqx-scrollbar-background); +} + +.jqx-window-light, .jqx-tooltip-light { + box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15); +} +.jqx-tooltip-light, .jqx-tooltip-light.jqx-popup-light, .jqx-tooltip-light .jqx-fill-state-normal-light { + background: var(--jqx-primary); + border-color: var(--jqx-primary); + box-shadow:none; + color: var(--jqx-primary-color); +} +.jqx-docking-light .jqx-window-light { + box-shadow: none; +} + +.jqx-docking-panel-light .jqx-window-light { + box-shadow: none; +} + +.jqx-checkbox-light { + line-height:20px; + overflow: visible; +} +.jqx-radiobutton-light { + overflow: visible; + box-shadow: none; + -webkit-box-shadow: none; + -moz-box-shadow: none; + background-repeat: no-repeat; + background: none; + line-height:20px; +} + +.jqx-radiobutton-light-light, .jqx-radiobutton-hover-light { + border-radius: 100%; + background-repeat: no-repeat; + transition: background-color ease-in .3s; +} + +.jqx-radiobutton-check-checked-light { + filter: none; + background: var(--jqx-background); + background-repeat: no-repeat; + border-radius: 100%; +} + +.jqx-radiobutton-check-indeterminate-light { + filter: none; + background: var(--jqx-background); + border-radius: 100%; +} + +.jqx-radiobutton-check-indeterminate-disabled-light { + filter: none; + background: var(--jqx-background); + opacity: 0.7; + border-radius: 100%; +} + +.jqx-checkbox-default-light, +.jqx-radiobutton-default-light + { + border-width: 1px; + border-color: var(--jqx-border); + background-color: var(--jqx-background); + overflow: visible; +} + +.jqx-tree-grid-expand-button-light, +.jqx-tree-grid-collapse-button-light { + font-size: 16px; +} +.jqx-grid-table-light .jqx-grid-cell:first-child { + padding-left: 10px; +} +.jqx-tree-grid-title-light { + margin-left: 5px; +} +.jqx-tree-light .jqx-checkbox-light .jqx-checkbox-default-light, +.jqx-checkbox-light[checked] .jqx-checkbox-default-light, +.jqx-tree-grid-checkbox[checked].jqx-checkbox-default-light, +.jqx-radiobutton-light[checked] .jqx-radiobutton-default-light + { + color: var(--jqx-primary-color); + background-color: var(--jqx-primary); + border-color: var(--jqx-primary); +} +.jqx-menu-item-disabled-light { + color: inherit; +} + +.jqx-grid-light .jqx-checkbox-default-light { + border-radius: 0px; +} +.jqx-checkbox-check-checked-light { + background: none; + font-family: jqx-icons; + display: flex; + justify-content: center; +} + +.jqx-checkbox-check-checked-light:after { + content: var(--jqx-icon-check); +} +.jqx-checkbox-check-indeterminate-light { + width:14px !important; + height:14px !important; + position:relative; + top: 1px; + left: 1px; + background: var(--jqx-background); +} +.jqx-tree-light .jqx-checkbox-check-indeterminate-light { + width:12px !important; + height:12px !important; + top: 2px; + left:2px; +} + +.jqx-checkbox-hover-light, +.jqx-radiobutton-hover-light { + background-color: var(--jqx-primary); + border-color: var(--jqx-primary); +} + + +.jqx-slider-slider-light { + transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease; +} + +.jqx-slider-slider-light:active { + transform: scale(1.2); + box-shadow: rgba(0,0,0,0.3) 0 0 10px; +} +.jqx-slider-light[discrete] .jqx-slider-slider-light:active + { + transform: scaleX(0); + +} +.jqx-slider-slider-horizontal-light { + background: var(--jqx-primary); +} +.jqx-slider-slider-vertical-light { + background: var(--jqx-primary); +} +.jqx-slider-tooltip-light { + width: 25px; + height: 25px; + transform-origin: 50% 100%; + border-radius: 50%; + transform: scale(0) rotate(45deg); + padding:0px; + background: transparent !important; +} +.jqx-slider-tooltip-light.init { + transform: scale(1) rotate(45deg); +} +.jqx-slider-tooltip-light.hide { + transition: transform 0.2s ease; + transform-origin:50% 100%; + transform: scale(0) rotate(45deg); +} +.jqx-slider-tooltip-light.show { + transition: transform 0.2s ease; + transform: scale(1) rotate(45deg); +} + + +.jqx-slider-tooltip-light .jqx-tooltip-arrow-t-b, +.jqx-slider-tooltip-light .jqx-tooltip-arrow-l-r { + display:none; + visibility:hidden; +} + +.jqx-slider-tooltip-light, .jqx-slider-tooltip-light .jqx-fill-state-normal-light { + border-radius: 15px 15px 0px; + display: flex; + align-items: center; + justify-content: center; + background: var(--jqx-primary); + color: var(--jqx-primary-color); + font-size:11px; +} +.jqx-slider-tooltip-light.far, .jqx-slider-tooltip-light.far .jqx-fill-state-normal-light { + border-radius: 0px 15px 15px 15px; +} +.jqx-slider-tooltip-light.vertical, .jqx-slider-tooltip-light.vertical .jqx-fill-state-normal-light { + border-radius: 15px 0px 15px 15px; +} +.jqx-slider-tooltip-light.vertical.far, .jqx-slider-tooltip-light.vertical.far .jqx-fill-state-normal-light { + border-radius: 15px 15px 15px 0px; +} +.jqx-slider-tooltip-light { + background:transparent; + border:none !important; + box-shadow:none; +} +.jqx-slider-tooltip-light .jqx-tooltip-main-light { + top: -7px; + right: 11px; +} +.jqx-slider-tooltip-light.far .jqx-tooltip-main-light { + top: 3px; + right: 4px; +} +.jqx-slider-tooltip-light.vertical .jqx-tooltip-main-light { + top: -3px; + right: 3px; +} +.jqx-slider-tooltip-light .jqx-tooltip-text { + background: transparent; + border:none; + padding: 0px; + overflow:visible; +} +.jqx-slider-tooltip-light .jqx-tooltip-text>span { + transform: rotate(-45deg); +} +.jqx-slider-tooltip-light.range { + width: 35px; + height:35px; +} + +.jqx-slider-rangebar-light { + border-color: var(--jqx-primary); + background: var(--jqx-primary); +} + +.jqx-slider-track-horizontal-light, .jqx-slider-track-vertical-light { + border-color: var(--jqx-border); + background: var(--jqx-background); +} + +.jqx-slider-button-light { + -moz-border-radius: 100%; + -webkit-border-radius: 100%; + border-radius: 100%; +} +.jqx-slider-button-light.jqx-fill-state-normal-light, +.jqx-slider-button-light.jqx-fill-state-hover-light, +.jqx-slider-button-light.jqx-fill-state-pressed-light +{ + background: transparent !important; +} + +.jqx-tree-item-light, +.jqx-tree-item-selected { + padding: 6px; + border-radius: 4px; +} +.jqx-listitem-element-light .jqx-checkbox-default-light { + border-radius: 0px; +} +.jqx-listitem-state-hover-light, +.jqx-listitem-state-selected-light, +.jqx-listitem-state-normal-light { + border-radius: 0; + margin:0px; +} + +.jqx-scheduler-edit-dialog-label-light { + font-size: 12px; + text-transform: uppercase; + padding-top: 6px; + padding-bottom: 6px; + +} +.jqx-scheduler-edit-dialog-field-light { + padding-top: 6px; + padding-bottom: 6px; +} +.jqx-scheduler-edit-dialog-label-rtl-light { + line-height: 35px; + padding-top: 6px; + padding-bottom: 6px; +} +.jqx-scheduler-edit-dialog-field-rtl-light { + line-height: 35px; + padding-top: 6px; + padding-bottom: 6px; +} +.jqx-menu-horizontal-light { + height: auto !important; +} +.jqx-menu-horizontal-light .jqx-menu-item-top-light { + padding: 8px; +} +.jqx-menu-item-top-light, +.jqx-menu-item-light { + padding: 8px; +} +/*applied to a list item when the item is selected.*/ +.jqx-listitem-state-hover-light, .jqx-menu-item-hover-light, .jqx-tree-item-hover-light, .jqx-calendar-cell-hover-light, .jqx-grid-cell-hover-light, +.jqx-input-popup-light .jqx-fill-state-hover-light, +.jqx-input-popup-light .jqx-fill-state-pressed-light { + color: var(--jqx-background-color-hover) !important; + border-color: var(--jqx-background-hover); + text-decoration: none; + background-color: var(--jqx-background-hover); + background-repeat: repeat-x; + outline: 0; + background: var(--jqx-background-hover); + box-shadow: none; + background-position: 0 0; +} + +.jqx-scheduler-cell-hover-light { + border-color: var(--jqx-primary) !important; + background: var(--jqx-primary) !important; + color: var(--jqx-background) !important; +} + +.jqx-listitem-state-selected-light, .jqx-menu-item-selected-light, .jqx-tree-item-selected-light, .jqx-calendar-cell-selected-light, .jqx-grid-cell-selected-light, +.jqx-menu-item-top-selected-light, .jqx-grid-selectionarea-light, .jqx-input-button-header-light, .jqx-input-button-innerHeader-light { + color: var(--jqx-primary-color) !important; + border-color: var(--jqx-primary) !important; + background: var(--jqx-primary) !important; /* Old browsers */ + box-shadow: none; +} + +.jqx-grid-cell-light .jqx-button-light, .jqx-grid-cell-light .jqx-button-light.jqx-fill-state-hover-light, .jqx-grid-cell-light .jqx-button-light.jqx-fill-state-pressed-light { + box-shadow: none; + transition: none; +} + +.jqx-menu-popup-light{ + opacity: 0; + transform-origin: top left; + box-shadow: 0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2); + background: var(--jqx-background) !important; +} +.jqx-menu-popup-light.top { + transform: scaleY(0); + transition: transform 0.2s ease-in-out, opacity 0.3s ease-in-out; +} + +.jqx-menu-popup-light.horizontal { + transform: scaleX(0); + transition: transform 0.2s ease-in-out, opacity 0.3s ease-in-out; +} + +.jqx-menu-popup-light.show { + transform: scale(1); + opacity: 1; +} +.jqx-popup-light { + border: 1px solid var(--jqx-border); + background: var(--jqx-background); + box-shadow: 0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 3px rgba(0,0,0,.12),0 4px 15px 0 rgba(0,0,0,.2); +} +.jqx-menu-popup-light .jqx-popup-light { + box-shadow: none; + border: none; +} + +.jqx-datatable-light .jqx-grid-column-sortdescbutton-light, +.jqx-datatable-light .jqx-grid-column-sortascbutton-light { + display: flex; + align-items: center; +} + +.jqx-grid-column-sortascbutton-light, +.jqx-expander-arrow-bottom-light, +.jqx-window-collapse-button-light, +.jqx-menu-item-arrow-up-light, +.jqx-menu-item-arrow-up-selected-light, +.jqx-menu-item-arrow-top-up-light, +.jqx-icon-arrow-up-light, +.jqx-icon-arrow-up-hover-light, +.jqx-icon-arrow-up-selected-light { + background-image: none; +} + +.jqx-grid-column-sortascbutton-light, +.jqx-expander-arrow-bottom-light, +.jqx-window-collapse-button-light, +.jqx-menu-item-arrow-up-light, +.jqx-menu-item-arrow-up-selected-light, +.jqx-menu-item-arrow-top-up-light, +.jqx-icon-arrow-up-light, +.jqx-icon-arrow-up-hover-light, +.jqx-icon-arrow-up-selected-light { + background-image: none; + font-family: jqx-icons; +} +.jqx-window-collapse-button-light { + position: relative; + right: 10px; + font-weight: bold; + font-size: 18px; + margin-top:0px; +} +.jqx-grid-column-sortascbutton-light:after, +.jqx-expander-arrow-bottom-light:after, +.jqx-window-collapse-button-light:after, +.jqx-menu-item-arrow-up-light:after, +.jqx-menu-item-arrow-up-selected-light:after, +.jqx-menu-item-arrow-top-up-light:after, +.jqx-icon-arrow-up-light:after, +.jqx-icon-arrow-up-hover-light:after, +.jqx-icon-arrow-up-selected-light:after { + content: var(--jqx-icon-arrow-up); +} + +.jqx-widget-light .jqx-grid-group-expand-light, +.jqx-grid-group-expand-light, +.jqx-grid-column-sortdescbutton-light, +.jqx-expander-arrow-top-light, +.jqx-window-collapse-button-collapsed-light, +.jqx-menu-item-arrow-down-light, +.jqx-menu-item-arrow-down-selected-light, +.jqx-menu-item-arrow-down-light, +.jqx-icon-arrow-down-light, +.jqx-icon-arrow-down-hover-light, +.jqx-icon-arrow-down-selected-light { + background-image: none; + font-family: jqx-icons; +} +.jqx-widget-light .jqx-grid-group-expand-light:after, +.jqx-grid-group-expand-light:after, +.jqx-grid-column-sortdescbutton-light:after, +.jqx-expander-arrow-top-light:after, +.jqx-window-collapse-button-collapsed-light:after, +.jqx-menu-item-arrow-down-light:after, +.jqx-menu-item-arrow-down-selected-light:after, +.jqx-menu-item-arrow-down-light:after, +.jqx-icon-arrow-down-light:after, +.jqx-icon-arrow-down-hover-light:after, +.jqx-icon-arrow-down-selected-light:after { + content: var(--jqx-icon-arrow-down); +} + +.jqx-tabs-arrow-left-light, +.jqx-menu-item-arrow-left-selected-light, +.jqx-menu-item-arrow-top-left, +.jqx-icon-arrow-left-light, +.jqx-icon-arrow-down-left-light, +.jqx-icon-arrow-left-selected-light { + background-image: none; + font-family: jqx-icons; + background-repeat: no-repeat; + background-position: center; +} +.jqx-tabs-arrow-left-light:after, +.jqx-menu-item-arrow-left-selected-light:after, +.jqx-menu-item-arrow-top-left:after, +.jqx-icon-arrow-left-light:after, +.jqx-icon-arrow-down-left-light:after, +.jqx-icon-arrow-left-selected-light:after { + content: var(--jqx-icon-arrow-left); +} + +.jqx-widget-light .jqx-grid-group-collapse-light, +.jqx-grid-group-collapse-light, +.jqx-tabs-arrow-right-light, +.jqx-menu-item-arrow-right-selected-light, +.jqx-menu-item-arrow-top-right-light, +.jqx-icon-arrow-right-light, +.jqx-icon-arrow-right-hover-light, +.jqx-icon-arrow-right-selected-light { + background-image: none; + font-family: jqx-icons; + background-repeat: no-repeat; + background-position: center; +} +.jqx-widget-light .jqx-grid-group-collapse-light:after, +.jqx-grid-group-collapse-light:after, +.jqx-tabs-arrow-right-light:after, +.jqx-menu-item-arrow-right-selected-light:after, +.jqx-menu-item-arrow-top-right-light:after, +.jqx-icon-arrow-right-light:after, +.jqx-icon-arrow-right-hover-light:after, +.jqx-icon-arrow-right-selected-light:after { + content: var(--jqx-icon-arrow-right); +} + +.jqx-tree-item-arrow-collapse-rtl-light, +.jqx-tree-item-arrow-collapse-hover-rtl-light { + background-image: none; +} + +.jqx-tree-item-arrow-collapse-rtl-light:after, +.jqx-tree-item-arrow-collapse-hover-rtl-light:after { + content: var(--jqx-icon-arrow-left); +} + +.jqx-menu-item-arrow-left-selected-light { + background-image: none; +} + +.jqx-menu-item-arrow-right-selected-light { + background-image: none; +} + +.jqx-input-button-content-light { + font-size: 10px; +} + +.jqx-widget .jqx-grid-column-header-cell-light { + padding-top: 8px; + padding-bottom: 8px; + height:30px; +} + +.jqx-widget .jqx-grid-row-cell-light { + padding-top: 8px; + padding-bottom: 8px; + height:30px; +} + +.jqx-listbox-container-light, +.jqx-calendar-container-light { + margin-left: -10px; +} +.jqx-calendar-container-light .jqx-popup, +.jqx-calendar-light.jqx-popup, +.jqx-listbox-light.jqx-popup { + margin-left: 9px; +} + +.jqx-dropdownbutton-popup, +.jqx-calendar-light.jqx-popup, +.jqx-listbox-light.jqx-popup, +.jqx-grid-menu.jqx-popup { + transition: transform 0.25s ease-in-out, opacity 0.35s ease-in-out; + transform: scaleY(0); + opacity: 0; + transform-origin: top left; + display: block !important; +} + +.jqx-dropdownbutton-popup.jqx-popup-show, +.jqx-calendar-light.jqx-popup-show, +.jqx-listbox-light.jqx-popup-show, +.jqx-grid-menu.jqx-popup-show { + transform: scaleY(1); + opacity: 1; +} + +.jqx-widget-light .jqx-grid-cell { + border-color: var(--jqx-border); + color: var(--jqx-background-color); +} + +.jqx-widget-light .jqx-grid-column-header, .jqx-widget-light .jqx-grid-group-cell { + border-color: var(--jqx-border); + color: var(--jqx-surface-color); + background: var(--jqx-surface); +} + +.jqx-widget-light .jqx-grid-column-header-light { + border-color: var(--jqx-border); + font-size: 12px; + color: var(--jqx-surface-color); + font-weight: 500; +} + + +.jqx-widget-light .jqx-widget-header-light:hover .jqx-grid-column-header-light { + border-right-color: var(--jqx-border) !important; + border-bottom-color: var(--jqx-border) !important; +} +.jqx-widget-light .jqx-grid-cell-light { + border-color: var(--jqx-border); +} +.jqx-widgets-light .jqx-scheduler-cell-selected span{ + color: var(--jqx-background) !important; +} +.jqx-scheduler-time-column-light, +.jqx-scheduler-toolbar-light { + background: var(--jqx-surface) !important; + color: var(--jqx-surface-color) !important; + border-color: var(--jqx-border) !important; +} + +.jqx-widget-light.jqx-scheduler-light .jqx-grid-cell-light, +.jqx-widget-light.jqx-scheduler-light .jqx-grid-column-header-light { + border-color: transparent; + border-bottom-color: var(--jqx-border); +} + +.jqx-widget-light.jqx-scheduler-light td.jqx-grid-cell-light span{ + font-size: 10px; + color: var(--jqx-background-color); +} +.jqx-widget-light.jqx-scheduler-light td.jqx-grid-cell-light.jqx-scheduler-cell-hover span, +.jqx-widget-light.jqx-scheduler-light td.jqx-grid-cell-light.jqx-scheduler-cell-selected span{ + color:var(--jqx-primary-color); +} + +.jqx-passwordinput-password-icon-light, +.jqx-passwordinput-password-icon-rtl-light { + background-image: none; + font-family: jqx-icons; + color:var(--jqx-background-color); +} +.jqx-passwordinput-password-icon-light:after, +.jqx-passwordinput-password-icon-rtl-light:after { + content: var(--jqx-icon-visibility); +} + +.jqx-combobox-light .jqx-icon-close-light { + background-image: none; + font-family: jqx-icons; +} + +.jqx-combobox-multi-item-light { + height: 30px; + display: flex; + justify-content: center; + align-items: center; +} +.jqx-combobox-multi-item-light a { + margin-right: 10px; +} +.jqx-combobox-light .jqx-icon-close-light:after { + content: var(--jqx-icon-close); +} +.jqx-combobox-light, .jqx-input-light { + border-color: var(--jqx-border); + color: var(--jqx-background-color); + background-color: var(--jqx-background); +} + +.jqx-combobox-content-light, +.jqx-datetimeinput-content-light + { + border-color: transparent; +} + + +.jqx-combobox-content-focus-light, +.jqx-combobox-state-focus-light, +.jqx-numberinput-focus-light { + outline: none; +} + +.jqx-input-group-light { + position: relative; + display: inline-block; + overflow: visible; + border: none; + box-shadow: none; +} + + .jqx-input-group-light input { + width: 100%; + height: 100%; + box-sizing: border-box; + } + .jqx-input-group-light textarea { + width: 100%; + height: 100%; + outline: none; + resize: none; + border-left: none; + border-right: none; + border-top: none; + border-bottom-color: var(--jqx-border); + } +.jqx-numberinput-light, +.jqx-maskedinput-light + { + position:relative; +} +.jqx-numberinput-light input { + height:100% !important; +} + +.jqx-input-light.jqx-validator-error-element { + border-color: transparent !important; + border-bottom: 1px solid #df2227 !important; +} +.jqx-input-light input, +.jqx-dropdownlist-state-normal-light, +.jqx-combobox-state-normal-light, +.jqx-numberinput-light, +.jqx-maskedinput-light, +.jqx-datetimeinput-light + { + background: var(--jqx-surface); + border-color: var(--jqx-surface); + border-radius: 0; + color: var(--jqx-surface-color); + box-shadow: none; + border-bottom: 1px solid var(--jqx-border); + outline: none; +} +.jqx-numberinput-light .jqx-action-button-light{ + border-radius: 0; + font-size:12px; +} +.jqx-numberinput-light .jqx-action-button-light > div { + width: 100%; + display: flex; + align-items: center; + justify-content: center; +} +.jqx-maskedinput-light, +.jqx-combobox-light, +.jqx-datetimeinput-light { + background: var(--jqx-background); + color: var(--jqx-background-color); + border-color: var(--jqx-background); + border-bottom: 1px solid var(--jqx-border); +} +.jqx-combobox-light .jqx-combobox-arrow-normal-light, +.jqx-datetimeinput-light .jqx-action-button-light, +.jqx-datetimeinput-light .jqx-action-button-rtl-light + { + background-color: var(--jqx-surface); + border-color: var(--jqx-surface); + color:var(--jqx-surface-color); +} + .jqx-datetimeinput-light, .jqx-datetimeinput-light > div, + .jqx-numberinput-light, .jqx-numberinput-light > div, + .jqx-maskedinput-light, .jqx-maskedinput-light > div, + .jqx-dropdownlist-state-normal-light, .jqx-dropdownlist-state-normal-light > div, .jqx-dropdownlist-state-normal-light > div > div, + .jqx-combobox-state-normal-light, .jqx-combobox-state-normal-light > div, .jqx-combobox-state-normal-light > div > div { + overflow: visible !important; + } + + .jqx-input-light input:focus { + border-radius: 0; + box-shadow: none; + } + +.jqx-input-light input, input[type="text"].jqx-input-light, input[type="password"].jqx-input-light, input[type="text"].jqx-widget-content-light, input[type="textarea"].jqx-widget-content-light, textarea.jqx-input-light { + font-size: var(--jqx-font-size); + font-family: var(--jqx-font-family); + resize: none; + background: var(--jqx-background); + color: var(--jqx-background-color); + border: none; + border-radius: 0; + box-sizing:border-box; + box-shadow: none; + border-bottom: 1px solid var(--jqx-border); +} + +input[type="text"].jqx-widget-content-light, +input[type="textarea"].jqx-widget-content-light { + height: 100%; +} + + +.jqx-input-label { + visibility:inherit; +} +.jqx-input-bar{ + visibility:inherit; +} +input:focus ~ .jqx-input-label-light, +textarea:focus ~ .jqx-input-label-light, +.jqx-input-widget-light[hint=true] .jqx-input-label, +.jqx-text-area-light[hint=true] .jqx-input-label, +.jqx-dropdownlist-state-selected-light .jqx-input-label, +.jqx-dropdownlist-state-normal-light[hint=true] .jqx-input-label, +.jqx-combobox-state-normal-light[hint=true] .jqx-input-label, +.jqx-combobox-light .jqx-input-label.focused, +.jqx-dropdownlist-light .jqx-input-label.focused, +.jqx-datetimeinput-light[hint=true] .jqx-input-label, +.jqx-maskedinput-light[hint=true] .jqx-input-label, +.jqx-numberinput-light[hint=true] .jqx-input-label, +.jqx-formattedinput-light[hint=true] .jqx-input-label + { + top: -15px; + font-size: 12px; + color: var(--jqx-primary); + opacity: 1; +} +.jqx-dropdownlist-light[default-placeholder="true"] .jqx-input-label { + visibility: hidden; +} + + +input:focus ~ .jqx-input-bar:before, +textarea:focus ~ .jqx-input-bar:before, +.jqx-dropdownlist-state-selected-light .jqx-input-bar:before, +.jqx-dropdownlist-light .jqx-input-bar.focused:before, +.jqx-combobox-light .jqx-input-bar.focused:before, +.jqx-complex-input-group-light .jqx-input-bar.focused::before, +.jqx-combobox-state-selected-light .jqx-input-bar:before { + width: 100%; +} +.jqx-complex-input-group-light .jqx-fill-state-normal-light { + border-color: var(--jqx-border); +} + +.jqx-input-widget-light.jqx-rtl > input { + direction: rtl +} + +.jqx-input-label-light { + color: var(--jqx-background-color); + font-size: 14px; + font-weight: normal; + position: absolute; + pointer-events: none; + left: 2px; + top:10px; + opacity: 0; + top: calc(50% - 7px); + transition: 300ms ease all; +} +.jqx-input-label.initial { + transition: none; +} +.jqx-input-bar-light { + position: relative; + display: block; + z-index:1; +} + + .jqx-input-bar-light:before { + content: ''; + height: 2px; + width: 0; + bottom: 0px; + position: absolute; + background: var(--jqx-primary); + transition: 300ms ease all; + left: 0%; + } +.jqx-formatted-input-spin-button-light, .jqx-input-group-addon-light { + border-color: var(--jqx-background); + color: var(--jqx-background-color); + background: var(--jqx-background); +} +.jqx-dropdownlist-state-selected-light, +.jqx-combobox-state-selected-light { + color: var(--jqx-primary); + background: var(--jqx-primary-color); + border-color: var(--jqx-primary-color); +} + + +.jqx-dropdownlist-state-normal-light .jqx-icon-arrow-down-light, +.jqx-combobox-state-normal-light .jqx-icon-arrow-down-light, +.sorticon.descending .jqx-grid-column-sorticon-light, +.jqx-tree-item-arrow-expand-light, + .jqx-expander-header-light .jqx-icon-arrow-down + { + transform: rotate(0deg); + display: flex; + align-items: center; + transition: transform 0.2s ease-out; +} +.jqx-expander-header-light .jqx-icon-arrow-up { + transform: rotate(180deg); + transition: transform 0.2s ease-out; + font-family: jqx-icons; + background-image: none; +} +.jqx-expander-header-light .jqx-icon-arrow-up:after { + content: var(--jqx-icon-arrow-down); +} +.jqx-tree-item-arrow-expand-light, +.jqx-tree-item-arrow-collapse-light + { + font-size: 16px; +} +.jqx-tree-item-arrow-expand-light { + transform: rotate(180deg); +} + +.jqx-tree-item-arrow-expand-light:after { + content: var(--jqx-icon-arrow-up); + margin-left: 2px; +} +.jqx-tree-item-arrow-collapse-light +{ + transform: rotate(0deg); + background-image: none; + background-repeat: no-repeat; + background-position: center; + transition: transform 0.2s ease-out; +} +.jqx-dropdownlist-state-selected-light .jqx-icon-arrow-down-light, +.jqx-combobox-state-selected-light .jqx-icon-arrow-down-light, +.sorticon.ascending .jqx-grid-column-sorticon-light + { + display: flex; + align-items: center; + transform: rotate(180deg); + transition: transform 0.2s ease-out; + left: -1px; +} +.jqx-combobox-state-selected-light .jqx-icon-arrow-down-light{ + left:-1px; +} +.jqx-listbox-container { + margin-top: 1px; +} + +input[type="text"].jqx-input-light:-moz-placeholder, input[type="text"].jqx-widget-content-light:-moz-placeholder, input[type="textarea"].jqx-widget-content-light:-moz-placeholder, textarea.jqx-input-light:-moz-placeholder { + color: #999999; +} + +input[type="text"].jqx-input-light:-webkit-input-placeholder, input[type="text"].jqx-widget-content-light:-webkit-input-placeholder, input[type="textarea"].jqx-widget-content-light:-webkit-input-placeholder, textarea.jqx-input-light:-webkit-input-placeholder { + color: #999999; +} + +input[type="text"].jqx-input-light:-ms-input-placeholder, input[type="text"].jqx-widget-content-light:-ms-input-placeholder, input[type="textarea"].jqx-widget-content-light:-ms-input-placeholder, textarea.jqx-input-light:-ms-input-placeholder { + color: #999999; +} + +.jqx-combobox-content-focus-light, .jqx-combobox-state-focus-light, .jqx-fill-state-focus-light, +.jqx-numberinput-focus-light { + outline: none; +} + +.jqx-popup-light.jqx-fill-state-focus-light { + outline: none; + border-color: var(--jqx-border) !important; +} + +.jqx-datetimeinput-content, .jqx-datetimeinput-container { + overflow: visible !important; +} +.jqx-text-area-light, .jqx-text-area-light > div { + overflow:visible !important; +} +.jqx-text-area-element-light { + box-sizing: border-box; +} +.jqx-pivotgrid-content-wrapper.jqx-fill-state-normal-light { + border-color: var(--jqx-border); +} + +.jqx-grid-cell-light.jqx-grid-cell-selected-light > .jqx-grid-group-expand-light { + background-image: none; +} + +.jqx-grid-cell-light.jqx-grid-cell-selected-light > .jqx-grid-group-collapse-light { + background-image: none; +} + +.jqx-grid-cell-light.jqx-grid-cell-selected-light > .jqx-grid-group-collapse-rtl-light { + background-image: none; +} + +.jqx-grid-cell-light.jqx-grid-cell-selected-light > .jqx-grid-group-expand-rtl-light { + background-image: none; +} +.jqx-tabs-title-selected-top-light, .jqx-tabs-selection-tracker-top-light { + border-color: transparent; + filter: none; + background: inherit; + color: inherit; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.jqx-grid-cell-filter-row-light { + background-color: var(--jqx-surface); +} + +.jqx-tabs-title-light, .jqx-ribbon-item-light { + color: inherit; +} +.jqx-ribbon-item-selected-light { + background: inherit; +} +.jqx-tabs-title-selected-bottom-light, +.jqx-tabs-title-selected-top-light + { + color: var(--jqx-primary); + font-weight:500; + padding-top:5px; + padding-bottom:5px; +} +.jqx-tabs-title.jqx-fill-state-hover-light { + border-color: transparent; +} +.jqx-ribbon-item-light { + cursor: pointer; +} +.jqx-ribbon-item-selected-light { + color: var(--jqx-primary); + font-weight:500; + border-color: transparent; +} + +.jqx-ribbon-item-hover-light { + background: transparent; +} + +.jqx-ribbon-header-top-light { + border-color: transparent; + border-bottom-color: var(--jqx-border); +} + +.jqx-ribbon-header-bottom-light { + border-color: transparent; + border-top-color: var(--jqx-border); +} + +.jqx-ribbon-header-right-light { + border-color: transparent; + border-left-color:var(--jqx-border); +} + +.jqx-ribbon-header-left-light { + border-color: transparent; + border-right-color:var(--jqx-border); +} + +.jqx-tabs-title-selected-bottom-light, .jqx-tabs-selection-tracker-bottom-light { + border-color: transparent; + border-top: 1px solid var(--jqx-background); + filter: none; + background: var(--jqx-background); + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.jqx-tabs-light, .jqx-ribbon-light { + border-color: transparent; +} + +.jqx-tabs-header-light { + background: transparent; +} +.jqx-ribbon-header-light { + background: var(--jqx-surface); + color: var(--jqx-surface-color); +} +.jqx-tabs-position-bottom .jqx-tabs-header-light { + border-color: transparent; +} +.jqx-layout-light .jqx-tabs-header-light, .jqx-layout-light .jqx-ribbon-header-light { + background: var(--jqx-background); + border-color: var(--jqx-border); +} +.jqx-tabs-title-bottom { + border-color: transparent; +} +.jqx-tabs-title-hover-top-light, .jqx-tabs-title-hover-bottom-light, .jqx-tabs-header-light { + -webkit-box-shadow: none !important; + -moz-box-shadow: none !important; + box-shadow: none !important; + background: var(--jqx-surface); + color: var(--jqx-surface-color); +} + +.jqx-tabs-content-light { + box-sizing: border-box; + border: 1px solid var(--jqx-border); + border-top-color: transparent; + padding:5px; +} +.jqx-tabs-bar-light { + position: absolute; + bottom: 0; + background: var(--jqx-primary); + height: 2px; + z-index:10; + transition: .5s cubic-bezier(.35,0,.25,1); +} +.jqx-tabs-bar-light.vertical { + width: 2px; +} +.jqx-tabs-position-bottom .jqx-tabs-bar-light { + top: 0; +} + + +.jqx-layout-light { + background-color: var(--jqx-background); +} + +.jqx-kanban-column-header-collapsed-light { + background: var(--jqx-surface); + color: var(--jqx-surface-color); +} + +.jqx-calendar-cell-light { + border-radius: 0px; + font-size:12px; +} +.jqx-calendar-cell-light.jqx-fill-state-pressed-light { + outline: 2px var(--jqx-primary); + overflow: hidden; + position: relative; +} +.jqx-calendar-cell-light.jqx-fill-state-pressed-light:after { + content: ''; + width: calc(100% - 4px); + position: absolute; + left: 0px; + top: 0px; + height: calc(100% - 4px); + border: 2px solid var(--jqx-background); +} +.jqx-calendar-cell-year-light, +.jqx-calendar-cell-decade-light { + border-radius: 0px; +} +.jqx-calendar-title-content-light { + font-weight:bold; +} +.jqx-calendar-column-cell-light { + color: var(--jqx-background-color); + font-size:12px; +} + +.jqx-icon-time-light, +.jqx-icon-time-hover-light, +.jqx-icon-time-pressed-light { + background-image: none !important; + font-family: 'jqx-icons'; + display: flex; + font-family: 'jqx-icons'; + font-size: 16px; + align-content: center; + justify-content: center; + left: initial !important; + margin-top: 0px; + top: 0px; + left: 0px; + margin: 0; + align-items: center; + width: 100%; + height: 100%; +} + +.jqx-icon-time-light:after, +.jqx-icon-time-hover-light:after, +.jqx-icon-time-pressed-light:after { + content: var(--jqx-icon-arrow-down); +} + +.jqx-icon-calendar-light, +.jqx-icon-calendar-hover-light, +.jqx-icon-calendar-pressed-light { + background-image: none !important; + font-family: 'jqx-icons'; + left: 0; + top: 0 !important; + margin: 0 !important; + display: flex; + justify-content: center; + align-items: center; + width: 100% !important; + height: 100% !important; +} +.jqx-icon-calendar-light:after, +.jqx-icon-calendar-hover-light:after, +.jqx-icon-calendar-pressed-light:after { + content: var(--jqx-icon-calendar); +} + +.jqx-tabs-close-button-light, +.jqx-tabs-close-button-selected-light, +.jqx-tabs-close-button-hover-light { + background-image: none; +} + +.jqx-tabs-close-button-light:after { + content: var(--jqx-icon-close); +} + +.jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-up-selected-light { + background-image: none; +} + +.jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-down-selected-light { + background-image: none; +} + +.jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-left-selected-light { + background-image: none; +} + +.jqx-scrollbar-button-state-pressed-light .jqx-icon-arrow-right-selected-light { + background-image: none; +} + +.jqx-grid-cell-light.jqx-grid-cell-selected-light > .jqx-grid-group-expand-light { + background-image: none; +} + +.jqx-grid-cell-light.jqx-grid-cell-selected-light > .jqx-grid-group-collapse-light { + background-image: none; +} + +.jqx-grid-cell-light.jqx-grid-cell-selected-light > .jqx-grid-group-collapse-rtl-light { + background-image: none; +} + +.jqx-grid-cell-light.jqx-grid-cell-selected-light > .jqx-grid-group-expand-rtl-light { + background-image: none; +} + +.jqx-grid-group-collapse-light { + background-image: none; +} + +.jqx-grid-group-collapse-rtl-light { + background-image: none; +} + +.jqx-grid-group-expand-light, .jqx-grid-group-expand-rtl-light { + background-image: none; +} + +.jqx-icon-arrow-first-light, +.jqx-icon-arrow-last-light { + background-image: none; + font-family: jqx-icons; +} +.jqx-icon-arrow-first-light:after { + content: var(--jqx-icon-first-page); +} +.jqx-icon-arrow-last-light:after { + content: var(--jqx-icon-last-page); +} + +/* Ripple effect */ +.ripple { + position: relative; + transform: translate3d(0, 0, 0); + overflow:hidden; +} + +.ink { + display: block; + position: absolute; + pointer-events: none; + border-radius: 0%; + transform: scaleX(0); + background: rgba(var(--jqx-primary-rgb),0.5); + opacity: 0.25; +} + +.jqx-scrollbar-light .jqx-icon-arrow-up, +.jqx-scrollbar-light .jqx-icon-arrow-down, +.jqx-scrollbar-light .jqx-icon-arrow-right, +.jqx-scrollbar-light .jqx-icon-arrow-left { + display: flex; + justify-content: center; + align-items: center; +} + +.outlined .ink, .flat .ink { + background: rgba(var(--jqx-primary-rgb),0.5); + overflow:hidden; +} + +.ink.animate { + animation: ripple .7s ease; + animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + +.jqx-tree-light .jqx-checkbox-light { + margin-top: 6px !important; + border-radius: 0px !important; +} +.jqx-tree-item-arrow-expand-light, +.jqx-tree-item-arrow-collapse-light { + margin-top: 6px !important; +} + +.jqx-checkbox-light .ripple, +.jqx-radiobutton-light .ripple + { + overflow:visible; +} +.jqx-checkbox-light .ink, +.jqx-radiobutton-light .ink + { + transform: scale(0); + background: var(--jqx-primary); + border-radius: 50%; +} +.jqx-checkbox-light .ink.animate, +.jqx-radiobutton-light .ink.animate + { + animation: checkRipple 0.3s ease; + animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} +.jqx-checkbox-light .ink.active, +.jqx-radiobutton-light .ink.active + { + opacity: 0.2; + transform: scale(2); +} +.jqx-checkbox-default-light.active .ink, +.jqx-radiobutton-default-light.active .ink + { + opacity: 0.2; + transform: scale(2); +} + +/* Ripple effect */ +/* Ripple effect */ +.buttonRipple { + background-position: center; + transition: background 0.8s; + } + .buttonRipple.jqx-button-light.jqx-fill-state-hover { + color: var(--jqx-background-color-hover); + background: var(--jqx-background-hover) radial-gradient(circle, transparent 1%, var(--jqx-background-hover) 1%) center/15000%; + } + .buttonRipple.jqx-button-light.jqx-fill-state-pressed { + color: var(--jqx-background-color-hover); + background-color: rgba(var(--jqx-background-hover-rgb), 0.5); + background-size: 100%; + transition: background 0s; + } + .buttonRipple.jqx-button-light.jqx-fill-state-hover.primary { + color: var(--jqx-primary-color); + background: var(--jqx-primary) radial-gradient(circle, transparent 1%, var(--jqx-primary) 1%) center/15000%; + } + .buttonRipple.jqx-button-light.jqx-fill-state-pressed.primary { + color: var(--jqx-primary-color); + background-color: rgba(var(--jqx-primary-rgb), 0.8); + background-size: 100%; + transition: background 0s; + } + +@keyframes ripple { + 100% { + opacity: 0; + transform: scale(5); + animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } +} +@keyframes checkRipple { + 100% { + opacity: 0.2; + transform: scale(2); + animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } +} + .jqx-fill-state-pressed-light .jqx-icon-delete-light { background-image: url('images/icon-delete-white.png'); @@ -1262,41 +2273,74 @@ } .jqx-fill-state-pressed-light .jqx-icon-search-light { - background-image: url(images/search_white.png); + background-image: url('images/search_white.png'); } .jqx-fill-state-pressed-light .jqx-icon-plus-light { - background-image: url(images/plus_white.png); + background-image: url('images/plus_white.png'); +} +.jqx-menu-minimized-button-light { + padding: 0px !important; } .jqx-fill-state-pressed-light .jqx-menu-minimized-button-light { background-image: url('images/icon-menu-minimized-white.png'); } -.jqx-fill-state-pressed-light .jqx-editor-toolbar-icon-light { - background: url('images/html_editor_white.png') no-repeat; + + +.jqx-editor-toolbar-icon-light { + background: url('images/html_editor.png') no-repeat; } + +.jqx-fill-state-hover-light .jqx-editor-toolbar-icon-fontsize-light, +.jqx-fill-state-pressed-light .jqx-editor-toolbar-icon-fontsize-light, +.jqx-fill-state-hover-light .jqx-editor-toolbar-icon-forecolor-light, +.jqx-fill-state-pressed-light .jqx-editor-toolbar-icon-forecolor-light +{ + background: url('images/html_editor.png') no-repeat; +} + .jqx-editor-toolbar-button-light{ - border-color: #ddd; + border-color: var(--jqx-border); + box-shadow: none !important; + color: var(--jqx-background-color); +} + +.jqx-time-picker .jqx-main-container { + background: var(--jqx-background); } /*applied to the timepicker*/ .jqx-needle-central-circle-light { - fill: rgb(0, 119, 190); + fill: var(--jqx-primary); +} +.jqx-time-picker-light .jqx-label-light { + fill: var(--jqx-background-color); } .jqx-needle-light { - fill: rgb(0, 119, 190); + fill: var(--jqx-primary); } .jqx-time-picker .jqx-header .jqx-selected-light:focus { - outline: 2px solid rgba(0, 119, 190, 0.5); + outline: 2px solid var(--jqx-primary); box-shadow: 0px 0px 4px 2px rgba(0, 119, 190, 0.125); } .jqx-svg-picker-light:focus { - border: 1px solid rgb(0, 119, 190) !important; + border: 1px solid var(--jqx-primary) !important; +} +.jqx-validator-hint-light { + background: #D94F43; + border-color: #D94F43; + padding: 10px; +} +.jqx-validator-hint-light img { + display: none; } -.jqx-time-picker[view="portrait"] .jqx-header-light { - border-top-left-radius: inherit; - border-top-right-radius: inherit; + + +.jqx-grid-group-expand-light:after, +.jqx-grid-group-collapse-light:after { + display: flex; + justify-content: center; + align-content: center; + align-items: center; + height: 100%; } -.jqx-time-picker[view="landscape"] .jqx-header-light { - border-top-left-radius: inherit; - border-bottom-left-radius: inherit; -} \ No newline at end of file