|
@@ -0,0 +1,600 @@
|
|
|
+.textbox-icon-disabled {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.calendar-header {
|
|
|
+ background: none;
|
|
|
+ border-bottom: 1px solid #e2e2e2;
|
|
|
+ line-height: 30px;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-title {
|
|
|
+ position: relative;
|
|
|
+ top: -3px;
|
|
|
+ width: 160px;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-title span {
|
|
|
+ position: relative;
|
|
|
+ display: inline-block;
|
|
|
+ top: 2px;
|
|
|
+ padding: 0 5px;
|
|
|
+ height: 26px;
|
|
|
+ line-height: 26px;
|
|
|
+ cursor: pointer;
|
|
|
+ color: black;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-title span:hover {
|
|
|
+ color: #004c8b;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-day {
|
|
|
+ background: #fff;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-nav-hover {
|
|
|
+ background-color: #eaeaea;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-selected {
|
|
|
+ border: 1px solid #fff;
|
|
|
+ background-color: #004c8b;
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-today {
|
|
|
+ color: #004c8b;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-nav {
|
|
|
+ height: 30px;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-prevmonth, .calendar-nextmonth, .calendar-prevyear, .calendar-nextyear {
|
|
|
+ top: -5px;
|
|
|
+ line-height: 30px;
|
|
|
+ margin-top: 0;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ color: #999;
|
|
|
+ background-image: none;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-prevmonth, .calendar-nextmonth {
|
|
|
+ font-size: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-prevyear, .calendar-nextyear {
|
|
|
+ font-size: 24px;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-prevmonth {
|
|
|
+ left: 30px;
|
|
|
+ top: -4px;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-nextmonth {
|
|
|
+ right: 30px;
|
|
|
+ top: -4px;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-text.calendar-nav-hover, .calendar-nextmonth.calendar-nav-hover, .calendar-nextyear.calendar-nav-hover, .calendar-prevmonth.calendar-nav-hover, .calendar-prevyear.calendar-nav-hover {
|
|
|
+ background-color: #fff;
|
|
|
+ color: #004c8b;
|
|
|
+}
|
|
|
+
|
|
|
+.datebox-button {
|
|
|
+ margin: 0;
|
|
|
+ padding: 5px 5px;
|
|
|
+ height: 26px !important;
|
|
|
+ text-align: right;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.datebox-button a {
|
|
|
+ height: 26px;
|
|
|
+ line-height: 26px;
|
|
|
+ margin-top: 10px;
|
|
|
+ background-color: #004c8b;
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 2px;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+ opacity: 1;
|
|
|
+}
|
|
|
+
|
|
|
+.datebox-button a:hover {
|
|
|
+ color: #fff;
|
|
|
+ opacity: 0.8;
|
|
|
+}
|
|
|
+
|
|
|
+.datebox-button a:nth-child(1) {
|
|
|
+ margin-right: 8px;
|
|
|
+}
|
|
|
+
|
|
|
+.datebox-button a:nth-child(2) {
|
|
|
+ margin-right: 3px;
|
|
|
+}
|
|
|
+
|
|
|
+/* 月份 */
|
|
|
+.date-month-list {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 10px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.date-month-list > li {
|
|
|
+ float: left;
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 25%;
|
|
|
+ margin: 17px 0;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ background: #fff;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.date-month-list > li:hover {
|
|
|
+ background-color: #eaeaea;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.date-month-this {
|
|
|
+ background-color: #004c8b !important;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.date-month-this:hover {
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* 月份 */
|
|
|
+.date-year-titleys {
|
|
|
+/ / margin: 0 3 px;
|
|
|
+ top: 0 !important;
|
|
|
+ height: auto;
|
|
|
+ line-height: none;
|
|
|
+}
|
|
|
+
|
|
|
+.date-year-list {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 15px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.date-year-list > li {
|
|
|
+ float: left;
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 33.3333%;
|
|
|
+ margin: 3px 0;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ background: #fff;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.date-year-list > li:hover {
|
|
|
+ background-color: #eaeaea;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.date-year-this {
|
|
|
+ background-color: #004c8b !important;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.date-year-this:hover {
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* 时分秒 */
|
|
|
+.date-time-list {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ padding: 10px;
|
|
|
+ background-color: #fff;
|
|
|
+ box-sizing: border-box;
|
|
|
+ -moz-box-sizing: border-box;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ -o-box-sizing: border-box;
|
|
|
+ -ms-box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.date-time-list > li {
|
|
|
+ float: left;
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 33.3333%;
|
|
|
+ margin: 3px 0;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.date-time-list p {
|
|
|
+ position: relative;
|
|
|
+ top: -4px;
|
|
|
+ line-height: 29px;
|
|
|
+}
|
|
|
+
|
|
|
+.date-time-list li:first-child ol {
|
|
|
+ border-left-width: 1px;
|
|
|
+}
|
|
|
+
|
|
|
+.date-time-list li ol {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ border: 1px solid #e2e2e2;
|
|
|
+ border-left-width: 0;
|
|
|
+ height: 181px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.date-time-list ol li {
|
|
|
+ width: 120%;
|
|
|
+ padding-left: 33px;
|
|
|
+ line-height: 30px;
|
|
|
+ text-align: left;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.date-time-list li ol:hover {
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.date-this {
|
|
|
+ background-color: #004c8b !important;
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+.date-time-list li ol li {
|
|
|
+ background: #fff;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.date-time-list li ol li:hover {
|
|
|
+ background-color: #eaeaea;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-title .year-range {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-body .calendar-menu {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-body .date-month-list {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-body .date-year-list {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+
|
|
|
+/*-------- 时间范围选择------- */
|
|
|
+.calendarT {
|
|
|
+ width: 523px;
|
|
|
+ height: 284px;
|
|
|
+ margin: 10px 10px 5px 0px;
|
|
|
+ background: #fff;
|
|
|
+ border: 1px solid #d2d2d2;
|
|
|
+ box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
|
|
|
+ padding: 10px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ -moz-box-sizing: border-box;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ -o-box-sizing: border-box;
|
|
|
+ -ms-box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.calendarT-header-box {
|
|
|
+ height: 30px;
|
|
|
+}
|
|
|
+
|
|
|
+.calendarT-header-left {
|
|
|
+ width: 250px;
|
|
|
+ float: left;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.calendarT-header-right {
|
|
|
+ margin-left: 250px;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.calendarT .calendar-header {
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+
|
|
|
+.calendarT .calendar-body {
|
|
|
+ border-bottom: 1px solid #e2e2e2;
|
|
|
+ border-top: 1px solid #e2e2e2;
|
|
|
+ height: 232px;
|
|
|
+}
|
|
|
+
|
|
|
+.calendarT-body-left {
|
|
|
+ width: 250px;
|
|
|
+ float: left;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.calendarT-body-right {
|
|
|
+ margin-left: 250px;
|
|
|
+ border-left: 1px solid #e2e2e2;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+/* 月份范围选择 */
|
|
|
+.date-monthrange-list {
|
|
|
+ margin: 0 10px;
|
|
|
+ padding: 8px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.date-monthrange-list > li {
|
|
|
+ float: left;
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 25%;
|
|
|
+ margin: 17px 0;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ background: #fff;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.date-monthrange-list > li:hover {
|
|
|
+ background-color: #eaeaea;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.date-monthrange-this {
|
|
|
+ background-color: #004c8b !important;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.date-monthrange-this:hover {
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* 年份范围选择 */
|
|
|
+.date-yearrange-list {
|
|
|
+ margin: 0 10px;
|
|
|
+ padding: 11px 0;
|
|
|
+}
|
|
|
+
|
|
|
+.date-yearrange-list > li {
|
|
|
+ float: left;
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 33.3333%;
|
|
|
+ margin: 3px 0;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ background: #fff;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.date-yearrange-list > li:hover {
|
|
|
+ background-color: #eaeaea;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.date-yearrange-this {
|
|
|
+ background-color: #004c8b !important;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.date-yearrange-this:hover {
|
|
|
+ color: #fff !important;
|
|
|
+}
|
|
|
+
|
|
|
+/* 时分秒范围选择 */
|
|
|
+.date-timerange-list {
|
|
|
+ width: 250px;
|
|
|
+ height: 100%;
|
|
|
+ padding: 10px;
|
|
|
+ background-color: #fff;
|
|
|
+ box-sizing: border-box;
|
|
|
+ -moz-box-sizing: border-box;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ -o-box-sizing: border-box;
|
|
|
+ -ms-box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.date-timerange-list > li {
|
|
|
+ float: left;
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 33.3333%;
|
|
|
+ margin: 3px 0;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.date-timerange-list p {
|
|
|
+ position: relative;
|
|
|
+ top: -4px;
|
|
|
+ line-height: 29px;
|
|
|
+}
|
|
|
+
|
|
|
+.date-timerange-list li:first-child ol {
|
|
|
+ border-left-width: 1px;
|
|
|
+}
|
|
|
+
|
|
|
+.date-timerange-list li ol {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ border: 1px solid #e2e2e2;
|
|
|
+ border-left-width: 0;
|
|
|
+ height: 181px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.date-timerange-list ol li {
|
|
|
+ width: 120%;
|
|
|
+ padding-left: 33px;
|
|
|
+ line-height: 30px;
|
|
|
+ text-align: left;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.date-timerange-list li ol:hover {
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.date-timerange-list li ol li {
|
|
|
+ background: #fff;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.date-timerange-list li ol li:hover {
|
|
|
+ background-color: #eaeaea;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+/*-------- 年月日选择------- */
|
|
|
+.show-time .calendar-dtable {
|
|
|
+ float: left;
|
|
|
+ padding-top: 5px;
|
|
|
+}
|
|
|
+
|
|
|
+.show-time .calendar-title {
|
|
|
+ width: 260px;
|
|
|
+}
|
|
|
+
|
|
|
+.show-time .calendar-header {
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+
|
|
|
+.show-time .calendar-body {
|
|
|
+ border-top: 1px solid #e2e2e2;
|
|
|
+ border-bottom: 1px solid #e2e2e2;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-add-time {
|
|
|
+ margin-left: 250px;
|
|
|
+ height: 100%;
|
|
|
+ border-left: 1px solid #e2e2e2;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list {
|
|
|
+ padding: 3px 0 10px 10px;
|
|
|
+ background-color: #fff;
|
|
|
+ box-sizing: border-box;
|
|
|
+ -moz-box-sizing: border-box;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ -o-box-sizing: border-box;
|
|
|
+ -ms-box-sizing: border-box;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list > li {
|
|
|
+ float: left;
|
|
|
+ vertical-align: middle;
|
|
|
+ width: 33.3333%;
|
|
|
+ margin: 3px 0;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ background: #fff;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list p {
|
|
|
+ position: relative;
|
|
|
+ top: -4px;
|
|
|
+ line-height: 29px;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list li:first-child ol {
|
|
|
+ border-left-width: 1px;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list li ol {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ border: 1px solid #e2e2e2;
|
|
|
+ border-left-width: 0;
|
|
|
+ height: 181px;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list ol li {
|
|
|
+ width: 110%;
|
|
|
+ padding-left: 15px;
|
|
|
+ line-height: 30px;
|
|
|
+ text-align: left;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list li ol:hover {
|
|
|
+ overflow-y: auto;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list li ol li {
|
|
|
+ background: #fff;
|
|
|
+ transition: all 0.2s ease-in-out;
|
|
|
+}
|
|
|
+
|
|
|
+.add-time-list li ol li:hover {
|
|
|
+ background-color: #eaeaea;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.calendar-menu {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+/* jqxPopover */
|
|
|
+.jqx-date-box{
|
|
|
+ border:none;
|
|
|
+}
|
|
|
+.jqx-date-box .jqx-popover-content{
|
|
|
+ padding:0;
|
|
|
+}
|
|
|
+.jqx-date-box.bottom{
|
|
|
+ margin:0;
|
|
|
+}
|
|
|
+.jqx-date-box .calendar{
|
|
|
+ border-color:#fff;
|
|
|
+ border-bottom:1px solid #ccc;
|
|
|
+}
|
|
|
+.jqx-date-box .jqx-popover-arrow{
|
|
|
+ display:none!important;
|
|
|
+}
|
|
|
+.jqx-date-box .datebox-calendar-inner{
|
|
|
+ height:284px;
|
|
|
+}
|
|
|
+.jqx-date-box .datebox-button{
|
|
|
+ border:none;
|
|
|
+ padding:3px 5px;
|
|
|
+}
|