@useblu/ocean-core 1.30.1 → 1.31.0
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/CHANGELOG.md +18 -0
- package/ocean.css +911 -464
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
package/ocean.css
CHANGED
|
@@ -1075,6 +1075,226 @@
|
|
|
1075
1075
|
color: #b6b9cc;
|
|
1076
1076
|
}
|
|
1077
1077
|
|
|
1078
|
+
.ods-file-uploader {
|
|
1079
|
+
align-items: center;
|
|
1080
|
+
background-color: white;
|
|
1081
|
+
display: flex;
|
|
1082
|
+
flex-direction: column;
|
|
1083
|
+
width: 100%;
|
|
1084
|
+
}
|
|
1085
|
+
.ods-file-uploader input {
|
|
1086
|
+
display: none;
|
|
1087
|
+
}
|
|
1088
|
+
.ods-file-uploader__dropzone {
|
|
1089
|
+
margin-bottom: 8px;
|
|
1090
|
+
width: 100%;
|
|
1091
|
+
}
|
|
1092
|
+
.ods-file-uploader__trigger {
|
|
1093
|
+
align-items: center;
|
|
1094
|
+
background: white;
|
|
1095
|
+
border: 1px dashed #d8dae8;
|
|
1096
|
+
border-radius: 8px;
|
|
1097
|
+
box-sizing: border-box;
|
|
1098
|
+
display: flex;
|
|
1099
|
+
flex-direction: column;
|
|
1100
|
+
justify-content: center;
|
|
1101
|
+
min-height: 128px;
|
|
1102
|
+
padding: 24px 16px;
|
|
1103
|
+
width: 100%;
|
|
1104
|
+
}
|
|
1105
|
+
.ods-file-uploader__trigger--drag {
|
|
1106
|
+
background: #f7f9ff;
|
|
1107
|
+
border: 1px dashed #0025e0;
|
|
1108
|
+
}
|
|
1109
|
+
.ods-file-uploader--error .ods-file-uploader__trigger {
|
|
1110
|
+
border: 1px dashed #f5456e;
|
|
1111
|
+
}
|
|
1112
|
+
.ods-file-uploader__trigger-icon {
|
|
1113
|
+
color: #0025e0;
|
|
1114
|
+
}
|
|
1115
|
+
.ods-file-uploader__title {
|
|
1116
|
+
color: #393b47;
|
|
1117
|
+
display: block;
|
|
1118
|
+
font-size: 14px;
|
|
1119
|
+
font-weight: 400;
|
|
1120
|
+
line-height: 21px;
|
|
1121
|
+
margin: 8px 0;
|
|
1122
|
+
text-align: center;
|
|
1123
|
+
}
|
|
1124
|
+
@media (max-width: 575.98px) {
|
|
1125
|
+
.ods-file-uploader__title {
|
|
1126
|
+
display: none;
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
.ods-file-uploader__title--mobile {
|
|
1130
|
+
color: #393b47;
|
|
1131
|
+
display: block;
|
|
1132
|
+
font-size: 14px;
|
|
1133
|
+
line-height: 21px;
|
|
1134
|
+
margin: 8px 0;
|
|
1135
|
+
text-align: center;
|
|
1136
|
+
}
|
|
1137
|
+
@media (min-width: 576px) {
|
|
1138
|
+
.ods-file-uploader__title--mobile {
|
|
1139
|
+
display: none;
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1142
|
+
.ods-file-uploader__title--mobile a {
|
|
1143
|
+
font-size: 14px;
|
|
1144
|
+
margin-left: 4px;
|
|
1145
|
+
white-space: nowrap;
|
|
1146
|
+
}
|
|
1147
|
+
.ods-file-uploader__title a {
|
|
1148
|
+
font-size: 14px;
|
|
1149
|
+
margin-left: 4px;
|
|
1150
|
+
}
|
|
1151
|
+
.ods-file-uploader__title a:hover {
|
|
1152
|
+
cursor: pointer;
|
|
1153
|
+
text-decoration: underline;
|
|
1154
|
+
}
|
|
1155
|
+
.ods-file-uploader__subtitle {
|
|
1156
|
+
align-items: center;
|
|
1157
|
+
color: #b6b9cc;
|
|
1158
|
+
display: flex;
|
|
1159
|
+
font-size: 12px;
|
|
1160
|
+
font-weight: 400;
|
|
1161
|
+
line-height: 18px;
|
|
1162
|
+
margin: 0;
|
|
1163
|
+
text-align: center;
|
|
1164
|
+
}
|
|
1165
|
+
@-webkit-keyframes ods-file-animation {
|
|
1166
|
+
0% {
|
|
1167
|
+
opacity: 0;
|
|
1168
|
+
}
|
|
1169
|
+
100% {
|
|
1170
|
+
opacity: 1;
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
@keyframes ods-file-animation {
|
|
1174
|
+
0% {
|
|
1175
|
+
opacity: 0;
|
|
1176
|
+
}
|
|
1177
|
+
100% {
|
|
1178
|
+
opacity: 1;
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
@-webkit-keyframes ods-file-animation-out {
|
|
1182
|
+
0% {
|
|
1183
|
+
opacity: 1;
|
|
1184
|
+
}
|
|
1185
|
+
100% {
|
|
1186
|
+
opacity: 0;
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
@keyframes ods-file-animation-out {
|
|
1190
|
+
0% {
|
|
1191
|
+
opacity: 1;
|
|
1192
|
+
}
|
|
1193
|
+
100% {
|
|
1194
|
+
opacity: 0;
|
|
1195
|
+
}
|
|
1196
|
+
}
|
|
1197
|
+
.ods-file-uploader__file {
|
|
1198
|
+
align-items: center;
|
|
1199
|
+
-webkit-animation: ods-file-animation 0.2s linear;
|
|
1200
|
+
animation: ods-file-animation 0.2s linear;
|
|
1201
|
+
background: white;
|
|
1202
|
+
border: 1px solid #d8dae8;
|
|
1203
|
+
border-radius: 8px;
|
|
1204
|
+
box-sizing: border-box;
|
|
1205
|
+
display: flex;
|
|
1206
|
+
flex-direction: row;
|
|
1207
|
+
height: 48px;
|
|
1208
|
+
justify-content: space-between;
|
|
1209
|
+
margin-top: 8px;
|
|
1210
|
+
padding: 0 4px;
|
|
1211
|
+
width: 100%;
|
|
1212
|
+
}
|
|
1213
|
+
.ods-file-uploader__file.removed {
|
|
1214
|
+
-webkit-animation: ods-file-animation-out 0.2s linear;
|
|
1215
|
+
animation: ods-file-animation-out 0.2s linear;
|
|
1216
|
+
}
|
|
1217
|
+
.ods-file-uploader__file--warning {
|
|
1218
|
+
border: 1px solid #ff8a14;
|
|
1219
|
+
}
|
|
1220
|
+
.ods-file-uploader__file--success {
|
|
1221
|
+
border: 1px solid #b8c3ff;
|
|
1222
|
+
}
|
|
1223
|
+
.ods-file-uploader__file--idle {
|
|
1224
|
+
border: 1px solid #ebecf5;
|
|
1225
|
+
}
|
|
1226
|
+
.ods-file-uploader__file--loading {
|
|
1227
|
+
border: 1px solid #ebecf5;
|
|
1228
|
+
}
|
|
1229
|
+
.ods-file-uploader__file--idle .ods-file-uploader__file-status {
|
|
1230
|
+
color: #b8c3ff;
|
|
1231
|
+
opacity: 0.4;
|
|
1232
|
+
}
|
|
1233
|
+
.ods-file-uploader__file--warning .ods-file-uploader__file-status {
|
|
1234
|
+
color: #ff8a14;
|
|
1235
|
+
}
|
|
1236
|
+
.ods-file-uploader__file--success .ods-file-uploader__file-status {
|
|
1237
|
+
color: #3dcc64;
|
|
1238
|
+
}
|
|
1239
|
+
.ods-file-uploader__file--error {
|
|
1240
|
+
border: 1px solid #f5456e;
|
|
1241
|
+
}
|
|
1242
|
+
.ods-file-uploader__file--error .ods-file-uploader__file-status {
|
|
1243
|
+
color: #f5456e;
|
|
1244
|
+
}
|
|
1245
|
+
.ods-file-uploader__file-actions {
|
|
1246
|
+
display: flex;
|
|
1247
|
+
flex-direction: row;
|
|
1248
|
+
justify-content: center;
|
|
1249
|
+
}
|
|
1250
|
+
.ods-file-uploader__file-actions .ods-icon-btn {
|
|
1251
|
+
color: #b6b9cc;
|
|
1252
|
+
}
|
|
1253
|
+
.ods-file-uploader__file-actions .ods-icon-btn:hover {
|
|
1254
|
+
color: #0025e0;
|
|
1255
|
+
}
|
|
1256
|
+
.ods-file-uploader__warning_message, .ods-file-uploader__error_message {
|
|
1257
|
+
font-size: 12px;
|
|
1258
|
+
font-style: normal;
|
|
1259
|
+
font-weight: 400;
|
|
1260
|
+
line-height: 18px;
|
|
1261
|
+
margin: 4px 0;
|
|
1262
|
+
width: 100%;
|
|
1263
|
+
}
|
|
1264
|
+
.ods-file-uploader__warning_message {
|
|
1265
|
+
color: #ff8a14;
|
|
1266
|
+
}
|
|
1267
|
+
.ods-file-uploader__error_message {
|
|
1268
|
+
color: #f5456e;
|
|
1269
|
+
}
|
|
1270
|
+
.ods-file-uploader__file-name {
|
|
1271
|
+
color: #393b47;
|
|
1272
|
+
font-size: 14px;
|
|
1273
|
+
font-weight: 400;
|
|
1274
|
+
line-height: 21px;
|
|
1275
|
+
margin: 0 8px 0 0;
|
|
1276
|
+
overflow: hidden;
|
|
1277
|
+
text-overflow: ellipsis;
|
|
1278
|
+
white-space: nowrap;
|
|
1279
|
+
width: 100%;
|
|
1280
|
+
}
|
|
1281
|
+
.ods-file-uploader__file-loading {
|
|
1282
|
+
align-items: center;
|
|
1283
|
+
display: flex;
|
|
1284
|
+
height: 20px;
|
|
1285
|
+
justify-content: center;
|
|
1286
|
+
width: 20px;
|
|
1287
|
+
}
|
|
1288
|
+
.ods-file-uploader__file-status {
|
|
1289
|
+
display: flex;
|
|
1290
|
+
justify-content: center;
|
|
1291
|
+
margin: 0 8px;
|
|
1292
|
+
}
|
|
1293
|
+
.ods-file-uploader__file-status svg {
|
|
1294
|
+
height: 20px;
|
|
1295
|
+
width: 20px;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1078
1298
|
.ods-input {
|
|
1079
1299
|
align-items: center;
|
|
1080
1300
|
background-color: white;
|
|
@@ -1089,6 +1309,7 @@
|
|
|
1089
1309
|
border-radius: 4px;
|
|
1090
1310
|
box-sizing: border-box;
|
|
1091
1311
|
color: #393b47;
|
|
1312
|
+
font-family: "Nunito Sans";
|
|
1092
1313
|
font-size: 16px;
|
|
1093
1314
|
font-weight: 400;
|
|
1094
1315
|
height: 100%;
|
|
@@ -1099,22 +1320,19 @@
|
|
|
1099
1320
|
}
|
|
1100
1321
|
.ods-input input::-moz-placeholder {
|
|
1101
1322
|
color: #d8dae8;
|
|
1323
|
+
font-weight: 400;
|
|
1102
1324
|
}
|
|
1103
1325
|
.ods-input input:-ms-input-placeholder {
|
|
1104
1326
|
color: #d8dae8;
|
|
1327
|
+
font-weight: 400;
|
|
1105
1328
|
}
|
|
1106
1329
|
.ods-input input::placeholder {
|
|
1107
1330
|
color: #d8dae8;
|
|
1331
|
+
font-weight: 400;
|
|
1108
1332
|
}
|
|
1109
1333
|
.ods-input__number-controls {
|
|
1110
1334
|
cursor: pointer;
|
|
1111
1335
|
}
|
|
1112
|
-
.ods-input__adornment {
|
|
1113
|
-
align-items: center;
|
|
1114
|
-
display: flex;
|
|
1115
|
-
height: 100%;
|
|
1116
|
-
padding-right: 16px;
|
|
1117
|
-
}
|
|
1118
1336
|
.ods-input:hover, .ods-input:focus, .ods-input:active {
|
|
1119
1337
|
border-color: #5872f5;
|
|
1120
1338
|
border-width: 2px;
|
|
@@ -1124,11 +1342,15 @@
|
|
|
1124
1342
|
flex-direction: row-reverse;
|
|
1125
1343
|
}
|
|
1126
1344
|
.ods-input--left input {
|
|
1127
|
-
padding: 0
|
|
1345
|
+
padding: 0 16px;
|
|
1128
1346
|
}
|
|
1129
1347
|
.ods-input--left .ods-input__adornment {
|
|
1348
|
+
margin-right: -12px;
|
|
1130
1349
|
padding: 0 0 0 16px;
|
|
1131
1350
|
}
|
|
1351
|
+
.ods-input--right .ods-input__adornment {
|
|
1352
|
+
margin-left: -12px;
|
|
1353
|
+
}
|
|
1132
1354
|
.ods-input--disabled {
|
|
1133
1355
|
background-color: #ebecf5;
|
|
1134
1356
|
border-color: #ebecf5;
|
|
@@ -1138,9 +1360,6 @@
|
|
|
1138
1360
|
color: #b6b9cc;
|
|
1139
1361
|
cursor: not-allowed;
|
|
1140
1362
|
}
|
|
1141
|
-
.ods-input--disabled--text .ods-input__adornment {
|
|
1142
|
-
opacity: 0.3;
|
|
1143
|
-
}
|
|
1144
1363
|
.ods-input--disabled:hover, .ods-input--disabled:focus, .ods-input--disabled:active {
|
|
1145
1364
|
border-color: #ebecf5;
|
|
1146
1365
|
}
|
|
@@ -1150,8 +1369,24 @@
|
|
|
1150
1369
|
.ods-input--error {
|
|
1151
1370
|
border-color: #f5456e;
|
|
1152
1371
|
}
|
|
1372
|
+
.ods-input__adornment {
|
|
1373
|
+
align-items: center;
|
|
1374
|
+
color: #393b47;
|
|
1375
|
+
display: flex;
|
|
1376
|
+
height: 100%;
|
|
1377
|
+
padding-right: 16px;
|
|
1378
|
+
}
|
|
1379
|
+
.ods-input__adornment--placeholder {
|
|
1380
|
+
color: #d8dae8;
|
|
1381
|
+
}
|
|
1382
|
+
.ods-input__adornment input {
|
|
1383
|
+
padding: 0 4px;
|
|
1384
|
+
}
|
|
1153
1385
|
|
|
1154
|
-
.ods-input--amount {
|
|
1386
|
+
.ods-input--amount .ods-input--root {
|
|
1387
|
+
align-items: center;
|
|
1388
|
+
display: flex;
|
|
1389
|
+
margin: 1px;
|
|
1155
1390
|
width: 100%;
|
|
1156
1391
|
}
|
|
1157
1392
|
.ods-input--amount input {
|
|
@@ -1404,6 +1639,7 @@
|
|
|
1404
1639
|
}
|
|
1405
1640
|
|
|
1406
1641
|
.ods-select__root {
|
|
1642
|
+
margin: 1px;
|
|
1407
1643
|
min-width: 237px;
|
|
1408
1644
|
}
|
|
1409
1645
|
.ods-select__control {
|
|
@@ -1444,8 +1680,8 @@
|
|
|
1444
1680
|
}
|
|
1445
1681
|
.ods-select__value {
|
|
1446
1682
|
flex: 1;
|
|
1683
|
+
font-size: 16px;
|
|
1447
1684
|
font-weight: 400;
|
|
1448
|
-
line-height: 1.1;
|
|
1449
1685
|
overflow: hidden;
|
|
1450
1686
|
text-overflow: ellipsis;
|
|
1451
1687
|
white-space: nowrap;
|
|
@@ -1454,22 +1690,17 @@
|
|
|
1454
1690
|
color: #d8dae8;
|
|
1455
1691
|
}
|
|
1456
1692
|
.ods-select__arrow {
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
display: inline-block;
|
|
1460
|
-
margin-left: 16px;
|
|
1461
|
-
padding: 3px;
|
|
1693
|
+
display: flex;
|
|
1694
|
+
justify-self: center;
|
|
1462
1695
|
}
|
|
1463
1696
|
.ods-select__arrow--up {
|
|
1464
|
-
|
|
1465
|
-
transform: rotate(-135deg);
|
|
1697
|
+
transform: rotate(-180deg);
|
|
1466
1698
|
}
|
|
1467
1699
|
.ods-select__arrow--down {
|
|
1468
|
-
|
|
1469
|
-
transform: rotate(45deg);
|
|
1700
|
+
transform: rotate(0);
|
|
1470
1701
|
}
|
|
1471
1702
|
.ods-select__arrow--disabled {
|
|
1472
|
-
|
|
1703
|
+
color: #b6b9cc;
|
|
1473
1704
|
}
|
|
1474
1705
|
.ods-select__listbox-wrapper {
|
|
1475
1706
|
position: relative;
|
|
@@ -1523,117 +1754,39 @@
|
|
|
1523
1754
|
font-weight: 400;
|
|
1524
1755
|
}
|
|
1525
1756
|
|
|
1526
|
-
.ods-
|
|
1527
|
-
|
|
1757
|
+
.ods-alert {
|
|
1758
|
+
align-items: center;
|
|
1759
|
+
background-color: #f7f9ff;
|
|
1760
|
+
border-radius: 8px;
|
|
1761
|
+
color: #67697a;
|
|
1762
|
+
display: flex;
|
|
1763
|
+
font-family: "Nunito Sans";
|
|
1764
|
+
font-size: 12px;
|
|
1765
|
+
font-weight: 400;
|
|
1766
|
+
justify-content: left;
|
|
1767
|
+
line-height: 1.5;
|
|
1768
|
+
padding: 16px;
|
|
1528
1769
|
}
|
|
1529
|
-
.ods-
|
|
1530
|
-
color: #
|
|
1531
|
-
font-family: "Avenir";
|
|
1532
|
-
font-weight: 800;
|
|
1533
|
-
line-height: 1.1;
|
|
1534
|
-
font-size: 32px;
|
|
1770
|
+
.ods-alert--error {
|
|
1771
|
+
background-color: #fff1f4;
|
|
1535
1772
|
}
|
|
1536
|
-
.ods-
|
|
1537
|
-
|
|
1538
|
-
font-family: "Avenir";
|
|
1539
|
-
font-weight: 800;
|
|
1540
|
-
line-height: 1.1;
|
|
1541
|
-
font-size: 24px;
|
|
1773
|
+
.ods-alert--error .ods-alert__icon {
|
|
1774
|
+
stroke: #f5456e;
|
|
1542
1775
|
}
|
|
1543
|
-
.ods-
|
|
1544
|
-
color: #
|
|
1545
|
-
font-family: "Avenir";
|
|
1546
|
-
font-weight: 800;
|
|
1547
|
-
line-height: 1.1;
|
|
1548
|
-
font-size: 20px;
|
|
1776
|
+
.ods-alert--error .ods-alert__title {
|
|
1777
|
+
color: #f5456e;
|
|
1549
1778
|
}
|
|
1550
|
-
.ods-
|
|
1551
|
-
color: #
|
|
1552
|
-
font-family: "Avenir";
|
|
1553
|
-
font-weight: 800;
|
|
1554
|
-
line-height: 1.1;
|
|
1555
|
-
font-size: 16px;
|
|
1556
|
-
font-weight: 700;
|
|
1557
|
-
line-height: 1.1;
|
|
1779
|
+
.ods-alert--warning {
|
|
1780
|
+
background-color: #fff7f0;
|
|
1558
1781
|
}
|
|
1559
|
-
.ods-
|
|
1560
|
-
|
|
1561
|
-
font-family: "Nunito Sans";
|
|
1562
|
-
font-weight: 400;
|
|
1563
|
-
line-height: 1.1;
|
|
1564
|
-
font-size: 24px;
|
|
1782
|
+
.ods-alert--warning .ods-alert__icon {
|
|
1783
|
+
stroke: #ff8a14;
|
|
1565
1784
|
}
|
|
1566
|
-
.ods-
|
|
1567
|
-
color: #
|
|
1568
|
-
font-family: "Nunito Sans";
|
|
1569
|
-
font-weight: 400;
|
|
1570
|
-
line-height: 1.1;
|
|
1571
|
-
font-size: 20px;
|
|
1785
|
+
.ods-alert--warning .ods-alert__title {
|
|
1786
|
+
color: #ff8a14;
|
|
1572
1787
|
}
|
|
1573
|
-
.ods-
|
|
1574
|
-
color: #
|
|
1575
|
-
font-family: "Nunito Sans";
|
|
1576
|
-
font-weight: 400;
|
|
1577
|
-
line-height: 1.5;
|
|
1578
|
-
font-size: 16px;
|
|
1579
|
-
}
|
|
1580
|
-
.ods-typography__lead {
|
|
1581
|
-
color: #393b47;
|
|
1582
|
-
font-family: "Nunito Sans";
|
|
1583
|
-
font-size: 20px;
|
|
1584
|
-
font-weight: 700;
|
|
1585
|
-
}
|
|
1586
|
-
.ods-typography__description {
|
|
1587
|
-
color: #67697a;
|
|
1588
|
-
font-family: "Nunito Sans";
|
|
1589
|
-
font-weight: 400;
|
|
1590
|
-
line-height: 1.5;
|
|
1591
|
-
font-size: 14px;
|
|
1592
|
-
}
|
|
1593
|
-
.ods-typography__caption {
|
|
1594
|
-
color: #67697a;
|
|
1595
|
-
font-family: "Nunito Sans";
|
|
1596
|
-
font-weight: 400;
|
|
1597
|
-
line-height: 1.5;
|
|
1598
|
-
font-size: 12px;
|
|
1599
|
-
}
|
|
1600
|
-
.ods-typography--inverse {
|
|
1601
|
-
color: white;
|
|
1602
|
-
}
|
|
1603
|
-
|
|
1604
|
-
.ods-alert {
|
|
1605
|
-
align-items: center;
|
|
1606
|
-
background-color: #f7f9ff;
|
|
1607
|
-
border-radius: 8px;
|
|
1608
|
-
color: #67697a;
|
|
1609
|
-
display: flex;
|
|
1610
|
-
font-family: "Nunito Sans";
|
|
1611
|
-
font-size: 12px;
|
|
1612
|
-
font-weight: 400;
|
|
1613
|
-
justify-content: left;
|
|
1614
|
-
line-height: 1.5;
|
|
1615
|
-
padding: 16px;
|
|
1616
|
-
}
|
|
1617
|
-
.ods-alert--error {
|
|
1618
|
-
background-color: #fff1f4;
|
|
1619
|
-
}
|
|
1620
|
-
.ods-alert--error .ods-alert__icon {
|
|
1621
|
-
stroke: #f5456e;
|
|
1622
|
-
}
|
|
1623
|
-
.ods-alert--error .ods-alert__title {
|
|
1624
|
-
color: #f5456e;
|
|
1625
|
-
}
|
|
1626
|
-
.ods-alert--warning {
|
|
1627
|
-
background-color: #fff7f0;
|
|
1628
|
-
}
|
|
1629
|
-
.ods-alert--warning .ods-alert__icon {
|
|
1630
|
-
stroke: #ff8a14;
|
|
1631
|
-
}
|
|
1632
|
-
.ods-alert--warning .ods-alert__title {
|
|
1633
|
-
color: #ff8a14;
|
|
1634
|
-
}
|
|
1635
|
-
.ods-alert--success {
|
|
1636
|
-
background-color: #f2fdf5;
|
|
1788
|
+
.ods-alert--success {
|
|
1789
|
+
background-color: #f2fdf5;
|
|
1637
1790
|
}
|
|
1638
1791
|
.ods-alert--success .ods-alert__icon {
|
|
1639
1792
|
stroke: #2da94f;
|
|
@@ -1663,6 +1816,202 @@
|
|
|
1663
1816
|
line-height: 1.5;
|
|
1664
1817
|
}
|
|
1665
1818
|
|
|
1819
|
+
.ods-badge {
|
|
1820
|
+
display: flex;
|
|
1821
|
+
font-family: "Nunito Sans";
|
|
1822
|
+
}
|
|
1823
|
+
.ods-badge__content {
|
|
1824
|
+
align-items: center;
|
|
1825
|
+
background-color: #ff726e;
|
|
1826
|
+
border-radius: 40px;
|
|
1827
|
+
box-sizing: border-box;
|
|
1828
|
+
color: white;
|
|
1829
|
+
display: flex;
|
|
1830
|
+
font-weight: 700;
|
|
1831
|
+
justify-content: center;
|
|
1832
|
+
white-space: nowrap;
|
|
1833
|
+
width: auto;
|
|
1834
|
+
}
|
|
1835
|
+
.ods-badge--medium .ods-badge__content {
|
|
1836
|
+
font-size: 12px;
|
|
1837
|
+
height: 24px;
|
|
1838
|
+
line-height: 24px;
|
|
1839
|
+
min-width: 24px;
|
|
1840
|
+
width: 24px;
|
|
1841
|
+
}
|
|
1842
|
+
.ods-badge--small .ods-badge__content {
|
|
1843
|
+
font-size: 10px;
|
|
1844
|
+
height: 16px;
|
|
1845
|
+
line-height: 16px;
|
|
1846
|
+
min-width: 16px;
|
|
1847
|
+
}
|
|
1848
|
+
.ods-badge--tiny .ods-badge__content {
|
|
1849
|
+
display: block;
|
|
1850
|
+
font-size: 10px;
|
|
1851
|
+
height: 8px;
|
|
1852
|
+
line-height: 8px;
|
|
1853
|
+
min-width: 8px;
|
|
1854
|
+
overflow: hidden;
|
|
1855
|
+
width: 8px;
|
|
1856
|
+
}
|
|
1857
|
+
.ods-badge--small .ods-badge__text {
|
|
1858
|
+
border-radius: 40px;
|
|
1859
|
+
box-shadow: 0 4px 10px #ff726e3d;
|
|
1860
|
+
padding: 0 4px;
|
|
1861
|
+
width: auto;
|
|
1862
|
+
}
|
|
1863
|
+
.ods-badge--overflow .ods-badge__content {
|
|
1864
|
+
padding: 0 4px;
|
|
1865
|
+
width: auto;
|
|
1866
|
+
}
|
|
1867
|
+
.ods-badge--overflow .ods-badge__content {
|
|
1868
|
+
padding: 0 4px;
|
|
1869
|
+
width: auto;
|
|
1870
|
+
}
|
|
1871
|
+
.ods-badge--brand .ods-badge__content {
|
|
1872
|
+
background-color: #0025e0;
|
|
1873
|
+
}
|
|
1874
|
+
.ods-badge--brand .ods-badge__text.ods-badge__content {
|
|
1875
|
+
box-shadow: 0 4px 10px #0025e03d;
|
|
1876
|
+
}
|
|
1877
|
+
.ods-badge--complementary .ods-badge__content {
|
|
1878
|
+
background-color: #13bdbd;
|
|
1879
|
+
}
|
|
1880
|
+
.ods-badge--complementary .ods-badge__text.ods-badge__content {
|
|
1881
|
+
box-shadow: 0 4px 10px #13bdbd3d;
|
|
1882
|
+
}
|
|
1883
|
+
.ods-badge--alert .ods-badge__content {
|
|
1884
|
+
background-color: #ff8a14;
|
|
1885
|
+
}
|
|
1886
|
+
.ods-badge--alert .ods-badge__text.ods-badge__content {
|
|
1887
|
+
box-shadow: 0 4px 10px #ff8a143d;
|
|
1888
|
+
}
|
|
1889
|
+
.ods-badge--neutral .ods-badge__content {
|
|
1890
|
+
background-color: #b6b9cc;
|
|
1891
|
+
}
|
|
1892
|
+
.ods-badge--neutral .ods-badge__text.ods-badge__content {
|
|
1893
|
+
box-shadow: 0 4px 10px #b6b9cc3d;
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
.ods-btn {
|
|
1897
|
+
border: 0;
|
|
1898
|
+
border-radius: 500px;
|
|
1899
|
+
cursor: pointer;
|
|
1900
|
+
font-family: "Nunito Sans";
|
|
1901
|
+
font-weight: 700;
|
|
1902
|
+
line-height: 1;
|
|
1903
|
+
outline: none;
|
|
1904
|
+
text-align: center;
|
|
1905
|
+
transition: background-color 0.1s ease-out;
|
|
1906
|
+
}
|
|
1907
|
+
.ods-btn--sm {
|
|
1908
|
+
font-size: 14px;
|
|
1909
|
+
height: 32px;
|
|
1910
|
+
min-width: 96px;
|
|
1911
|
+
padding-left: 16px;
|
|
1912
|
+
padding-right: 16px;
|
|
1913
|
+
}
|
|
1914
|
+
.ods-btn--md {
|
|
1915
|
+
font-size: 16px;
|
|
1916
|
+
height: 48px;
|
|
1917
|
+
min-width: 108px;
|
|
1918
|
+
padding-left: 24px;
|
|
1919
|
+
padding-right: 24px;
|
|
1920
|
+
}
|
|
1921
|
+
.ods-btn--lg {
|
|
1922
|
+
font-size: 20px;
|
|
1923
|
+
height: 56px;
|
|
1924
|
+
min-width: 148px;
|
|
1925
|
+
padding-left: 32px;
|
|
1926
|
+
padding-right: 32px;
|
|
1927
|
+
}
|
|
1928
|
+
.ods-btn--primary {
|
|
1929
|
+
background-color: #0025e0;
|
|
1930
|
+
color: white;
|
|
1931
|
+
}
|
|
1932
|
+
.ods-btn--primary:hover {
|
|
1933
|
+
background-color: #5872f5;
|
|
1934
|
+
}
|
|
1935
|
+
.ods-btn--primary:focus {
|
|
1936
|
+
background-color: #5872f5;
|
|
1937
|
+
}
|
|
1938
|
+
.ods-btn--primary:active {
|
|
1939
|
+
background-color: #0e248f;
|
|
1940
|
+
}
|
|
1941
|
+
.ods-btn--primary-critical {
|
|
1942
|
+
background-color: #f5456e;
|
|
1943
|
+
color: white;
|
|
1944
|
+
}
|
|
1945
|
+
.ods-btn--primary-critical:hover {
|
|
1946
|
+
background-color: #f27592;
|
|
1947
|
+
}
|
|
1948
|
+
.ods-btn--primary-critical:focus {
|
|
1949
|
+
background-color: #f27592;
|
|
1950
|
+
}
|
|
1951
|
+
.ods-btn--primary-critical:active {
|
|
1952
|
+
background-color: #d31441;
|
|
1953
|
+
}
|
|
1954
|
+
.ods-btn--secondary {
|
|
1955
|
+
background-color: #f7f9ff;
|
|
1956
|
+
color: #0025e0;
|
|
1957
|
+
}
|
|
1958
|
+
.ods-btn--secondary:hover {
|
|
1959
|
+
background-color: #ebecf5;
|
|
1960
|
+
}
|
|
1961
|
+
.ods-btn--secondary:focus {
|
|
1962
|
+
background-color: #ebecf5;
|
|
1963
|
+
}
|
|
1964
|
+
.ods-btn--secondary:active {
|
|
1965
|
+
background-color: #b6b9cc;
|
|
1966
|
+
}
|
|
1967
|
+
.ods-btn--text, .ods-btn--text-critical {
|
|
1968
|
+
background-color: transparent;
|
|
1969
|
+
}
|
|
1970
|
+
.ods-btn--text:hover, .ods-btn--text-critical:hover {
|
|
1971
|
+
background-color: #ebecf5;
|
|
1972
|
+
}
|
|
1973
|
+
.ods-btn--text:focus, .ods-btn--text-critical:focus {
|
|
1974
|
+
background-color: #ebecf5;
|
|
1975
|
+
}
|
|
1976
|
+
.ods-btn--text:active, .ods-btn--text-critical:active {
|
|
1977
|
+
background-color: #d8dae8;
|
|
1978
|
+
}
|
|
1979
|
+
.ods-btn--text {
|
|
1980
|
+
color: #0025e0;
|
|
1981
|
+
}
|
|
1982
|
+
.ods-btn--text-critical {
|
|
1983
|
+
color: #f5456e;
|
|
1984
|
+
}
|
|
1985
|
+
.ods-btn--inverse {
|
|
1986
|
+
background-color: #13bdbd;
|
|
1987
|
+
color: white;
|
|
1988
|
+
}
|
|
1989
|
+
.ods-btn--inverse:hover {
|
|
1990
|
+
background-color: #6ae5e5;
|
|
1991
|
+
}
|
|
1992
|
+
.ods-btn--inverse:focus {
|
|
1993
|
+
background-color: #6ae5e5;
|
|
1994
|
+
}
|
|
1995
|
+
.ods-btn--inverse:active {
|
|
1996
|
+
background-color: #1c9999;
|
|
1997
|
+
}
|
|
1998
|
+
.ods-btn--blocked {
|
|
1999
|
+
width: 100%;
|
|
2000
|
+
}
|
|
2001
|
+
.ods-btn--loading .ods-progress {
|
|
2002
|
+
margin: auto;
|
|
2003
|
+
}
|
|
2004
|
+
.ods-btn--loading > span {
|
|
2005
|
+
display: block;
|
|
2006
|
+
height: 0;
|
|
2007
|
+
visibility: hidden;
|
|
2008
|
+
}
|
|
2009
|
+
.ods-btn:disabled, .ods-btn:disabled .ods-btn:hover {
|
|
2010
|
+
background-color: #ebecf5;
|
|
2011
|
+
color: #b6b9cc;
|
|
2012
|
+
cursor: not-allowed;
|
|
2013
|
+
}
|
|
2014
|
+
|
|
1666
2015
|
.ods-carousel.columns-5, .ods-carousel.columns-4, .ods-carousel.columns-3, .ods-carousel.columns-2 {
|
|
1667
2016
|
overflow: hidden;
|
|
1668
2017
|
}
|
|
@@ -1883,127 +2232,11 @@
|
|
|
1883
2232
|
margin: 0;
|
|
1884
2233
|
}
|
|
1885
2234
|
|
|
1886
|
-
.ods-btn {
|
|
2235
|
+
.ods-icon-btn {
|
|
2236
|
+
align-items: center;
|
|
2237
|
+
background: transparent;
|
|
1887
2238
|
border: 0;
|
|
1888
|
-
border-radius:
|
|
1889
|
-
cursor: pointer;
|
|
1890
|
-
font-family: "Nunito Sans";
|
|
1891
|
-
font-weight: 700;
|
|
1892
|
-
line-height: 1;
|
|
1893
|
-
outline: none;
|
|
1894
|
-
text-align: center;
|
|
1895
|
-
transition: background-color 0.1s ease-out;
|
|
1896
|
-
}
|
|
1897
|
-
.ods-btn--sm {
|
|
1898
|
-
font-size: 14px;
|
|
1899
|
-
height: 32px;
|
|
1900
|
-
min-width: 96px;
|
|
1901
|
-
padding-left: 16px;
|
|
1902
|
-
padding-right: 16px;
|
|
1903
|
-
}
|
|
1904
|
-
.ods-btn--md {
|
|
1905
|
-
font-size: 16px;
|
|
1906
|
-
height: 48px;
|
|
1907
|
-
min-width: 108px;
|
|
1908
|
-
padding-left: 24px;
|
|
1909
|
-
padding-right: 24px;
|
|
1910
|
-
}
|
|
1911
|
-
.ods-btn--lg {
|
|
1912
|
-
font-size: 20px;
|
|
1913
|
-
height: 56px;
|
|
1914
|
-
min-width: 148px;
|
|
1915
|
-
padding-left: 32px;
|
|
1916
|
-
padding-right: 32px;
|
|
1917
|
-
}
|
|
1918
|
-
.ods-btn--primary {
|
|
1919
|
-
background-color: #0025e0;
|
|
1920
|
-
color: white;
|
|
1921
|
-
}
|
|
1922
|
-
.ods-btn--primary:hover {
|
|
1923
|
-
background-color: #5872f5;
|
|
1924
|
-
}
|
|
1925
|
-
.ods-btn--primary:focus {
|
|
1926
|
-
background-color: #5872f5;
|
|
1927
|
-
}
|
|
1928
|
-
.ods-btn--primary:active {
|
|
1929
|
-
background-color: #0e248f;
|
|
1930
|
-
}
|
|
1931
|
-
.ods-btn--primary-critical {
|
|
1932
|
-
background-color: #f5456e;
|
|
1933
|
-
color: white;
|
|
1934
|
-
}
|
|
1935
|
-
.ods-btn--primary-critical:hover {
|
|
1936
|
-
background-color: #f27592;
|
|
1937
|
-
}
|
|
1938
|
-
.ods-btn--primary-critical:focus {
|
|
1939
|
-
background-color: #f27592;
|
|
1940
|
-
}
|
|
1941
|
-
.ods-btn--primary-critical:active {
|
|
1942
|
-
background-color: #d31441;
|
|
1943
|
-
}
|
|
1944
|
-
.ods-btn--secondary {
|
|
1945
|
-
background-color: #f7f9ff;
|
|
1946
|
-
color: #0025e0;
|
|
1947
|
-
}
|
|
1948
|
-
.ods-btn--secondary:hover {
|
|
1949
|
-
background-color: #ebecf5;
|
|
1950
|
-
}
|
|
1951
|
-
.ods-btn--secondary:focus {
|
|
1952
|
-
background-color: #ebecf5;
|
|
1953
|
-
}
|
|
1954
|
-
.ods-btn--secondary:active {
|
|
1955
|
-
background-color: #b6b9cc;
|
|
1956
|
-
}
|
|
1957
|
-
.ods-btn--text, .ods-btn--text-critical {
|
|
1958
|
-
background-color: transparent;
|
|
1959
|
-
}
|
|
1960
|
-
.ods-btn--text:hover, .ods-btn--text-critical:hover {
|
|
1961
|
-
background-color: #ebecf5;
|
|
1962
|
-
}
|
|
1963
|
-
.ods-btn--text:focus, .ods-btn--text-critical:focus {
|
|
1964
|
-
background-color: #ebecf5;
|
|
1965
|
-
}
|
|
1966
|
-
.ods-btn--text:active, .ods-btn--text-critical:active {
|
|
1967
|
-
background-color: #d8dae8;
|
|
1968
|
-
}
|
|
1969
|
-
.ods-btn--text {
|
|
1970
|
-
color: #0025e0;
|
|
1971
|
-
}
|
|
1972
|
-
.ods-btn--text-critical {
|
|
1973
|
-
color: #f5456e;
|
|
1974
|
-
}
|
|
1975
|
-
.ods-btn--inverse {
|
|
1976
|
-
background-color: #13bdbd;
|
|
1977
|
-
color: white;
|
|
1978
|
-
}
|
|
1979
|
-
.ods-btn--inverse:hover {
|
|
1980
|
-
background-color: #6ae5e5;
|
|
1981
|
-
}
|
|
1982
|
-
.ods-btn--inverse:focus {
|
|
1983
|
-
background-color: #6ae5e5;
|
|
1984
|
-
}
|
|
1985
|
-
.ods-btn--inverse:active {
|
|
1986
|
-
background-color: #1c9999;
|
|
1987
|
-
}
|
|
1988
|
-
.ods-btn--blocked {
|
|
1989
|
-
width: 100%;
|
|
1990
|
-
}
|
|
1991
|
-
.ods-btn--loading > span {
|
|
1992
|
-
display: block;
|
|
1993
|
-
height: 0;
|
|
1994
|
-
visibility: hidden;
|
|
1995
|
-
}
|
|
1996
|
-
.ods-btn:disabled, .ods-btn:disabled .ods-btn:hover {
|
|
1997
|
-
background-color: #ebecf5;
|
|
1998
|
-
color: #b6b9cc;
|
|
1999
|
-
cursor: not-allowed;
|
|
2000
|
-
}
|
|
2001
|
-
|
|
2002
|
-
.ods-icon-btn {
|
|
2003
|
-
align-items: center;
|
|
2004
|
-
background: transparent;
|
|
2005
|
-
border: 0;
|
|
2006
|
-
border-radius: 50%;
|
|
2239
|
+
border-radius: 50%;
|
|
2007
2240
|
cursor: pointer;
|
|
2008
2241
|
display: flex;
|
|
2009
2242
|
height: 48px;
|
|
@@ -2023,6 +2256,7 @@
|
|
|
2023
2256
|
.ods-icon-btn--sm {
|
|
2024
2257
|
font-size: 16px;
|
|
2025
2258
|
height: 40px;
|
|
2259
|
+
min-width: 40px;
|
|
2026
2260
|
width: 40px;
|
|
2027
2261
|
}
|
|
2028
2262
|
.ods-icon-btn--sm :first-child {
|
|
@@ -2032,6 +2266,7 @@
|
|
|
2032
2266
|
.ods-icon-btn--md {
|
|
2033
2267
|
font-size: 20px;
|
|
2034
2268
|
height: 48px;
|
|
2269
|
+
min-width: 48px;
|
|
2035
2270
|
width: 48px;
|
|
2036
2271
|
}
|
|
2037
2272
|
.ods-icon-btn--disabled {
|
|
@@ -2047,7 +2282,7 @@
|
|
|
2047
2282
|
color: #0025e0;
|
|
2048
2283
|
cursor: pointer;
|
|
2049
2284
|
font-family: "Nunito Sans";
|
|
2050
|
-
font-weight:
|
|
2285
|
+
font-weight: 600;
|
|
2051
2286
|
line-height: 1;
|
|
2052
2287
|
}
|
|
2053
2288
|
.ods-lnk:hover {
|
|
@@ -2120,6 +2355,12 @@
|
|
|
2120
2355
|
.ods-transaction-list-item .ods-transaction-list-item__sub-itens .ods-transaction-list-item {
|
|
2121
2356
|
background-color: transparent;
|
|
2122
2357
|
}
|
|
2358
|
+
.ods-transaction-list-item .ods-transaction-list-item__sub-itens .ods-transaction-list-item__level1 {
|
|
2359
|
+
color: #67697a;
|
|
2360
|
+
font-family: "Nunito Sans";
|
|
2361
|
+
font-size: 16px;
|
|
2362
|
+
font-weight: 400;
|
|
2363
|
+
}
|
|
2123
2364
|
.ods-transaction-list-item .ods-transaction-list-item__sub-itens .ods-transaction-list-item__icon {
|
|
2124
2365
|
background-color: transparent;
|
|
2125
2366
|
}
|
|
@@ -2171,11 +2412,18 @@
|
|
|
2171
2412
|
}
|
|
2172
2413
|
|
|
2173
2414
|
.ods-transaction-list-item__level2 {
|
|
2415
|
+
-webkit-box-orient: vertical;
|
|
2174
2416
|
color: #67697a;
|
|
2417
|
+
display: box;
|
|
2175
2418
|
font-family: "Nunito Sans";
|
|
2176
2419
|
font-size: 15px;
|
|
2177
2420
|
font-weight: 400;
|
|
2421
|
+
-webkit-line-clamp: 2;
|
|
2422
|
+
line-height: 15px;
|
|
2178
2423
|
margin-bottom: 8px;
|
|
2424
|
+
max-height: 30px;
|
|
2425
|
+
overflow: hidden;
|
|
2426
|
+
text-overflow: ellipsis;
|
|
2179
2427
|
}
|
|
2180
2428
|
|
|
2181
2429
|
.ods-transaction-list-item__level3 {
|
|
@@ -2220,57 +2468,6 @@
|
|
|
2220
2468
|
font-weight: 600;
|
|
2221
2469
|
}
|
|
2222
2470
|
|
|
2223
|
-
.ods-progress svg {
|
|
2224
|
-
-webkit-animation: ods-loading-animation 0.8s linear infinite;
|
|
2225
|
-
animation: ods-loading-animation 0.8s linear infinite;
|
|
2226
|
-
}
|
|
2227
|
-
.ods-progress svg circle {
|
|
2228
|
-
stroke: #b8c3ff;
|
|
2229
|
-
}
|
|
2230
|
-
.ods-progress svg path {
|
|
2231
|
-
stroke: #0025e0;
|
|
2232
|
-
}
|
|
2233
|
-
.ods-progress--on-color svg circle {
|
|
2234
|
-
stroke: #fff;
|
|
2235
|
-
}
|
|
2236
|
-
.ods-progress--on-color svg path {
|
|
2237
|
-
stroke: #fff;
|
|
2238
|
-
}
|
|
2239
|
-
.ods-progress--md svg {
|
|
2240
|
-
height: 24px;
|
|
2241
|
-
width: 24px;
|
|
2242
|
-
}
|
|
2243
|
-
.ods-progress--sm svg {
|
|
2244
|
-
height: 16px;
|
|
2245
|
-
width: 16px;
|
|
2246
|
-
}
|
|
2247
|
-
.ods-progress--lg svg {
|
|
2248
|
-
height: 32px;
|
|
2249
|
-
width: 32px;
|
|
2250
|
-
}
|
|
2251
|
-
@-webkit-keyframes ods-loading-animation {
|
|
2252
|
-
0% {
|
|
2253
|
-
transform: rotate(0deg);
|
|
2254
|
-
}
|
|
2255
|
-
90% {
|
|
2256
|
-
transform: rotate(340deg);
|
|
2257
|
-
}
|
|
2258
|
-
100% {
|
|
2259
|
-
transform: rotate(360deg);
|
|
2260
|
-
}
|
|
2261
|
-
}
|
|
2262
|
-
@keyframes ods-loading-animation {
|
|
2263
|
-
0% {
|
|
2264
|
-
transform: rotate(0deg);
|
|
2265
|
-
}
|
|
2266
|
-
90% {
|
|
2267
|
-
transform: rotate(340deg);
|
|
2268
|
-
}
|
|
2269
|
-
100% {
|
|
2270
|
-
transform: rotate(360deg);
|
|
2271
|
-
}
|
|
2272
|
-
}
|
|
2273
|
-
|
|
2274
2471
|
.ods-modal__overlay {
|
|
2275
2472
|
background: rgba(57, 59, 71, 0.4);
|
|
2276
2473
|
bottom: 0;
|
|
@@ -2382,169 +2579,64 @@
|
|
|
2382
2579
|
}
|
|
2383
2580
|
}
|
|
2384
2581
|
|
|
2385
|
-
.ods-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
border-radius: 16px;
|
|
2389
|
-
color: #67697a;
|
|
2390
|
-
display: flex;
|
|
2391
|
-
font-family: "Nunito Sans";
|
|
2392
|
-
font-size: 12px;
|
|
2393
|
-
font-weight: 600;
|
|
2394
|
-
justify-content: left;
|
|
2395
|
-
line-height: 1.5;
|
|
2396
|
-
padding: 2px 4px;
|
|
2397
|
-
width: -webkit-fit-content;
|
|
2398
|
-
width: -moz-fit-content;
|
|
2399
|
-
width: fit-content;
|
|
2582
|
+
.ods-progress svg {
|
|
2583
|
+
-webkit-animation: ods-loading-animation 0.8s linear infinite;
|
|
2584
|
+
animation: ods-loading-animation 0.8s linear infinite;
|
|
2400
2585
|
}
|
|
2401
|
-
.ods-
|
|
2402
|
-
|
|
2586
|
+
.ods-progress svg circle {
|
|
2587
|
+
stroke: #b8c3ff;
|
|
2403
2588
|
}
|
|
2404
|
-
.ods-
|
|
2405
|
-
|
|
2589
|
+
.ods-progress svg path {
|
|
2590
|
+
stroke: #0025e0;
|
|
2406
2591
|
}
|
|
2407
|
-
.ods-
|
|
2408
|
-
|
|
2592
|
+
.ods-progress--on-color svg circle {
|
|
2593
|
+
stroke: #fff;
|
|
2409
2594
|
}
|
|
2410
|
-
.ods-
|
|
2411
|
-
|
|
2595
|
+
.ods-progress--on-color svg path {
|
|
2596
|
+
stroke: #fff;
|
|
2412
2597
|
}
|
|
2413
|
-
.ods-
|
|
2414
|
-
|
|
2598
|
+
.ods-progress--md, .ods-progress--md svg {
|
|
2599
|
+
height: 24px;
|
|
2600
|
+
width: 24px;
|
|
2415
2601
|
}
|
|
2416
|
-
.ods-
|
|
2417
|
-
|
|
2602
|
+
.ods-progress--sm, .ods-progress--sm svg {
|
|
2603
|
+
height: 16px;
|
|
2604
|
+
width: 16px;
|
|
2418
2605
|
}
|
|
2419
|
-
.ods-
|
|
2420
|
-
|
|
2606
|
+
.ods-progress--lg, .ods-progress--lg svg {
|
|
2607
|
+
height: 32px;
|
|
2608
|
+
width: 32px;
|
|
2421
2609
|
}
|
|
2422
|
-
|
|
2423
|
-
|
|
2610
|
+
@-webkit-keyframes ods-loading-animation {
|
|
2611
|
+
0% {
|
|
2612
|
+
transform: rotate(0deg);
|
|
2613
|
+
}
|
|
2614
|
+
90% {
|
|
2615
|
+
transform: rotate(340deg);
|
|
2616
|
+
}
|
|
2617
|
+
100% {
|
|
2618
|
+
transform: rotate(360deg);
|
|
2619
|
+
}
|
|
2424
2620
|
}
|
|
2425
|
-
|
|
2426
|
-
|
|
2621
|
+
@keyframes ods-loading-animation {
|
|
2622
|
+
0% {
|
|
2623
|
+
transform: rotate(0deg);
|
|
2624
|
+
}
|
|
2625
|
+
90% {
|
|
2626
|
+
transform: rotate(340deg);
|
|
2627
|
+
}
|
|
2628
|
+
100% {
|
|
2629
|
+
transform: rotate(360deg);
|
|
2630
|
+
}
|
|
2427
2631
|
}
|
|
2428
|
-
|
|
2632
|
+
|
|
2633
|
+
.ods-sub-header {
|
|
2429
2634
|
background-color: #f7f9ff;
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
color: #b6b9cc;
|
|
2436
|
-
}
|
|
2437
|
-
.ods-tag--neutral-02 {
|
|
2438
|
-
background-color: #f7f9ff;
|
|
2439
|
-
}
|
|
2440
|
-
.ods-tag--neutral-02 .ods-tag__icon {
|
|
2441
|
-
fill: #5872f5;
|
|
2442
|
-
}
|
|
2443
|
-
.ods-tag--neutral-02 .ods-tag__content {
|
|
2444
|
-
color: #5872f5;
|
|
2445
|
-
}
|
|
2446
|
-
.ods-tag--neutral-03 {
|
|
2447
|
-
background-color: #edfdfd;
|
|
2448
|
-
}
|
|
2449
|
-
.ods-tag--neutral-03 .ods-tag__icon {
|
|
2450
|
-
fill: #13bdbd;
|
|
2451
|
-
}
|
|
2452
|
-
.ods-tag--neutral-03 .ods-tag__content {
|
|
2453
|
-
color: #13bdbd;
|
|
2454
|
-
}
|
|
2455
|
-
.ods-tag__icon {
|
|
2456
|
-
fill: #5872f5;
|
|
2457
|
-
min-width: 16px;
|
|
2458
|
-
}
|
|
2459
|
-
.ods-tag__content {
|
|
2460
|
-
margin: 0 4px;
|
|
2461
|
-
white-space: nowrap;
|
|
2462
|
-
}
|
|
2463
|
-
|
|
2464
|
-
.ods-badge {
|
|
2465
|
-
display: flex;
|
|
2466
|
-
font-family: "Nunito Sans";
|
|
2467
|
-
}
|
|
2468
|
-
.ods-badge__content {
|
|
2469
|
-
align-items: center;
|
|
2470
|
-
background-color: #ff726e;
|
|
2471
|
-
border-radius: 40px;
|
|
2472
|
-
box-sizing: border-box;
|
|
2473
|
-
color: white;
|
|
2474
|
-
display: flex;
|
|
2475
|
-
font-weight: 700;
|
|
2476
|
-
justify-content: center;
|
|
2477
|
-
white-space: nowrap;
|
|
2478
|
-
width: auto;
|
|
2479
|
-
}
|
|
2480
|
-
.ods-badge--medium .ods-badge__content {
|
|
2481
|
-
font-size: 12px;
|
|
2482
|
-
height: 24px;
|
|
2483
|
-
line-height: 24px;
|
|
2484
|
-
min-width: 24px;
|
|
2485
|
-
width: 24px;
|
|
2486
|
-
}
|
|
2487
|
-
.ods-badge--small .ods-badge__content {
|
|
2488
|
-
font-size: 10px;
|
|
2489
|
-
height: 16px;
|
|
2490
|
-
line-height: 16px;
|
|
2491
|
-
min-width: 16px;
|
|
2492
|
-
}
|
|
2493
|
-
.ods-badge--tiny .ods-badge__content {
|
|
2494
|
-
display: block;
|
|
2495
|
-
font-size: 10px;
|
|
2496
|
-
height: 8px;
|
|
2497
|
-
line-height: 8px;
|
|
2498
|
-
min-width: 8px;
|
|
2499
|
-
overflow: hidden;
|
|
2500
|
-
width: 8px;
|
|
2501
|
-
}
|
|
2502
|
-
.ods-badge--small .ods-badge__text {
|
|
2503
|
-
border-radius: 40px;
|
|
2504
|
-
box-shadow: 0 4px 10px #ff726e3d;
|
|
2505
|
-
padding: 0 4px;
|
|
2506
|
-
width: auto;
|
|
2507
|
-
}
|
|
2508
|
-
.ods-badge--overflow .ods-badge__content {
|
|
2509
|
-
padding: 0 4px;
|
|
2510
|
-
width: auto;
|
|
2511
|
-
}
|
|
2512
|
-
.ods-badge--overflow .ods-badge__content {
|
|
2513
|
-
padding: 0 4px;
|
|
2514
|
-
width: auto;
|
|
2515
|
-
}
|
|
2516
|
-
.ods-badge--brand .ods-badge__content {
|
|
2517
|
-
background-color: #0025e0;
|
|
2518
|
-
}
|
|
2519
|
-
.ods-badge--brand .ods-badge__text.ods-badge__content {
|
|
2520
|
-
box-shadow: 0 4px 10px #0025e03d;
|
|
2521
|
-
}
|
|
2522
|
-
.ods-badge--complementary .ods-badge__content {
|
|
2523
|
-
background-color: #13bdbd;
|
|
2524
|
-
}
|
|
2525
|
-
.ods-badge--complementary .ods-badge__text.ods-badge__content {
|
|
2526
|
-
box-shadow: 0 4px 10px #13bdbd3d;
|
|
2527
|
-
}
|
|
2528
|
-
.ods-badge--alert .ods-badge__content {
|
|
2529
|
-
background-color: #ff8a14;
|
|
2530
|
-
}
|
|
2531
|
-
.ods-badge--alert .ods-badge__text.ods-badge__content {
|
|
2532
|
-
box-shadow: 0 4px 10px #ff8a143d;
|
|
2533
|
-
}
|
|
2534
|
-
.ods-badge--neutral .ods-badge__content {
|
|
2535
|
-
background-color: #b6b9cc;
|
|
2536
|
-
}
|
|
2537
|
-
.ods-badge--neutral .ods-badge__text.ods-badge__content {
|
|
2538
|
-
box-shadow: 0 4px 10px #b6b9cc3d;
|
|
2539
|
-
}
|
|
2540
|
-
|
|
2541
|
-
.ods-sub-header {
|
|
2542
|
-
background-color: #f7f9ff;
|
|
2543
|
-
box-sizing: border-box;
|
|
2544
|
-
display: flex;
|
|
2545
|
-
justify-content: space-between;
|
|
2546
|
-
padding: 12px 16px 8px 16px;
|
|
2547
|
-
width: 100%;
|
|
2635
|
+
box-sizing: border-box;
|
|
2636
|
+
display: flex;
|
|
2637
|
+
justify-content: space-between;
|
|
2638
|
+
padding: 12px 16px 8px 16px;
|
|
2639
|
+
width: 100%;
|
|
2548
2640
|
}
|
|
2549
2641
|
|
|
2550
2642
|
.ods-sub-header__subtitle,
|
|
@@ -2568,7 +2660,7 @@
|
|
|
2568
2660
|
display: flex;
|
|
2569
2661
|
height: 46px;
|
|
2570
2662
|
margin: 1px;
|
|
2571
|
-
width:
|
|
2663
|
+
width: 100%;
|
|
2572
2664
|
}
|
|
2573
2665
|
.ods-search input {
|
|
2574
2666
|
border: 0;
|
|
@@ -2580,32 +2672,29 @@
|
|
|
2580
2672
|
height: 100%;
|
|
2581
2673
|
line-height: 1.1;
|
|
2582
2674
|
outline: none;
|
|
2583
|
-
padding: 0
|
|
2675
|
+
padding: 0 8px;
|
|
2584
2676
|
width: 100%;
|
|
2585
2677
|
}
|
|
2586
2678
|
.ods-search input::-moz-placeholder {
|
|
2587
2679
|
color: #d8dae8;
|
|
2680
|
+
font-weight: 400;
|
|
2588
2681
|
}
|
|
2589
2682
|
.ods-search input:-ms-input-placeholder {
|
|
2590
2683
|
color: #d8dae8;
|
|
2684
|
+
font-weight: 400;
|
|
2591
2685
|
}
|
|
2592
2686
|
.ods-search input::placeholder {
|
|
2593
2687
|
color: #d8dae8;
|
|
2688
|
+
font-weight: 400;
|
|
2594
2689
|
}
|
|
2595
2690
|
.ods-search:hover, .ods-search:focus, .ods-search:active {
|
|
2596
2691
|
border-color: #5872f5;
|
|
2597
2692
|
border-width: 2px;
|
|
2598
2693
|
margin: 0;
|
|
2599
2694
|
}
|
|
2600
|
-
.ods-search svg {
|
|
2601
|
-
color: #d8dae8;
|
|
2602
|
-
}
|
|
2603
2695
|
.ods-search--filled {
|
|
2604
2696
|
border-color: #b8c3ff;
|
|
2605
2697
|
}
|
|
2606
|
-
.ods-search--filled svg {
|
|
2607
|
-
color: #0025e0;
|
|
2608
|
-
}
|
|
2609
2698
|
.ods-search--disabled {
|
|
2610
2699
|
background-color: #ebecf5;
|
|
2611
2700
|
border-color: #ebecf5;
|
|
@@ -2621,16 +2710,374 @@
|
|
|
2621
2710
|
.ods-search__adornment {
|
|
2622
2711
|
line-height: 0;
|
|
2623
2712
|
padding-left: 16px;
|
|
2624
|
-
|
|
2713
|
+
}
|
|
2714
|
+
.ods-search__adornment svg {
|
|
2715
|
+
color: #d8dae8;
|
|
2716
|
+
}
|
|
2717
|
+
.ods-search--filled .ods-search__adornment svg {
|
|
2718
|
+
color: #0025e0;
|
|
2625
2719
|
}
|
|
2626
2720
|
.ods-search__clean {
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2721
|
+
color: #b6b9cc;
|
|
2722
|
+
margin-right: 4px;
|
|
2723
|
+
}
|
|
2724
|
+
.ods-search__clean:hover {
|
|
2725
|
+
color: #0025e0;
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
.ods-tag {
|
|
2729
|
+
align-items: center;
|
|
2730
|
+
background-color: #f7f9ff;
|
|
2731
|
+
border-radius: 16px;
|
|
2732
|
+
color: #67697a;
|
|
2733
|
+
display: flex;
|
|
2734
|
+
font-family: "Nunito Sans";
|
|
2735
|
+
font-size: 12px;
|
|
2736
|
+
font-weight: 600;
|
|
2737
|
+
justify-content: left;
|
|
2738
|
+
line-height: 1.5;
|
|
2739
|
+
padding: 2px 4px;
|
|
2740
|
+
width: -webkit-fit-content;
|
|
2741
|
+
width: -moz-fit-content;
|
|
2742
|
+
width: fit-content;
|
|
2743
|
+
}
|
|
2744
|
+
.ods-tag--negative {
|
|
2745
|
+
background-color: #fff1f4;
|
|
2746
|
+
}
|
|
2747
|
+
.ods-tag--negative .ods-tag__icon {
|
|
2748
|
+
fill: #f5456e;
|
|
2749
|
+
}
|
|
2750
|
+
.ods-tag--negative .ods-tag__content {
|
|
2751
|
+
color: #f5456e;
|
|
2752
|
+
}
|
|
2753
|
+
.ods-tag--warning {
|
|
2754
|
+
background-color: #fff7f0;
|
|
2755
|
+
}
|
|
2756
|
+
.ods-tag--warning .ods-tag__icon {
|
|
2757
|
+
fill: #ff8a14;
|
|
2758
|
+
}
|
|
2759
|
+
.ods-tag--warning .ods-tag__content {
|
|
2760
|
+
color: #ff8a14;
|
|
2761
|
+
}
|
|
2762
|
+
.ods-tag--positive {
|
|
2763
|
+
background-color: #f2fdf5;
|
|
2764
|
+
}
|
|
2765
|
+
.ods-tag--positive .ods-tag__icon {
|
|
2766
|
+
fill: #2da94f;
|
|
2767
|
+
}
|
|
2768
|
+
.ods-tag--positive .ods-tag__content {
|
|
2769
|
+
color: #2da94f;
|
|
2770
|
+
}
|
|
2771
|
+
.ods-tag--neutral {
|
|
2772
|
+
background-color: #f7f9ff;
|
|
2773
|
+
}
|
|
2774
|
+
.ods-tag--neutral .ods-tag__icon {
|
|
2775
|
+
fill: #b6b9cc;
|
|
2776
|
+
}
|
|
2777
|
+
.ods-tag--neutral .ods-tag__content {
|
|
2778
|
+
color: #b6b9cc;
|
|
2779
|
+
}
|
|
2780
|
+
.ods-tag--neutral-02 {
|
|
2781
|
+
background-color: #f7f9ff;
|
|
2631
2782
|
}
|
|
2632
|
-
.ods-
|
|
2783
|
+
.ods-tag--neutral-02 .ods-tag__icon {
|
|
2784
|
+
fill: #5872f5;
|
|
2785
|
+
}
|
|
2786
|
+
.ods-tag--neutral-02 .ods-tag__content {
|
|
2787
|
+
color: #5872f5;
|
|
2788
|
+
}
|
|
2789
|
+
.ods-tag--neutral-03 {
|
|
2790
|
+
background-color: #edfdfd;
|
|
2791
|
+
}
|
|
2792
|
+
.ods-tag--neutral-03 .ods-tag__icon {
|
|
2793
|
+
fill: #13bdbd;
|
|
2794
|
+
}
|
|
2795
|
+
.ods-tag--neutral-03 .ods-tag__content {
|
|
2796
|
+
color: #13bdbd;
|
|
2797
|
+
}
|
|
2798
|
+
.ods-tag__icon {
|
|
2799
|
+
fill: #5872f5;
|
|
2800
|
+
min-width: 16px;
|
|
2801
|
+
}
|
|
2802
|
+
.ods-tag__content {
|
|
2803
|
+
margin: 0 4px;
|
|
2804
|
+
white-space: nowrap;
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2807
|
+
.ods-typography {
|
|
2808
|
+
margin: 0;
|
|
2809
|
+
}
|
|
2810
|
+
.ods-typography__heading1 {
|
|
2811
|
+
color: #0c0d14;
|
|
2812
|
+
font-family: "Avenir";
|
|
2813
|
+
font-weight: 800;
|
|
2814
|
+
line-height: 1.1;
|
|
2815
|
+
font-size: 32px;
|
|
2816
|
+
}
|
|
2817
|
+
.ods-typography__heading2 {
|
|
2818
|
+
color: #0c0d14;
|
|
2819
|
+
font-family: "Avenir";
|
|
2820
|
+
font-weight: 800;
|
|
2821
|
+
line-height: 1.1;
|
|
2822
|
+
font-size: 24px;
|
|
2823
|
+
}
|
|
2824
|
+
.ods-typography__heading3 {
|
|
2825
|
+
color: #0c0d14;
|
|
2826
|
+
font-family: "Avenir";
|
|
2827
|
+
font-weight: 800;
|
|
2828
|
+
line-height: 1.1;
|
|
2829
|
+
font-size: 20px;
|
|
2830
|
+
}
|
|
2831
|
+
.ods-typography__heading4 {
|
|
2832
|
+
color: #0c0d14;
|
|
2833
|
+
font-family: "Avenir";
|
|
2834
|
+
font-weight: 800;
|
|
2835
|
+
line-height: 1.1;
|
|
2836
|
+
font-size: 16px;
|
|
2837
|
+
font-weight: 700;
|
|
2838
|
+
line-height: 1.1;
|
|
2839
|
+
}
|
|
2840
|
+
.ods-typography__subtitle1 {
|
|
2841
|
+
color: #67697a;
|
|
2842
|
+
font-family: "Nunito Sans";
|
|
2843
|
+
font-weight: 400;
|
|
2844
|
+
line-height: 1.1;
|
|
2845
|
+
font-size: 24px;
|
|
2846
|
+
}
|
|
2847
|
+
.ods-typography__subtitle2 {
|
|
2848
|
+
color: #67697a;
|
|
2849
|
+
font-family: "Nunito Sans";
|
|
2850
|
+
font-weight: 400;
|
|
2851
|
+
line-height: 1.1;
|
|
2852
|
+
font-size: 20px;
|
|
2853
|
+
}
|
|
2854
|
+
.ods-typography__paragraph {
|
|
2855
|
+
color: #67697a;
|
|
2856
|
+
font-family: "Nunito Sans";
|
|
2857
|
+
font-weight: 400;
|
|
2858
|
+
line-height: 1.5;
|
|
2859
|
+
font-size: 16px;
|
|
2860
|
+
}
|
|
2861
|
+
.ods-typography__lead {
|
|
2633
2862
|
color: #393b47;
|
|
2863
|
+
font-family: "Nunito Sans";
|
|
2864
|
+
font-size: 20px;
|
|
2865
|
+
font-weight: 700;
|
|
2866
|
+
}
|
|
2867
|
+
.ods-typography__description {
|
|
2868
|
+
color: #67697a;
|
|
2869
|
+
font-family: "Nunito Sans";
|
|
2870
|
+
font-weight: 400;
|
|
2871
|
+
line-height: 1.5;
|
|
2872
|
+
font-size: 14px;
|
|
2873
|
+
}
|
|
2874
|
+
.ods-typography__caption {
|
|
2875
|
+
color: #67697a;
|
|
2876
|
+
font-family: "Nunito Sans";
|
|
2877
|
+
font-weight: 400;
|
|
2878
|
+
line-height: 1.5;
|
|
2879
|
+
font-size: 12px;
|
|
2880
|
+
}
|
|
2881
|
+
.ods-typography--inverse {
|
|
2882
|
+
color: white;
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2885
|
+
.ods-tooltip {
|
|
2886
|
+
cursor: pointer;
|
|
2887
|
+
position: relative;
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
.ods-tooltip::after {
|
|
2891
|
+
opacity: 0;
|
|
2892
|
+
pointer-events: none;
|
|
2893
|
+
transition: opacity 0.18s ease-out 0.18s, transform 0.18s ease-out 0.18s;
|
|
2894
|
+
font-size: 12px;
|
|
2895
|
+
font-style: normal;
|
|
2896
|
+
font-weight: normal;
|
|
2897
|
+
text-indent: 0;
|
|
2898
|
+
text-shadow: none;
|
|
2899
|
+
background: #393b47;
|
|
2900
|
+
border-radius: 2px;
|
|
2901
|
+
border-radius: 8px;
|
|
2902
|
+
color: white;
|
|
2903
|
+
content: attr(aria-label);
|
|
2904
|
+
padding: 12px 16px;
|
|
2905
|
+
position: absolute;
|
|
2906
|
+
white-space: pre;
|
|
2907
|
+
z-index: 10;
|
|
2908
|
+
}
|
|
2909
|
+
|
|
2910
|
+
.ods-tooltip::before {
|
|
2911
|
+
border: 5px solid transparent;
|
|
2912
|
+
height: 0;
|
|
2913
|
+
width: 0;
|
|
2914
|
+
border-top-color: #393b47;
|
|
2915
|
+
opacity: 0;
|
|
2916
|
+
pointer-events: none;
|
|
2917
|
+
transition: opacity 0.18s ease-out 0.18s, transform 0.18s ease-out 0.18s;
|
|
2918
|
+
content: "";
|
|
2919
|
+
position: absolute;
|
|
2920
|
+
z-index: 10;
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
.ods-tooltip:hover::before, .ods-tooltip:hover::after,
|
|
2924
|
+
.ods-tooltip[data-tooltip-visible]::before,
|
|
2925
|
+
.ods-tooltip[data-tooltip-visible]::after,
|
|
2926
|
+
.ods-tooltip:not([data-tooltip-nofocus]):focus::before,
|
|
2927
|
+
.ods-tooltip:not([data-tooltip-nofocus]):focus::after {
|
|
2928
|
+
opacity: 1;
|
|
2929
|
+
pointer-events: none;
|
|
2930
|
+
}
|
|
2931
|
+
|
|
2932
|
+
.ods-tooltip[data-tooltip-break]::after {
|
|
2933
|
+
white-space: pre;
|
|
2934
|
+
}
|
|
2935
|
+
.ods-tooltip[data-tooltip-break][data-tooltip-length]::after {
|
|
2936
|
+
white-space: pre-line;
|
|
2937
|
+
word-break: break-word;
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
.ods-tooltip[data-tooltip-blunt]::before, .ods-tooltip[data-tooltip-blunt]::after {
|
|
2941
|
+
transition: none;
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2944
|
+
.ods-tooltip[data-tooltip-pos=up]:hover::after, .ods-tooltip[data-tooltip-pos=up][data-tooltip-visible]::after,
|
|
2945
|
+
.ods-tooltip[data-tooltip-pos=down]:hover::after,
|
|
2946
|
+
.ods-tooltip[data-tooltip-pos=down][data-tooltip-visible]::after {
|
|
2947
|
+
transform: translate(-50%, 0);
|
|
2948
|
+
}
|
|
2949
|
+
.ods-tooltip[data-tooltip-pos=up]:hover::before, .ods-tooltip[data-tooltip-pos=up][data-tooltip-visible]::before,
|
|
2950
|
+
.ods-tooltip[data-tooltip-pos=down]:hover::before,
|
|
2951
|
+
.ods-tooltip[data-tooltip-pos=down][data-tooltip-visible]::before {
|
|
2952
|
+
transform: translate(-50%, 0);
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
.ods-tooltip[data-tooltip-pos*=-left]::after {
|
|
2956
|
+
left: 0;
|
|
2957
|
+
}
|
|
2958
|
+
.ods-tooltip[data-tooltip-pos*=-left]::before {
|
|
2959
|
+
left: 8px;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
.ods-tooltip[data-tooltip-pos*=-right]::after {
|
|
2963
|
+
right: 0;
|
|
2964
|
+
}
|
|
2965
|
+
.ods-tooltip[data-tooltip-pos*=-right]::before {
|
|
2966
|
+
right: 8px;
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
.ods-tooltip[data-tooltip-pos*=-left]:hover::after, .ods-tooltip[data-tooltip-pos*=-left][data-tooltip-visible]::after,
|
|
2970
|
+
.ods-tooltip[data-tooltip-pos*=-right]:hover::after,
|
|
2971
|
+
.ods-tooltip[data-tooltip-pos*=-right][data-tooltip-visible]::after {
|
|
2972
|
+
transform: translate(0, 0);
|
|
2973
|
+
}
|
|
2974
|
+
.ods-tooltip[data-tooltip-pos*=-left]:hover::before, .ods-tooltip[data-tooltip-pos*=-left][data-tooltip-visible]::before,
|
|
2975
|
+
.ods-tooltip[data-tooltip-pos*=-right]:hover::before,
|
|
2976
|
+
.ods-tooltip[data-tooltip-pos*=-right][data-tooltip-visible]::before {
|
|
2977
|
+
transform: translate(0, 0);
|
|
2978
|
+
}
|
|
2979
|
+
|
|
2980
|
+
.ods-tooltip[data-tooltip-pos^=up]::before, .ods-tooltip[data-tooltip-pos^=up]::after {
|
|
2981
|
+
bottom: 100%;
|
|
2982
|
+
transform: translate(0, 4px);
|
|
2983
|
+
transform-origin: top;
|
|
2984
|
+
}
|
|
2985
|
+
.ods-tooltip[data-tooltip-pos^=up]::after {
|
|
2986
|
+
margin-bottom: 10px;
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2989
|
+
.ods-tooltip[data-tooltip-pos=up]::before, .ods-tooltip[data-tooltip-pos=up]::after {
|
|
2990
|
+
left: 50%;
|
|
2991
|
+
transform: translate(-50%, 4px);
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
.ods-tooltip[data-tooltip-pos^=down]::before, .ods-tooltip[data-tooltip-pos^=down]::after {
|
|
2995
|
+
top: 100%;
|
|
2996
|
+
transform: translate(0, -4px);
|
|
2997
|
+
}
|
|
2998
|
+
.ods-tooltip[data-tooltip-pos^=down]::after {
|
|
2999
|
+
margin-top: 10px;
|
|
3000
|
+
}
|
|
3001
|
+
.ods-tooltip[data-tooltip-pos^=down]::before {
|
|
3002
|
+
border: 5px solid transparent;
|
|
3003
|
+
height: 0;
|
|
3004
|
+
width: 0;
|
|
3005
|
+
border-bottom-color: #393b47;
|
|
3006
|
+
}
|
|
3007
|
+
|
|
3008
|
+
.ods-tooltip[data-tooltip-pos=down]::after, .ods-tooltip[data-tooltip-pos=down]::before {
|
|
3009
|
+
left: 50%;
|
|
3010
|
+
transform: translate(-50%, -4px);
|
|
3011
|
+
}
|
|
3012
|
+
|
|
3013
|
+
.ods-tooltip[data-tooltip-pos=left]:hover::after, .ods-tooltip[data-tooltip-pos=left][data-tooltip-visible]::after,
|
|
3014
|
+
.ods-tooltip[data-tooltip-pos=right]:hover::after,
|
|
3015
|
+
.ods-tooltip[data-tooltip-pos=right][data-tooltip-visible]::after {
|
|
3016
|
+
transform: translate(0, -50%);
|
|
3017
|
+
}
|
|
3018
|
+
.ods-tooltip[data-tooltip-pos=left]:hover::before, .ods-tooltip[data-tooltip-pos=left][data-tooltip-visible]::before,
|
|
3019
|
+
.ods-tooltip[data-tooltip-pos=right]:hover::before,
|
|
3020
|
+
.ods-tooltip[data-tooltip-pos=right][data-tooltip-visible]::before {
|
|
3021
|
+
transform: translate(0, -50%);
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
.ods-tooltip[data-tooltip-pos=left]::after, .ods-tooltip[data-tooltip-pos=left]::before {
|
|
3025
|
+
right: 100%;
|
|
3026
|
+
top: 50%;
|
|
3027
|
+
transform: translate(4px, -50%);
|
|
3028
|
+
}
|
|
3029
|
+
.ods-tooltip[data-tooltip-pos=left]::after {
|
|
3030
|
+
margin-right: 10px;
|
|
3031
|
+
}
|
|
3032
|
+
.ods-tooltip[data-tooltip-pos=left]::before {
|
|
3033
|
+
border: 5px solid transparent;
|
|
3034
|
+
height: 0;
|
|
3035
|
+
width: 0;
|
|
3036
|
+
border-left-color: #393b47;
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
.ods-tooltip[data-tooltip-pos=right]::after, .ods-tooltip[data-tooltip-pos=right]::before {
|
|
3040
|
+
left: 100%;
|
|
3041
|
+
top: 50%;
|
|
3042
|
+
transform: translate(-4px, -50%);
|
|
3043
|
+
}
|
|
3044
|
+
.ods-tooltip[data-tooltip-pos=right]::after {
|
|
3045
|
+
margin-left: 10px;
|
|
3046
|
+
}
|
|
3047
|
+
.ods-tooltip[data-tooltip-pos=right]::before {
|
|
3048
|
+
border: 5px solid transparent;
|
|
3049
|
+
height: 0;
|
|
3050
|
+
width: 0;
|
|
3051
|
+
border-right-color: #393b47;
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3054
|
+
.ods-tooltip[data-tooltip-length]::after {
|
|
3055
|
+
white-space: normal;
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
.ods-tooltip[data-tooltip-length=small]::after {
|
|
3059
|
+
width: 80px;
|
|
3060
|
+
}
|
|
3061
|
+
|
|
3062
|
+
.ods-tooltip[data-tooltip-length=medium]::after {
|
|
3063
|
+
width: 150px;
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
.ods-tooltip[data-tooltip-length=large]::after {
|
|
3067
|
+
width: 260px;
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
.ods-tooltip[data-tooltip-length=xlarge]::after {
|
|
3071
|
+
width: 380px;
|
|
3072
|
+
}
|
|
3073
|
+
@media screen and (max-width: 768px) {
|
|
3074
|
+
.ods-tooltip[data-tooltip-length=xlarge]::after {
|
|
3075
|
+
width: 90vw;
|
|
3076
|
+
}
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
.ods-tooltip[data-tooltip-length=fit]::after {
|
|
3080
|
+
width: 100%;
|
|
2634
3081
|
}
|
|
2635
3082
|
|
|
2636
3083
|
.ods-topbar {
|