ui-kit-ck-consultant 0.6.66 → 0.6.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -933,91 +933,135 @@
933
933
  }
934
934
  ._3-lqN {
935
935
  width: 100%;
936
- border-radius: 8px;
936
+ border-radius: 10px;
937
937
  border-spacing: 0;
938
938
  border-collapse: unset;
939
939
  overflow: hidden;
940
940
  color: var(--black);
941
+ border: none;
942
+ box-shadow: none;
941
943
  }
942
944
 
945
+ /* Thead */
943
946
  ._1PGdH > tr > th {
944
- border-bottom: solid 1px var(--white);
947
+ border-bottom: solid 2px var(--secondary-color);
945
948
  color: var(--white);
946
949
  }
947
- ._1PGdH > tr > th:nth-child(1) {
948
- border-top-left-radius: 5px;
949
- }
950
- ._1PGdH > tr > th:nth-last-child(1) {
951
- border-top-right-radius: 5px;
952
- }
953
- ._1PGdH > tr > th:nth-child(1) {
954
- border-bottom-left-radius: 5px;
955
- }
956
- ._1PGdH > tr > th:nth-last-child(1) {
957
- border-bottom-right-radius: 5px;
958
- }
959
950
 
960
- /* .tbody > tr:nth-child(even) {
961
- background-color: var(--thirty-color);
962
- } */
951
+ /* Tr */
963
952
  ._2Xd8K {
964
- height: 40px;
953
+ height: 36px;
954
+ transition: background-color 0.2s ease;
965
955
  }
956
+
957
+ /* Th */
966
958
  ._2Qv_L {
967
- font-size: 13px;
968
- font-weight: bold;
959
+ font-size: 12px;
960
+ font-weight: 600;
969
961
  text-align: left;
962
+ text-transform: uppercase;
963
+ letter-spacing: 0.4px;
970
964
  padding: 0 8px;
971
965
  background-color: var(--secondary-color);
972
966
  border: 0;
973
967
  }
968
+
969
+ /* Td */
974
970
  ._2PYe5 {
975
971
  font-size: 13px;
976
972
  text-align: left;
977
973
  padding: 0 8px;
978
974
  }
979
975
 
976
+ /* Tbody cells - default (bordures blanches comme avant) */
980
977
  ._233g5 > tr > td {
981
978
  background-color: var(--thirty-color);
982
979
  border: solid 1px var(--white);
983
980
  border-radius: 5px;
981
+ transition: background-color 0.2s ease;
984
982
  }
985
983
  ._233g5 > tr > th {
986
984
  background-color: var(--fourth-color);
987
985
  border: solid 1px var(--white);
988
986
  border-radius: 5px;
987
+ transition: background-color 0.2s ease;
988
+ }
989
+ ._233g5 > tr > td:first-child,
990
+ ._233g5 > tr > th:first-child {
991
+ border-left: none;
992
+ }
993
+ ._233g5 > tr > td:last-child,
994
+ ._233g5 > tr > th:last-child {
995
+ border-right: none;
996
+ }
997
+ ._233g5 > tr:hover > td,
998
+ ._233g5 > tr:hover > th {
999
+ filter: brightness(0.95);
1000
+ }
1001
+
1002
+ /* Variant: bordered */
1003
+ ._1CWPs ._233g5 > tr > td {
1004
+ border-bottom: solid 1px var(--secondary-color);
1005
+ border-right: solid 1px var(--secondary-color);
1006
+ border-top: none;
1007
+ border-left: none;
1008
+ border-radius: 0;
989
1009
  }
