react-admin-base-bootstrap 0.8.6 → 0.8.8

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.
Files changed (2) hide show
  1. package/assets/main.css +120 -8
  2. package/package.json +1 -1
package/assets/main.css CHANGED
@@ -1359,22 +1359,22 @@
1359
1359
  }
1360
1360
 
1361
1361
  .react-select-container .react-select__control {
1362
- background-color: var(--bs-body-bg);
1363
- border-color: var(--bs-gray-300);
1362
+ background-color: var(--bs-form-select-bg);
1363
+ border-color: var(--bs-form-select-border-color);
1364
1364
  transition: none;
1365
1365
  }
1366
1366
 
1367
1367
  .react-select-container .react-select__control:hover {
1368
- border-color: var(--bs-gray-300);
1368
+ border-color: var(--bs-form-select-border-color);
1369
1369
  }
1370
1370
 
1371
1371
  .react-select-container .react-select__menu {
1372
- background-color: var(--bs-body-bg);
1373
- border: 1px solid var(--bs-gray-300);
1372
+ background-color: var(--bs-form-select-bg);
1373
+ border: 1px solid var(--bs-form-select-border-color);
1374
1374
  }
1375
1375
 
1376
1376
  .react-select-container .react-select__option {
1377
- background-color: var(--bs-body-bg);
1377
+ background-color: var(--bs-form-select-bg);
1378
1378
  }
1379
1379
 
1380
1380
  .react-select-container .react-select__option:hover {
@@ -1382,7 +1382,7 @@
1382
1382
  }
1383
1383
 
1384
1384
  .react-select-container .react-select__option--is-selected {
1385
- color: var(--bs-dark);
1385
+ color: var(--bs-form-selected-color);
1386
1386
  }
1387
1387
 
