@kerkhoff-ict/solora 2.6.1 → 2.6.2

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/dist/index.css +20 -0
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -745,6 +745,26 @@
745
745
  :root.dark .sol-input-error {
746
746
  border-color: var(--color-danger, #ff453a) !important;
747
747
  }
748
+ .sol-input:read-only {
749
+ background: var(--color-bg-readonly, #f9f9f9);
750
+ border-color: rgba(0, 0, 0, 0.05);
751
+ cursor: default;
752
+ box-shadow: none;
753
+ color: var(--color-text-dark, #000);
754
+ }
755
+ .sol-input:read-only:hover {
756
+ background: var(--color-bg-readonly, #f9f9f9);
757
+ border-color: rgba(0, 0, 0, 0.05);
758
+ }
759
+ .sol-input:read-only:focus {
760
+ border-color: rgba(0, 0, 0, 0.1);
761
+ box-shadow: none;
762
+ }
763
+ :root.dark .sol-input:read-only {
764
+ background: rgba(255, 255, 255, 0.03);
765
+ border-color: rgba(255, 255, 255, 0.05);
766
+ color: var(--color-text-light, #fff);
767
+ }
748
768
  .sol-input:hover {
749
769
  border-color: rgba(0, 0, 0, 0.2);
750
770
  background: var(--color-bg-hover, #ffffff);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kerkhoff-ict/solora",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "Simple CSS component library",
5
5
  "main": "dist/index.js",
6
6
  "style": "dist/index.css",