990
- ._233g5 > tr > td:nth-child(1),
991
- ._233g5 > tr > th:nth-child(1) {
1010
+ ._1CWPs ._233g5 > tr > th {
1011
+ border-bottom: solid 1px var(--secondary-color);
1012
+ border-right: solid 1px var(--secondary-color);
1013
+ border-top: none;
992
1014
  border-left: none;
1015
+ border-radius: 0;
993
1016
  }
994
- ._233g5 > tr > td:nth-last-child(1),
995
- ._233g5 > tr > th:nth-last-child(1) {
1017
+ ._1CWPs ._233g5 > tr > td:last-child,
1018
+ ._1CWPs ._233g5 > tr > th:last-child {
996
1019
  border-right: none;
997
1020
  }
1021
+ ._1CWPs ._233g5 > tr:last-child > td,
1022
+ ._1CWPs ._233g5 > tr:last-child > th {
1023
+ border-bottom: none;
1024
+ }
998
1025
 
1026
+ /* Variant: striped */
1027
+ ._1bgLC ._233g5 > tr > td {
1028
+ border: none;
1029
+ border-radius: 0;
1030
+ }
1031
+ ._1bgLC ._233g5 > tr > th {
1032
+ border: none;
1033
+ border-radius: 0;
1034
+ }
1035
+ ._1bgLC ._233g5 > tr > td:first-child,
1036
+ ._1bgLC ._233g5 > tr > th:first-child {
1037
+ border-left: none;
1038
+ }
1039
+ ._1bgLC ._233g5 > tr > td:last-child,
1040
+ ._1bgLC ._233g5 > tr > th:last-child {
1041
+ border-right: none;
1042
+ }
1043
+ ._1bgLC ._233g5 > tr:nth-child(even) > td {
1044
+ background-color: var(--white);
1045
+ }
1046
+ ._1bgLC ._233g5 > tr:nth-child(even) > th {
1047
+ filter: brightness(1.05);
1048
+ }
1049
+
1050
+ /* Spacing */
999
1051
  ._1kRJw {
1000
1052
  border-left: 2px solid var(--white) !important;
1001
- border-top-left-radius: 5px !important;
1002
- border-bottom-left-radius: 5px !important;
1003
1053
  }
1004
1054
  ._2GJJR {
1005
1055
  border-right: 2px solid var(--white) !important;
1006
- border-top-right-radius: 5px !important;
1007
- border-bottom-right-radius: 5px !important;
1008
1056
  }
1009
-
1010
1057
  ._rlvd2 {
1011
1058
  border-left: none !important;
1012
- border-top-left-radius: 0 !important;
1013
- border-bottom-left-radius: 0 !important;
1014
1059
  }
1015
1060
  ._1bfhm {
1016
1061
  border-right: none !important;
1017
- border-top-right-radius: 0 !important;
1018
- border-bottom-right-radius: 0 !important;
1019
1062
  }
1020
1063
 
1064
+ /* Radius */
1021
1065
  ._13Ppk {
1022
1066
  border-top-left-radius: 15px !important;
1023
1067
  }
@@ -1030,88 +1074,73 @@
1030
1074
  ._1BGJ7 {
1031
1075
  border-bottom-right-radius: 15px !important;
1032
1076
  }
1077
+
1033
1078
  ._2PDEz {
1034
1079
  opacity: 0;
1035
1080
  }
1036
1081
 
1037
- ._2C7Rd._13Ppk tbody td,
1038
- ._2C7Rd._13Ppk tbody th{
1039
- border-top-left-radius: 15px;
1040
- }
1041
-
1042
- ._2C7Rd._fbcd6 tbody td,
1043
- ._2C7Rd._fbcd6 tbody th{
1044
- border-top-right-radius: 15px;
1045
- }
1046
-
1082
+ /* Empty state */
1047
1083
  ._2C7Rd tbody td,
1048
- ._2C7Rd tbody th{
1049
- border-bottom-left-radius: 15px;
1050
- border-bottom-right-radius: 15px;
1084
+ ._2C7Rd tbody th {
1051
1085
  border: 2px solid var(--secondary-color);
1052
1086
  }
1053
-
1054
- ._2C7Rd th{
1087
+ ._2C7Rd th {
1055
1088
  border-left: 2px solid var(--secondary-color);
1056
1089
  }
1057
-
1058
1090
  ._2C7Rd td {
1059
- font-weight: bold;
1060
- }
1061
-
1062
- ._2C7Rd ._1PGdH > tr > th:nth-child(1) {
1063
- border-bottom-left-radius: 0px;
1064
- }
1065
- ._2C7Rd ._1PGdH > tr > th:nth-last-child(1) {
1066
- border-bottom-right-radius: 0px;
1091
+ font-weight: 600;
1067
1092
  }
1068
1093
 
1069
1094
  ._m264U {
1070
1095
  text-align: center;
1071
- padding: 40px;
1096
+ padding: 48px 24px;
1097
+ color: var(--black);
1098
+ opacity: 0.6;
1099
+ font-size: 14px;
1072
1100
  }
1073
1101
 
1074
1102
  @media screen and (max-width: 640px) {
1075
1103
  ._m264U {
1076
- padding: 30px 20;
1104
+ padding: 30px 20px;
1077
1105
  }
1078
1106
  }
1079
1107
 
1080
1108
  @media screen and (max-width: 320px) {
1081
1109
  ._m264U {
1082
- padding: 20px 10;
1110
+ padding: 20px 10px;
1083
1111
  }
1084
1112
  }
1085
1113
 
1114
+ /* Sort */
1086
1115
  ._xh9IF {
1087
1116
  display: flex;
1117
+ align-items: center;
1088
1118
  }
1089
-
1090
1119
  ._xh9IF > span {
1091
1120
  display: inline-block;
1092
- margin-top: auto;
1093
- margin-bottom: auto;
1094
1121
  }
1095
1122
 
1096
1123
  ._oKNIv {
1097
1124
  cursor: pointer;
1098
1125
  white-space: nowrap;
1126
+ -webkit-user-select: none;
1127
+ -moz-user-select: none;
1128
+ user-select: none;
1129
+ }
1130
+ ._oKNIv:hover {
1131
+ filter: brightness(0.9);
1099
1132
  }
1100
1133
 
1101
1134
  ._32oyq {
1102
1135
  display: inline-flex;
1103
- flex-direction: row;
1104
- display: inline-block;
1105
- text-align: right;
1106
- margin-left: 10px;
1107
- margin-top: auto;
1108
- margin-bottom: auto;
1136
+ flex-direction: column;
1137
+ align-items: center;
1138
+ margin-left: 6px;
1139
+ opacity: 0.7;
1140
+ transition: opacity 0.2s ease;
1109
1141
  }
1110
-
1111
- ._32oyq {
1112
- display: inline-block;
1113
- text-align: right;
1114
- margin-left: auto;
1142
+ ._oKNIv:hover ._32oyq {
1143
+ opacity: 1;
1115
1144
  }
1116
1145
 
1117
1146
  ._JJyUj {
@@ -1282,23 +1311,19 @@
1282
1311
  }
1283
1312
 
1284
1313
  ._8eH6Y span:nth-child(1) {
1285
- -webkit-animation: _19crY 1s ease-in-out infinite;
1286
- animation: _19crY 1s ease-in-out infinite;
1314
+ animation: _19crY 1s ease-in-out infinite;
1287
1315
  }
1288
1316
 
1289
1317
  ._8eH6Y span:nth-child(2) {
1290
- -webkit-animation: _19crY 1s ease-in-out 0.15s infinite;
1291
- animation: _19crY 1s ease-in-out 0.15s infinite;
1318
+ animation: _19crY 1s ease-in-out 0.15s infinite;
1292
1319
  }
1293
1320
 
1294
1321
  ._8eH6Y span:nth-child(3) {
1295
- -webkit-animation: _19crY 1s ease-in-out 0.3s infinite;
1296
- animation: _19crY 1s ease-in-out 0.3s infinite;
1322
+ animation: _19crY 1s ease-in-out 0.3s infinite;
1297
1323
  }
1298
1324
 
1299
1325
  ._8eH6Y span:nth-child(4) {
1300
- -webkit-animation: _19crY 1s ease-in-out 0.45s infinite;
1301
- animation: _19crY 1s ease-in-out 0.45s infinite;
1326
+ animation: _19crY 1s ease-in-out 0.45s infinite;
1302
1327
  }
1303
1328
 
1304
1329
  ._3BnES {
@@ -1312,17 +1337,6 @@
1312
1337
  z-index: 10;
1313
1338
  }
1314
1339
 
1315
- @-webkit-keyframes _19crY {
1316
- 0%,
1317
- 100% {
1318
- transform: scaleY(1);
1319
- }
1320
-
1321
- 50% {
1322
- transform: scaleY(1.8);
1323
- }
1324
- }
1325
-
1326
1340
  @keyframes _19crY {
1327
1341
  0%,
1328
1342
  100% {
@@ -1987,6 +2001,14 @@
1987
2001
  padding-right: 10px;
1988
2002
  }
1989
2003
 
2004
+ /* Optional custom actions rendered on the tabs line (between the tabs and
2005
+ the "+" add button), vertically centered with the tabs. */
2006
+ ._2D1bS {
2007
+ display: flex;
2008
+ align-items: center;
2009
+ flex-shrink: 0;
2010
+ }
2011
+
1990
2012
  ._2cxzo {
1991
2013
  display: flex;
1992
2014
  width: 100%;
@@ -2412,34 +2434,19 @@
2412
2434
  }
2413
2435
 
2414
2436
  ._3ysPX span:nth-child(1) {
2415
- -webkit-animation: _971Mp 1s ease-in-out infinite;
2416
- animation: _971Mp 1s ease-in-out infinite;
2437
+ animation: _971Mp 1s ease-in-out infinite;
2417
2438
  }
2418
2439
 
2419
2440
  ._3ysPX span:nth-child(2) {
2420
- -webkit-animation: _971Mp 1s ease-in-out 0.15s infinite;
2421
- animation: _971Mp 1s ease-in-out 0.15s infinite;
2441
+ animation: _971Mp 1s ease-in-out 0.15s infinite;
2422
2442
  }
2423
2443
 
2424
2444
  ._3ysPX span:nth-child(3) {
2425
- -webkit-animation: _971Mp 1s ease-in-out 0.3s infinite;
2426
- animation: _971Mp 1s ease-in-out 0.3s infinite;
2445
+ animation: _971Mp 1s ease-in-out 0.3s infinite;
2427
2446
  }
2428
2447
 
2429
2448
  ._3ysPX span:nth-child(4) {
2430
- -webkit-animation: _971Mp 1s ease-in-out 0.45s infinite;
2431
- animation: _971Mp 1s ease-in-out 0.45s infinite;
2432
- }
2433
-
2434
- @-webkit-keyframes _971Mp {
2435
- 0%,
2436
- 100% {
2437
- transform: scaleY(1);
2438
- }
2439
-
2440
- 50% {
2441
- transform: scaleY(1.8);
2442
- }
2449
+ animation: _971Mp 1s ease-in-out 0.45s infinite;
2443
2450
  }
2444
2451
 
2445
2452
  @keyframes _971Mp {