|
51 | 51 | --notion-brown_background_co: rgba(233, 229, 227, 0.3);
|
52 | 52 | --notion-gray_background_co: rgba(235, 236, 237, 0.3);
|
53 | 53 |
|
54 |
| - --notion-item-blue: rgba(0, 120, 223, 0.2); |
55 |
| - --notion-item-orange: rgba(245, 93, 0, 0.2); |
56 |
| - --notion-item-green: rgba(0, 135, 107, 0.2); |
57 |
| - --notion-item-pink: rgba(221, 0, 129, 0.2); |
58 |
| - --notion-item-brown: rgba(140, 46, 0, 0.2); |
59 |
| - --notion-item-red: rgba(255, 0, 26, 0.2); |
60 |
| - --notion-item-yellow: rgba(233, 168, 0, 0.2); |
61 |
| - --notion-item-default: rgba(206, 205, 202, 0.5); |
62 |
| - --notion-item-purple: rgba(103, 36, 222, 0.2); |
63 |
| - --notion-item-gray: rgba(155, 154, 151, 0.4); |
| 54 | + --notion-item-blue: rgb(211, 229, 239); |
| 55 | + --notion-item-orange: rgb(250, 222, 201); |
| 56 | + --notion-item-green: rgb(219, 237, 219); |
| 57 | + --notion-item-pink: rgb(245, 224, 233); |
| 58 | + --notion-item-brown: rgb(238, 224, 218); |
| 59 | + --notion-item-red: rgb(255, 226, 221); |
| 60 | + --notion-item-yellow: rgb(253, 236, 200); |
| 61 | + --notion-item-default: rgba(227, 226, 224, 0.5); |
| 62 | + --notion-item-purple: rgb(232, 222, 238); |
| 63 | + --notion-item-gray: rgb(227, 226, 224); |
| 64 | + |
| 65 | + --notion-item-text-blue: rgb(24, 51, 71); |
| 66 | + --notion-item-text-orange: rgb(73, 41, 14); |
| 67 | + --notion-item-text-green: rgb(28, 56, 41); |
| 68 | + --notion-item-text-pink: rgb(76, 35, 55); |
| 69 | + --notion-item-text-brown: rgb(68, 42, 30); |
| 70 | + --notion-item-text-red: rgb(93, 23, 21); |
| 71 | + --notion-item-text-yellow: rgb(64, 44, 27); |
| 72 | + --notion-item-text-default: rgb(50, 48, 44); |
| 73 | + --notion-item-text-purple: rgb(65, 36, 84); |
| 74 | + --notion-item-text-gray: rgb(50, 48, 44); |
| 75 | + |
| 76 | + --notion-item-bullet-blue: rgb(91, 151, 189); |
| 77 | + --notion-item-bullet-orange: rgb(215, 129, 58); |
| 78 | + --notion-item-bullet-green: rgb(108, 155, 125); |
| 79 | + --notion-item-bullet-pink: rgb(205, 116, 159); |
| 80 | + --notion-item-bullet-brown: rgb(187, 132, 108); |
| 81 | + --notion-item-bullet-red: rgb(225, 111, 100); |
| 82 | + --notion-item-bullet-yellow: rgb(203, 148, 51); |
| 83 | + --notion-item-bullet-default: rgb(91, 151, 189); |
| 84 | + --notion-item-bullet-purple: rgb(167, 130, 195); |
| 85 | + --notion-item-bullet-gray: rgb(145, 145, 142); |
64 | 86 |
|
65 | 87 | --notion-max-width: 720px;
|
66 | 88 | --notion-header-height: 45px;
|
|
371 | 393 |
|
372 | 394 | .notion-item-blue {
|
373 | 395 | background-color: var(--notion-item-blue);
|
| 396 | + color: var(--notion-item-text-blue); |
374 | 397 | }
|
375 | 398 | .notion-item-orange {
|
376 | 399 | background-color: var(--notion-item-orange);
|
| 400 | + color: var(--notion-item-text-orange); |
377 | 401 | }
|
378 | 402 | .notion-item-green {
|
379 | 403 | background-color: var(--notion-item-green);
|
| 404 | + color: var(--notion-item-text-green); |
380 | 405 | }
|
381 | 406 | .notion-item-pink {
|
382 | 407 | background-color: var(--notion-item-pink);
|
| 408 | + color: var(--notion-item-text-pink); |
383 | 409 | }
|
384 | 410 | .notion-item-brown {
|
385 | 411 | background-color: var(--notion-item-brown);
|
| 412 | + color: var(--notion-item-text-brown); |
386 | 413 | }
|
387 | 414 | .notion-item-red {
|
388 | 415 | background-color: var(--notion-item-red);
|
| 416 | + color: var(--notion-item-text-red); |
389 | 417 | }
|
390 | 418 | .notion-item-yellow {
|
391 | 419 | background-color: var(--notion-item-yellow);
|
| 420 | + color: var(--notion-item-text-yellow); |
392 | 421 | }
|
393 |
| -.notion-item-default { |
| 422 | +.notion-item-default, |
| 423 | +.notion-item-default-inferred { |
394 | 424 | background-color: var(--notion-item-default);
|
| 425 | + color: var(--notion-item-text-default); |
395 | 426 | }
|
396 | 427 | .notion-item-purple {
|
397 | 428 | background-color: var(--notion-item-purple);
|
| 429 | + color: var(--notion-item-text-purple); |
398 | 430 | }
|
399 | 431 | .notion-item-gray {
|
400 | 432 | background-color: var(--notion-item-gray);
|
| 433 | + color: var(--notion-item-text-gray); |
| 434 | +} |
| 435 | + |
| 436 | +.notion-item-bullet-blue { |
| 437 | + background-color: var(--notion-item-bullet-blue); |
| 438 | +} |
| 439 | +.notion-item-bullet-orange { |
| 440 | + background-color: var(--notion-item-bullet-orange); |
| 441 | +} |
| 442 | +.notion-item-bullet-green { |
| 443 | + background-color: var(--notion-item-bullet-green); |
| 444 | +} |
| 445 | +.notion-item-bullet-pink { |
| 446 | + background-color: var(--notion-item-bullet-pink); |
| 447 | +} |
| 448 | +.notion-item-bullet-brown { |
| 449 | + background-color: var(--notion-item-bullet-brown); |
| 450 | +} |
| 451 | +.notion-item-bullet-red { |
| 452 | + background-color: var(--notion-item-bullet-red); |
| 453 | +} |
| 454 | +.notion-item-bullet-yellow { |
| 455 | + background-color: var(--notion-item-bullet-yellow); |
| 456 | +} |
| 457 | +.notion-item-bullet-default { |
| 458 | + background-color: var(--notion-item-bullet-default); |
| 459 | +} |
| 460 | +.notion-item-bullet-default-inferred { |
| 461 | + background-color: var(--notion-item-bullet-gray); |
| 462 | +} |
| 463 | +.notion-item-bullet-purple { |
| 464 | + background-color: var(--notion-item-bullet-purple); |
| 465 | +} |
| 466 | +.notion-item-bullet-gray { |
| 467 | + background-color: var(--notion-item-bullet-gray); |
401 | 468 | }
|
402 | 469 |
|
403 | 470 | .notion b {
|
@@ -1343,25 +1410,31 @@ svg.notion-page-icon {
|
1343 | 1410 | }
|
1344 | 1411 |
|
1345 | 1412 | .notion-property-select,
|
| 1413 | +.notion-property-status, |
1346 | 1414 | .notion-property-multi_select {
|
1347 | 1415 | display: flex;
|
1348 | 1416 | flex-wrap: wrap;
|
1349 | 1417 | gap: 6px;
|
1350 | 1418 | }
|
1351 | 1419 |
|
1352 | 1420 | .notion-property-select-item,
|
| 1421 | +.notion-property-status-item, |
1353 | 1422 | .notion-property-multi_select-item {
|
1354 | 1423 | display: flex;
|
1355 | 1424 | align-items: center;
|
1356 | 1425 | padding: 0 6px;
|
1357 | 1426 | border-radius: 3px;
|
1358 |
| - height: 18px; |
| 1427 | + height: 20px; |
1359 | 1428 | white-space: nowrap;
|
1360 | 1429 | overflow: hidden;
|
1361 | 1430 | text-overflow: ellipsis;
|
1362 | 1431 | line-height: 120%;
|
1363 | 1432 | }
|
1364 | 1433 |
|
| 1434 | +.notion-property-status-item { |
| 1435 | + border-radius: 20px; |
| 1436 | +} |
| 1437 | + |
1365 | 1438 | .notion-property-file {
|
1366 | 1439 | display: flex;
|
1367 | 1440 | flex-wrap: wrap;
|
|
0 commit comments