Skip to content

Commit 308791c

Browse files
mgurgelgithub-actions[bot]
authored andcommitted
Release build 7.19.0 [ci release]
1 parent 874b27a commit 308791c

File tree

110 files changed

+12306
-1684
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+12306
-1684
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
- [Autofill password import] animate export password only once (#1400)
2-
- build(deps-dev): bump the typescript group with 3 updates (#1475)
3-
- history: support single row context menu (#1482)
4-
- history: context menu for section titles (#1481)
5-
- history: support deleting sidebar time ranges (#1480)
6-
- ntp: default to an empty query when 'all' is selected (#1472)
1+
- Windows support for Malicious website protection (#1423)
2+
- history: adding item selection (#1486)
3+
- Duck Player screenshot update (#1489)

Sources/ContentScopeScripts/dist/pages/history/dist/index.css

Lines changed: 34 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -366,29 +366,44 @@ body {
366366
border-radius: 5px;
367367
position: relative;
368368
}
369-
.Item_title:hover {
370-
background: var(--color-black-at-6);
371-
}
372-
[data-theme=dark] .Item_title:hover {
373-
background: var(--color-white-at-6);
374-
}
375-
[data-theme=dark] .Item_title:hover .Item_titleDots {
376-
color: var(--color-white-at-84);
377-
}
378369
.Item_row {
379370
height: 28px;
380371
display: flex;
381372
gap: 8px;
382373
align-items: center;
383-
color: var(--history-text-normal);
384374
border-radius: 5px;
385375
padding-left: 9px;
386376
padding-right: 5px;
387377
position: relative;
388378
}
389-
.Item_row:is(:hover, :focus-visible) {
390-
background: #2565D9;
391-
color: var(--color-white-at-84);
379+
.Item_hover {
380+
--row-bg: inherit;
381+
--row-color: var(--history-text-normal);
382+
--dots-bg-hover: var(--color-black-at-9);
383+
--dots-opacity: 0;
384+
--time-opacity: 0.6;
385+
--time-visibility: visible;
386+
background: var(--row-bg);
387+
color: var(--row-color);
388+
}
389+
.Item_hover:is(:hover, :focus-within) {
390+
--dots-opacity: visible;
391+
--time-opacity: 0;
392+
--time-visibility: hidden;
393+
}
394+
.Item_hover:hover:not([aria-selected=true]) {
395+
--row-bg: var(--color-black-at-6);
396+
}
397+
[data-theme=dark] .Item_hover:hover:not([aria-selected=true]) {
398+
--row-bg: var(--color-white-at-6);
399+
}
400+
[data-theme=dark] .Item_hover {
401+
--dots-bg-hover: var(--color-white-at-12);
402+
}
403+
.Item_hover[aria-selected=true] {
404+
--row-bg: #2565D9;
405+
--row-color: var(--color-white-at-84);
406+
--dots-bg-hover: var(--color-white-at-9);
392407
}
393408
.Item_entryLink {
394409
white-space: nowrap;
@@ -415,16 +430,10 @@ body {
415430
.Item_time {
416431
margin-left: auto;
417432
flex-shrink: 0;
418-
opacity: 0.6;
419-
}
420-
.Item_row:hover .Item_time,
421-
.Item_row:focus-visible .Item_time {
422-
opacity: 0;
423-
visibility: hidden;
433+
opacity: var(--time-opacity);
434+
visibility: var(--time-visibility);
424435
}
425436
.Item_dots {
426-
opacity: 0;
427-
visibility: hidden;
428437
position: absolute;
429438
top: 50%;
430439
transform: translateY(-50%);
@@ -435,32 +444,18 @@ body {
435444
background: transparent;
436445
border: 0;
437446
z-index: 1;
447+
color: inherit;
448+
opacity: var(--dots-opacity);
438449
}
439450
.Item_dots svg {
440451
width: 16px;
441452
height: 16px;
442453
}
443454
.Item_dots:hover {
444-
background: var(--color-white-at-9);
445-
}
446-
.Item_dots:active {
447-
background: var(--color-white-at-18);
455+
background: var(--dots-bg-hover);
448456
}
449-
.Item_row:hover .Item_dots,
450-
.Item_row:focus-visible .Item_dots {
457+
.Item_dots:focus-visible {
451458
opacity: 1;
452-
visibility: visible;
453-
color: var(--color-white-at-84);
454-
}
455-
.Item_title:hover .Item_dots {
456-
opacity: 1;
457-
visibility: visible;
458-
}
459-
.Item_title .Item_dots:hover {
460-
background: var(--color-black-at-6);
461-
}
462-
.Item_title .Item_dots:active {
463-
background: var(--color-black-at-9);
464459
}
465460
.Item_titleDots {
466461
width: 28px;

0 commit comments

Comments
 (0)