Index: vue/src/assets/images/devops/DevSupport/github.png =================================================================== diff -u -r5cd07d4d43536675e4294d68d4c75c61207ab65a -r03038fe94473d923db386d7a26011d3f43f1bbdc --- vue/src/assets/images/devops/DevSupport/github.png (.../github.png) (revision 5cd07d4d43536675e4294d68d4c75c61207ab65a) +++ vue/src/assets/images/devops/DevSupport/github.png (.../github.png) (revision 03038fe94473d923db386d7a26011d3f43f1bbdc) @@ -665,4 +665,38 @@ border-bottom: 1px solid transparent; border-image: linear-gradient(0.25turn, #979797, #979797, rgb(0 0 0 / 0%)); border-image-slice: 1; +} + +/*데이터피커 css 처리*/ + .xdsoft_datetimepicker .xdsoft_label { + display: inline; + position: relative; + z-index: 9999; + margin: 0; + padding: 5px 3px; + font-size: 12px; + line-height: 20px; + font-weight: bold; + background-color: #fff; + float: left; + width: 182px; + text-align: center; + cursor: pointer; + } + +.xdsoft_datetimepicker .xdsoft_calendar th:first-child { + color: red !important; +} + +.xdsoft_datetimepicker .xdsoft_calendar th:last-child { + color: blue !important; +} + + +.xdsoft_day_of_week0 { + color: red !important; +} + +.xdsoft_day_of_week6 { + color: blue !important; } \ No newline at end of file Index: reference/jquery-plugins/select2-4.0.13/src/scss/theme/default/layout.scss =================================================================== diff -u -r8473d21748da6a430cfc0fc008aaf64db3140c4e -r03038fe94473d923db386d7a26011d3f43f1bbdc --- reference/jquery-plugins/select2-4.0.13/src/scss/theme/default/layout.scss (.../layout.scss) (revision 8473d21748da6a430cfc0fc008aaf64db3140c4e) +++ reference/jquery-plugins/select2-4.0.13/src/scss/theme/default/layout.scss (.../layout.scss) (revision 03038fe94473d923db386d7a26011d3f43f1bbdc) @@ -257,6 +257,23 @@ return date.getFullYear() + "/" + ("0" + (date.getMonth() + 1) ).slice(-2) + "/" + ("0" + date.getDate()).slice(-2); } +// 최대값, 최소값 +function maxValue(arr) { + if (isEmpty(arr)) { + return []; + } else { + return arr.reduce((max, val) => max > val ? max : val); + } +} + +function minValue(arr) { + if (isEmpty(arr)) { + return []; + } else { + return arr.reduce((min, val) => min < val ? min : val); + } +} + //////////////////////////////////////////////////////////////////////////////////////// // --- 왼쪽 사이드 메뉴 설정 --- // ////////////////////////////////////////////////////////////////////////////////////////