1388
1388
  .react-select-container .react-select__indicator-separator {
@@ -1392,5 +1392,117 @@
1392
1392
  .react-select-container .react-select__placeholder,
1393
1393
  .react-select-container .react-select__single-value
1394
1394
  {
1395
- color: var(--bs-gray-700);
1395
+ color: var(--bs-form-select-color);
1396
+ }
1397
+
1398
+ .ck-body-wrapper {
1399
+ z-index: 100000000;
1400
+ position: relative;
1396
1401
  }
1402
+
1403
+ body {
1404
+ --ck-custom-background: var(--bs-form-select-bg);
1405
+ --ck-custom-foreground: var(--bs-form-select-color);
1406
+ --ck-custom-border: var(--bs-form-select-border-color);
1407
+ --ck-color-focus-outer-shadow: var(--bs-form-select-border-color);
1408
+
1409
+ --ck-focus-outer-shadow: none;
1410
+
1411
+ --ck-custom-white: var(--bs-form-select-bg);
1412
+
1413
+ /* Overrides the border radius setting in the theme. */
1414
+ --ck-border-radius: 4px;
1415
+
1416
+ /* -- Overrides generic colors. ------------------------------------------------------------- */
1417
+
1418
+ --ck-color-base-foreground: var(--ck-custom-background);
1419
+ --ck-color-base-border: var(--bs-form-select-border-color);
1420
+ --ck-focus-ring: 1px solid var(--ck-color-focus-border);
1421
+
1422
+ --ck-color-focus-border: var(--bs-form-select-border-color);
1423
+ --ck-color-text: var(--bs-form-select-text);
1424
+ /*
1425
+ --ck-color-shadow-drop: hsla(0, 0%, 0%, 0.2);
1426
+ --ck-color-shadow-inner: hsla(0, 0%, 0%, 0.1);
1427
+ */
1428
+ --ck-color-base-active: var(--ck-custom-background);
1429
+ --ck-color-base-active-focus: var(--ck-custom-background);
1430
+ --ck-color-base-background: var(--ck-custom-background);
1431
+
1432
+
1433
+ /* -- Overrides the default .ck-button class colors. ---------------------------------------- */
1434
+
1435
+ --ck-color-button-default-background: var(--ck-custom-background);
1436
+ --ck-color-button-default-hover-background: var(--ck-custom-border);
1437
+ --ck-color-button-default-active-background: var(--ck-custom-border);
1438
+ --ck-color-button-default-active-shadow: var(--ck-custom-border);
1439
+ --ck-color-button-default-disabled-background: var(--ck-custom-background);
1440
+
1441
+ --ck-color-button-on-background: var(--ck-color-focus-border);
1442
+ --ck-color-button-on-hover-background: var(--ck-custom-border);
1443
+ --ck-color-button-on-active-background: var(--ck-custom-border);
1444
+ --ck-color-button-on-active-shadow: var(--ck-custom-border);
1445
+ --ck-color-button-on-disabled-background: var(--ck-custom-foreground);
1446
+ /*
1447
+ --ck-color-button-action-background: hsl(168, 76%, 42%);
1448
+ --ck-color-button-action-hover-background: hsl(168, 76%, 38%);
1449
+ --ck-color-button-action-active-background: hsl(168, 76%, 36%);
1450
+ --ck-color-button-action-active-shadow: hsl(168, 75%, 34%);
1451
+ --ck-color-button-action-disabled-background: hsl(168, 76%, 42%);
1452
+ */
1453
+ --ck-color-button-action-text: var(--ck-custom-white);
1454
+
1455
+ --ck-color-button-save: hsl(120, 100%, 46%);
1456
+ --ck-color-button-cancel: hsl(15, 100%, 56%);
1457
+
1458
+ /* -- Overrides the default .ck-dropdown class colors. -------------------------------------- */
1459
+
1460
+ --ck-color-dropdown-panel-background: var(--ck-custom-background);
1461
+ --ck-color-dropdown-panel-border: var(--ck-custom-border);
1462
+
1463
+ /* -- Overrides the default .ck-splitbutton class colors. ----------------------------------- */
1464
+
1465
+ --ck-color-split-button-hover-background: var(--ck-color-button-default-hover-background);
1466
+ --ck-color-split-button-hover-border: var(--ck-custom-foreground);
1467
+
1468
+ /* -- Overrides the default .ck-input class colors. ----------------------------------------- */
1469
+
1470
+ --ck-color-input-background: var(--ck-custom-background);
1471
+ /*
1472
+ --ck-color-input-border: hsl(257, 3%, 43%);
1473
+ --ck-color-input-text: hsl(0, 0%, 98%);
1474
+ --ck-color-input-disabled-background: hsl(255, 4%, 21%);
1475
+ --ck-color-input-disabled-border: hsl(250, 3%, 38%);
1476
+ --ck-color-input-disabled-text: hsl(0, 0%, 78%);
1477
+ */
1478
+ /* -- Overrides the default .ck-labeled-field-view class colors. ---------------------------- */
1479
+
1480
+ --ck-color-labeled-field-label-background: var(--ck-custom-background);
1481
+
1482
+ /* -- Overrides the default .ck-list class colors. ------------------------------------------ */
1483
+
1484
+ --ck-color-list-background: var(--ck-custom-background);
1485
+ --ck-color-list-button-hover-background: var(--bs-gray-300);
1486
+ --ck-color-list-button-on-background: var(--ck-color-base-active);
1487
+ --ck-color-list-button-on-background-focus: var(--ck-color-base-active-focus);
1488
+ --ck-color-list-button-on-text: var(--bs-form-select-color);
1489
+
1490
+ --ck-color-panel-background: var(--ck-custom-background);
1491
+ --ck-color-panel-border: var(--ck-custom-border);
1492
+
1493
+ --ck-color-toolbar-background: var(--ck-custom-background);
1494
+ --ck-color-toolbar-border: var(--ck-custom-border);
1495
+ /*
1496
+ --ck-color-tooltip-background: hsl(252, 7%, 14%);
1497
+ --ck-color-tooltip-text: hsl(0, 0%, 93%);
1498
+
1499
+ --ck-color-image-caption-background: hsl(0, 0%, 97%);
1500
+ --ck-color-image-caption-text: hsl(0, 0%, 20%);
1501
+
1502
+ --ck-color-widget-blurred-border: hsl(0, 0%, 87%);
1503
+ --ck-color-widget-hover-border: hsl(43, 100%, 68%);
1504
+ --ck-color-widget-editable-focus-background: var(--ck-custom-white);
1505
+
1506
+ --ck-color-link-default: hsl(190, 100%, 75%);
1507
+ */
1508
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-admin-base-bootstrap",
3
- "version": "0.8.6",
3
+ "version": "0.8.8",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",