handsontable 0.0.0-next-4ad1863-20241122 → 0.0.0-next-fd9f817-20241125
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/3rdparty/walkontable/src/calculator/index.js +1 -2
- package/3rdparty/walkontable/src/calculator/index.mjs +2 -2
- package/3rdparty/walkontable/src/calculator/viewportRows.js +3 -3
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +3 -3
- package/3rdparty/walkontable/src/core/_base.js +3 -0
- package/3rdparty/walkontable/src/core/_base.mjs +3 -0
- package/3rdparty/walkontable/src/core/clone.js +1 -0
- package/3rdparty/walkontable/src/core/clone.mjs +1 -0
- package/3rdparty/walkontable/src/core/core.js +2 -0
- package/3rdparty/walkontable/src/core/core.mjs +2 -0
- package/3rdparty/walkontable/src/facade/core.js +3 -0
- package/3rdparty/walkontable/src/facade/core.mjs +3 -0
- package/3rdparty/walkontable/src/index.js +0 -1
- package/3rdparty/walkontable/src/index.mjs +2 -2
- package/3rdparty/walkontable/src/overlay/_base.js +3 -1
- package/3rdparty/walkontable/src/overlay/_base.mjs +3 -1
- package/3rdparty/walkontable/src/overlay/bottom.js +2 -2
- package/3rdparty/walkontable/src/overlay/bottom.mjs +2 -2
- package/3rdparty/walkontable/src/overlay/top.js +1 -1
- package/3rdparty/walkontable/src/overlay/top.mjs +1 -1
- package/3rdparty/walkontable/src/renderer/index.js +4 -2
- package/3rdparty/walkontable/src/renderer/index.mjs +4 -2
- package/3rdparty/walkontable/src/renderer/table.js +12 -3
- package/3rdparty/walkontable/src/renderer/table.mjs +12 -3
- package/3rdparty/walkontable/src/settings.js +0 -2
- package/3rdparty/walkontable/src/settings.mjs +0 -2
- package/3rdparty/walkontable/src/table.js +17 -9
- package/3rdparty/walkontable/src/table.mjs +17 -9
- package/3rdparty/walkontable/src/types.js +1 -0
- package/3rdparty/walkontable/src/types.mjs +1 -0
- package/3rdparty/walkontable/src/utils/column.js +1 -1
- package/3rdparty/walkontable/src/utils/column.mjs +1 -1
- package/3rdparty/walkontable/src/utils/stylesHandler.js +287 -0
- package/3rdparty/walkontable/src/utils/stylesHandler.mjs +283 -0
- package/3rdparty/walkontable/src/viewport.js +1 -0
- package/3rdparty/walkontable/src/viewport.mjs +1 -0
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/core/hooks/constants.js +9 -0
- package/core/hooks/constants.mjs +9 -0
- package/core/hooks/index.d.ts +1 -0
- package/core.d.ts +2 -0
- package/core.js +47 -0
- package/core.mjs +47 -0
- package/dataMap/metaManager/metaSchema.js +23 -3
- package/dataMap/metaManager/metaSchema.mjs +23 -3
- package/dist/handsontable.css +17 -9
- package/dist/handsontable.full.css +249 -240
- package/dist/handsontable.full.js +4547 -4210
- package/dist/handsontable.full.min.css +11 -9
- package/dist/handsontable.full.min.js +53 -53
- package/dist/handsontable.js +4254 -3911
- package/dist/handsontable.min.css +5 -4
- package/dist/handsontable.min.js +24 -24
- package/editors/autocompleteEditor/autocompleteEditor.js +1 -1
- package/editors/autocompleteEditor/autocompleteEditor.mjs +1 -1
- package/editors/baseEditor/baseEditor.js +1 -1
- package/editors/baseEditor/baseEditor.mjs +1 -1
- package/editors/dateEditor/dateEditor.js +9 -0
- package/editors/dateEditor/dateEditor.mjs +10 -1
- package/editors/handsontableEditor/handsontableEditor.js +7 -1
- package/editors/handsontableEditor/handsontableEditor.mjs +7 -1
- package/editors/selectEditor/selectEditor.js +20 -9
- package/editors/selectEditor/selectEditor.mjs +20 -9
- package/editors/textEditor/textEditor.js +4 -11
- package/editors/textEditor/textEditor.mjs +4 -11
- package/helpers/dom/element.js +32 -1
- package/helpers/dom/element.mjs +31 -1
- package/helpers/mixed.js +2 -2
- package/helpers/mixed.mjs +2 -2
- package/helpers/themes.js +17 -0
- package/helpers/themes.mjs +13 -0
- package/package.json +10 -3
- package/plugins/comments/commentEditor.js +9 -0
- package/plugins/comments/commentEditor.mjs +9 -0
- package/plugins/comments/comments.js +14 -0
- package/plugins/comments/comments.mjs +15 -1
- package/plugins/contextMenu/menu/menu.js +9 -4
- package/plugins/contextMenu/menu/menu.mjs +9 -4
- package/plugins/filters/ui/multipleSelect.js +6 -0
- package/plugins/filters/ui/multipleSelect.mjs +6 -0
- package/plugins/manualRowMove/manualRowMove.js +1 -1
- package/plugins/manualRowMove/manualRowMove.mjs +1 -1
- package/plugins/manualRowResize/manualRowResize.js +1 -2
- package/plugins/manualRowResize/manualRowResize.mjs +2 -3
- package/plugins/mergeCells/mergeCells.js +1 -1
- package/plugins/mergeCells/mergeCells.mjs +1 -1
- package/plugins/nestedRows/ui/headers.js +7 -1
- package/plugins/nestedRows/ui/headers.mjs +7 -1
- package/plugins/stretchColumns/calculator.js +2 -1
- package/plugins/stretchColumns/calculator.mjs +3 -2
- package/settings.d.ts +1 -0
- package/styles/handsontable.css +2187 -0
- package/styles/handsontable.min.css +30 -0
- package/styles/ht-theme-horizon.css +607 -0
- package/styles/ht-theme-horizon.min.css +30 -0
- package/styles/ht-theme-main.css +613 -0
- package/styles/ht-theme-main.min.css +30 -0
- package/tableView.js +46 -0
- package/tableView.mjs +47 -1
- package/utils/autoResize.js +4 -1
- package/utils/autoResize.mjs +4 -1
- package/utils/ghostTable.js +5 -3
- package/utils/ghostTable.mjs +5 -3
@@ -25,13 +25,13 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date: 17/10/2024 (built at
|
28
|
+
* Version: 0.0.0-next-fd9f817-20241125
|
29
|
+
* Release date: 17/10/2024 (built at 25/11/2024 07:08:27)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
33
33
|
*/
|
34
|
-
.handsontable .table th, .handsontable .table td {
|
34
|
+
.handsontable .table th, .handsontable .table td {
|
35
35
|
border-top: none;
|
36
36
|
}
|
37
37
|
|
@@ -589,6 +589,7 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
589
589
|
color: #000;
|
590
590
|
border-radius: 0;
|
591
591
|
background-color: #FFF;
|
592
|
+
box-sizing: border-box !important;
|
592
593
|
/*overwrite styles potentionally made by a framework*/
|
593
594
|
}
|
594
595
|
|
@@ -603,16 +604,25 @@ innerBorderBottom - Property controlled by bottom overlay
|
|
603
604
|
}
|
604
605
|
|
605
606
|
.htSelectEditor {
|
606
|
-
-webkit-appearance: menulist-button !important;
|
607
607
|
position: absolute;
|
608
|
-
|
609
|
-
|
608
|
+
|
609
|
+
select {
|
610
|
+
-webkit-appearance: menulist-button !important;
|
611
|
+
width: 100%;
|
612
|
+
height: 100%;
|
613
|
+
border: 2px solid #4b89ff;
|
614
|
+
box-sizing: border-box !important;
|
615
|
+
}
|
610
616
|
}
|
611
617
|
|
612
|
-
.htSelectEditor:focus {
|
618
|
+
.htSelectEditor select:focus {
|
613
619
|
outline: none;
|
614
620
|
}
|
615
621
|
|
622
|
+
.htSelectEditor .htAutocompleteArrow {
|
623
|
+
display: none;
|
624
|
+
}
|
625
|
+
|
616
626
|
/*
|
617
627
|
TextRenderer readOnly cell
|
618
628
|
*/
|
@@ -792,239 +802,6 @@ TextRenderer placeholder value
|
|
792
802
|
animation-fill-mode: forwards;
|
793
803
|
-webkit-animation-fill-mode: forwards;
|
794
804
|
}
|
795
|
-
@charset "UTF-8";
|
796
|
-
/*!
|
797
|
-
* Pikaday
|
798
|
-
* Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
|
799
|
-
*/
|
800
|
-
.pika-single {
|
801
|
-
z-index: 9999;
|
802
|
-
display: block;
|
803
|
-
position: relative;
|
804
|
-
color: #333;
|
805
|
-
background: #fff;
|
806
|
-
border: 1px solid #ccc;
|
807
|
-
border-bottom-color: #bbb;
|
808
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
809
|
-
}
|
810
|
-
|
811
|
-
/*
|
812
|
-
clear child float (pika-lendar), using the famous micro clearfix hack
|
813
|
-
http://nicolasgallagher.com/micro-clearfix-hack/
|
814
|
-
*/
|
815
|
-
.pika-single:before,
|
816
|
-
.pika-single:after {
|
817
|
-
content: " ";
|
818
|
-
display: table;
|
819
|
-
}
|
820
|
-
|
821
|
-
.pika-single:after {
|
822
|
-
clear: both;
|
823
|
-
}
|
824
|
-
|
825
|
-
.pika-single.is-hidden {
|
826
|
-
display: none;
|
827
|
-
}
|
828
|
-
|
829
|
-
.pika-single.is-bound {
|
830
|
-
position: absolute;
|
831
|
-
box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
|
832
|
-
}
|
833
|
-
|
834
|
-
.pika-lendar {
|
835
|
-
float: left;
|
836
|
-
width: 240px;
|
837
|
-
margin: 8px;
|
838
|
-
}
|
839
|
-
|
840
|
-
.pika-title {
|
841
|
-
position: relative;
|
842
|
-
text-align: center;
|
843
|
-
}
|
844
|
-
|
845
|
-
.pika-label {
|
846
|
-
display: inline-block;
|
847
|
-
position: relative;
|
848
|
-
z-index: 9999;
|
849
|
-
overflow: hidden;
|
850
|
-
margin: 0;
|
851
|
-
padding: 5px 3px;
|
852
|
-
font-size: 14px;
|
853
|
-
line-height: 20px;
|
854
|
-
font-weight: bold;
|
855
|
-
background-color: #fff;
|
856
|
-
}
|
857
|
-
|
858
|
-
.pika-title select {
|
859
|
-
cursor: pointer;
|
860
|
-
position: absolute;
|
861
|
-
z-index: 9998;
|
862
|
-
margin: 0;
|
863
|
-
left: 0;
|
864
|
-
top: 5px;
|
865
|
-
opacity: 0;
|
866
|
-
}
|
867
|
-
|
868
|
-
.pika-prev,
|
869
|
-
.pika-next {
|
870
|
-
display: block;
|
871
|
-
cursor: pointer;
|
872
|
-
position: relative;
|
873
|
-
outline: none;
|
874
|
-
border: 0;
|
875
|
-
padding: 0;
|
876
|
-
width: 20px;
|
877
|
-
height: 30px;
|
878
|
-
/* hide text using text-indent trick, using width value (it's enough) */
|
879
|
-
text-indent: 20px;
|
880
|
-
white-space: nowrap;
|
881
|
-
overflow: hidden;
|
882
|
-
background-color: transparent;
|
883
|
-
background-position: center center;
|
884
|
-
background-repeat: no-repeat;
|
885
|
-
background-size: 75% 75%;
|
886
|
-
opacity: 0.5;
|
887
|
-
}
|
888
|
-
|
889
|
-
.pika-prev:hover,
|
890
|
-
.pika-next:hover {
|
891
|
-
opacity: 1;
|
892
|
-
}
|
893
|
-
|
894
|
-
.pika-prev,
|
895
|
-
.is-rtl .pika-next {
|
896
|
-
float: left;
|
897
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);
|
898
|
-
}
|
899
|
-
|
900
|
-
.pika-next,
|
901
|
-
.is-rtl .pika-prev {
|
902
|
-
float: right;
|
903
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);
|
904
|
-
}
|
905
|
-
|
906
|
-
.pika-prev.is-disabled,
|
907
|
-
.pika-next.is-disabled {
|
908
|
-
cursor: default;
|
909
|
-
opacity: 0.2;
|
910
|
-
}
|
911
|
-
|
912
|
-
.pika-select {
|
913
|
-
display: inline-block;
|
914
|
-
}
|
915
|
-
|
916
|
-
.pika-table {
|
917
|
-
width: 100%;
|
918
|
-
border-collapse: collapse;
|
919
|
-
border-spacing: 0;
|
920
|
-
border: 0;
|
921
|
-
}
|
922
|
-
|
923
|
-
.pika-table th,
|
924
|
-
.pika-table td {
|
925
|
-
width: 14.2857142857%;
|
926
|
-
padding: 0;
|
927
|
-
}
|
928
|
-
|
929
|
-
.pika-table th {
|
930
|
-
color: #999;
|
931
|
-
font-size: 12px;
|
932
|
-
line-height: 25px;
|
933
|
-
font-weight: bold;
|
934
|
-
text-align: center;
|
935
|
-
}
|
936
|
-
|
937
|
-
.pika-button {
|
938
|
-
cursor: pointer;
|
939
|
-
display: block;
|
940
|
-
box-sizing: border-box;
|
941
|
-
-moz-box-sizing: border-box;
|
942
|
-
outline: none;
|
943
|
-
border: 0;
|
944
|
-
margin: 0;
|
945
|
-
width: 100%;
|
946
|
-
padding: 5px;
|
947
|
-
color: #666;
|
948
|
-
font-size: 12px;
|
949
|
-
line-height: 15px;
|
950
|
-
text-align: center;
|
951
|
-
background: #f5f5f5;
|
952
|
-
height: initial;
|
953
|
-
}
|
954
|
-
|
955
|
-
.pika-week {
|
956
|
-
font-size: 11px;
|
957
|
-
color: #999;
|
958
|
-
}
|
959
|
-
|
960
|
-
.is-today .pika-button {
|
961
|
-
color: #33aaff;
|
962
|
-
font-weight: bold;
|
963
|
-
}
|
964
|
-
|
965
|
-
.is-selected .pika-button,
|
966
|
-
.has-event .pika-button {
|
967
|
-
color: #fff;
|
968
|
-
font-weight: bold;
|
969
|
-
background: #33aaff;
|
970
|
-
box-shadow: inset 0 1px 3px #178fe5;
|
971
|
-
border-radius: 3px;
|
972
|
-
}
|
973
|
-
|
974
|
-
.has-event .pika-button {
|
975
|
-
background: #005da9;
|
976
|
-
box-shadow: inset 0 1px 3px #0076c9;
|
977
|
-
}
|
978
|
-
|
979
|
-
.is-disabled .pika-button,
|
980
|
-
.is-inrange .pika-button {
|
981
|
-
background: #D5E9F7;
|
982
|
-
}
|
983
|
-
|
984
|
-
.is-startrange .pika-button {
|
985
|
-
color: #fff;
|
986
|
-
background: #6CB31D;
|
987
|
-
box-shadow: none;
|
988
|
-
border-radius: 3px;
|
989
|
-
}
|
990
|
-
|
991
|
-
.is-endrange .pika-button {
|
992
|
-
color: #fff;
|
993
|
-
background: #33aaff;
|
994
|
-
box-shadow: none;
|
995
|
-
border-radius: 3px;
|
996
|
-
}
|
997
|
-
|
998
|
-
.is-disabled .pika-button {
|
999
|
-
pointer-events: none;
|
1000
|
-
cursor: default;
|
1001
|
-
color: #999;
|
1002
|
-
opacity: 0.3;
|
1003
|
-
}
|
1004
|
-
|
1005
|
-
.is-outside-current-month .pika-button {
|
1006
|
-
color: #999;
|
1007
|
-
opacity: 0.3;
|
1008
|
-
}
|
1009
|
-
|
1010
|
-
.is-selection-disabled {
|
1011
|
-
pointer-events: none;
|
1012
|
-
cursor: default;
|
1013
|
-
}
|
1014
|
-
|
1015
|
-
.pika-button:hover,
|
1016
|
-
.pika-row.pick-whole-week:hover .pika-button {
|
1017
|
-
color: #fff;
|
1018
|
-
background: #ff8000;
|
1019
|
-
box-shadow: none;
|
1020
|
-
border-radius: 3px;
|
1021
|
-
}
|
1022
|
-
|
1023
|
-
/* styling for abbr */
|
1024
|
-
.pika-table abbr {
|
1025
|
-
border-bottom: none;
|
1026
|
-
cursor: help;
|
1027
|
-
}
|
1028
805
|
/*
|
1029
806
|
AutocompleteRenderer down arrow
|
1030
807
|
*/
|
@@ -2289,3 +2066,235 @@ textarea.HandsontableCopyPaste {
|
|
2289
2066
|
left: 0;
|
2290
2067
|
right: unset;
|
2291
2068
|
}
|
2069
|
+
@charset "UTF-8";
|
2070
|
+
|
2071
|
+
/*!
|
2072
|
+
* Pikaday
|
2073
|
+
* Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
|
2074
|
+
*/
|
2075
|
+
|
2076
|
+
.pika-single {
|
2077
|
+
z-index: 9999;
|
2078
|
+
display: block;
|
2079
|
+
position: relative;
|
2080
|
+
color: #333;
|
2081
|
+
background: #fff;
|
2082
|
+
border: 1px solid #ccc;
|
2083
|
+
border-bottom-color: #bbb;
|
2084
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2085
|
+
}
|
2086
|
+
|
2087
|
+
/*
|
2088
|
+
clear child float (pika-lendar), using the famous micro clearfix hack
|
2089
|
+
http://nicolasgallagher.com/micro-clearfix-hack/
|
2090
|
+
*/
|
2091
|
+
.pika-single:before,
|
2092
|
+
.pika-single:after {
|
2093
|
+
content: " ";
|
2094
|
+
display: table;
|
2095
|
+
}
|
2096
|
+
.pika-single:after { clear: both }
|
2097
|
+
|
2098
|
+
.pika-single.is-hidden {
|
2099
|
+
display: none;
|
2100
|
+
}
|
2101
|
+
|
2102
|
+
.pika-single.is-bound {
|
2103
|
+
position: absolute;
|
2104
|
+
box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
|
2105
|
+
}
|
2106
|
+
|
2107
|
+
.pika-lendar {
|
2108
|
+
float: left;
|
2109
|
+
width: 240px;
|
2110
|
+
margin: 8px;
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
.pika-title {
|
2114
|
+
position: relative;
|
2115
|
+
text-align: center;
|
2116
|
+
}
|
2117
|
+
|
2118
|
+
.pika-label {
|
2119
|
+
display: inline-block;
|
2120
|
+
position: relative;
|
2121
|
+
z-index: 9999;
|
2122
|
+
overflow: hidden;
|
2123
|
+
margin: 0;
|
2124
|
+
padding: 5px 3px;
|
2125
|
+
font-size: 14px;
|
2126
|
+
line-height: 20px;
|
2127
|
+
font-weight: bold;
|
2128
|
+
background-color: #fff;
|
2129
|
+
}
|
2130
|
+
.pika-title select {
|
2131
|
+
cursor: pointer;
|
2132
|
+
position: absolute;
|
2133
|
+
z-index: 9998;
|
2134
|
+
margin: 0;
|
2135
|
+
left: 0;
|
2136
|
+
top: 5px;
|
2137
|
+
opacity: 0;
|
2138
|
+
}
|
2139
|
+
|
2140
|
+
.pika-prev,
|
2141
|
+
.pika-next {
|
2142
|
+
display: block;
|
2143
|
+
cursor: pointer;
|
2144
|
+
position: relative;
|
2145
|
+
outline: none;
|
2146
|
+
border: 0;
|
2147
|
+
padding: 0;
|
2148
|
+
width: 20px;
|
2149
|
+
height: 30px;
|
2150
|
+
/* hide text using text-indent trick, using width value (it's enough) */
|
2151
|
+
text-indent: 20px;
|
2152
|
+
white-space: nowrap;
|
2153
|
+
overflow: hidden;
|
2154
|
+
background-color: transparent;
|
2155
|
+
background-position: center center;
|
2156
|
+
background-repeat: no-repeat;
|
2157
|
+
background-size: 75% 75%;
|
2158
|
+
opacity: .5;
|
2159
|
+
}
|
2160
|
+
|
2161
|
+
.pika-prev:hover,
|
2162
|
+
.pika-next:hover {
|
2163
|
+
opacity: 1;
|
2164
|
+
}
|
2165
|
+
|
2166
|
+
.pika-prev,
|
2167
|
+
.is-rtl .pika-next {
|
2168
|
+
float: left;
|
2169
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==);
|
2170
|
+
}
|
2171
|
+
|
2172
|
+
.pika-next,
|
2173
|
+
.is-rtl .pika-prev {
|
2174
|
+
float: right;
|
2175
|
+
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=);
|
2176
|
+
}
|
2177
|
+
|
2178
|
+
.pika-prev.is-disabled,
|
2179
|
+
.pika-next.is-disabled {
|
2180
|
+
cursor: default;
|
2181
|
+
opacity: .2;
|
2182
|
+
}
|
2183
|
+
|
2184
|
+
.pika-select {
|
2185
|
+
display: inline-block;
|
2186
|
+
}
|
2187
|
+
|
2188
|
+
.pika-table {
|
2189
|
+
width: 100%;
|
2190
|
+
border-collapse: collapse;
|
2191
|
+
border-spacing: 0;
|
2192
|
+
border: 0;
|
2193
|
+
}
|
2194
|
+
|
2195
|
+
.pika-table th,
|
2196
|
+
.pika-table td {
|
2197
|
+
width: 14.285714285714286%;
|
2198
|
+
padding: 0;
|
2199
|
+
}
|
2200
|
+
|
2201
|
+
.pika-table th {
|
2202
|
+
color: #999;
|
2203
|
+
font-size: 12px;
|
2204
|
+
line-height: 25px;
|
2205
|
+
font-weight: bold;
|
2206
|
+
text-align: center;
|
2207
|
+
}
|
2208
|
+
|
2209
|
+
.pika-button {
|
2210
|
+
cursor: pointer;
|
2211
|
+
display: block;
|
2212
|
+
box-sizing: border-box;
|
2213
|
+
-moz-box-sizing: border-box;
|
2214
|
+
outline: none;
|
2215
|
+
border: 0;
|
2216
|
+
margin: 0;
|
2217
|
+
width: 100%;
|
2218
|
+
padding: 5px;
|
2219
|
+
color: #666;
|
2220
|
+
font-size: 12px;
|
2221
|
+
line-height: 15px;
|
2222
|
+
text-align: center;
|
2223
|
+
background: #f5f5f5;
|
2224
|
+
height: initial;
|
2225
|
+
}
|
2226
|
+
|
2227
|
+
.pika-week {
|
2228
|
+
font-size: 11px;
|
2229
|
+
color: #999;
|
2230
|
+
}
|
2231
|
+
|
2232
|
+
.is-today .pika-button {
|
2233
|
+
color: #33aaff;
|
2234
|
+
font-weight: bold;
|
2235
|
+
}
|
2236
|
+
|
2237
|
+
.is-selected .pika-button,
|
2238
|
+
.has-event .pika-button {
|
2239
|
+
color: #fff;
|
2240
|
+
font-weight: bold;
|
2241
|
+
background: #33aaff;
|
2242
|
+
box-shadow: inset 0 1px 3px #178fe5;
|
2243
|
+
border-radius: 3px;
|
2244
|
+
}
|
2245
|
+
|
2246
|
+
.has-event .pika-button {
|
2247
|
+
background: #005da9;
|
2248
|
+
box-shadow: inset 0 1px 3px #0076c9;
|
2249
|
+
}
|
2250
|
+
|
2251
|
+
.is-disabled .pika-button,
|
2252
|
+
.is-inrange .pika-button {
|
2253
|
+
background: #D5E9F7;
|
2254
|
+
}
|
2255
|
+
|
2256
|
+
.is-startrange .pika-button {
|
2257
|
+
color: #fff;
|
2258
|
+
background: #6CB31D;
|
2259
|
+
box-shadow: none;
|
2260
|
+
border-radius: 3px;
|
2261
|
+
}
|
2262
|
+
|
2263
|
+
.is-endrange .pika-button {
|
2264
|
+
color: #fff;
|
2265
|
+
background: #33aaff;
|
2266
|
+
box-shadow: none;
|
2267
|
+
border-radius: 3px;
|
2268
|
+
}
|
2269
|
+
|
2270
|
+
.is-disabled .pika-button {
|
2271
|
+
pointer-events: none;
|
2272
|
+
cursor: default;
|
2273
|
+
color: #999;
|
2274
|
+
opacity: .3;
|
2275
|
+
}
|
2276
|
+
|
2277
|
+
.is-outside-current-month .pika-button {
|
2278
|
+
color: #999;
|
2279
|
+
opacity: .3;
|
2280
|
+
}
|
2281
|
+
|
2282
|
+
.is-selection-disabled {
|
2283
|
+
pointer-events: none;
|
2284
|
+
cursor: default;
|
2285
|
+
}
|
2286
|
+
|
2287
|
+
.pika-button:hover,
|
2288
|
+
.pika-row.pick-whole-week:hover .pika-button {
|
2289
|
+
color: #fff;
|
2290
|
+
background: #ff8000;
|
2291
|
+
box-shadow: none;
|
2292
|
+
border-radius: 3px;
|
2293
|
+
}
|
2294
|
+
|
2295
|
+
/* styling for abbr */
|
2296
|
+
.pika-table abbr {
|
2297
|
+
border-bottom: none;
|
2298
|
+
cursor: help;
|
2299
|
+
}
|
2300
|
+
|