asab_webui_shell 27.3.5 → 27.3.6

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.
@@ -0,0 +1,26 @@
1
+ /*
2
+ Custom styling for the browser's find-in-page (Ctrl/Cmd+F) functionality (highlights matches).
3
+ These pseudo-elements are experimental and not supported by all browsers yet. They will silently fail in most browsers.
4
+ (Fully supported by Chrome and Edge as of 02/2026)
5
+ Browser support: https://caniuse.com/mdn-css_selectors_search-text
6
+ https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Selectors/::search-text
7
+ */
8
+
9
+ @supports selector(::search-text) {
10
+ [data-bs-theme=dark]:root::search-text {
11
+ color: var(--black);
12
+ background-color: rgba(var(--light-honey-rgb), 0.9);
13
+ }
14
+
15
+ [data-bs-theme=light]:root::search-text {
16
+ color: var(--fiery-sunset);
17
+ background-color: rgba(var(--bright-orange-rgb), 0.25);
18
+ }
19
+
20
+ // current selected is same in both themes
21
+ :root::search-text:current {
22
+ color: var(--white);
23
+ background-color: rgba(var(--bright-orange-rgb), 0.9);
24
+ text-decoration: underline;
25
+ }
26
+ }
@@ -7,6 +7,7 @@
7
7
  @use './components/alert';
8
8
  @use './components/button.scss';
9
9
  @use './components/form';
10
+ @use './components/find-in-page';
10
11
 
11
12
  // Import default bootstrap styles
12
13
  @import 'bootstrap/dist/css/bootstrap.min.css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asab_webui_shell",
3
- "version": "27.3.5",
3
+ "version": "27.3.6",
4
4
  "license": "BSD-3-Clause",
5
5
  "description": "TeskaLabs ASAB WebUI Shell Application",
6
6
  "contributors": [