Skip to content

Commit 874b27a

Browse files
Release build 7.18.0 [ci release]
1 parent 1876d68 commit 874b27a

Some content is hidden

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

52 files changed

+2169
-276
lines changed

CHANGELOG.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
- history: documenting the data model (#1468)
2-
- history: create specialized list component/hooks (#1470)
3-
- build(deps-dev): bump typescript-eslint from 8.21.0 to 8.23.0 (#1460)
4-
- build(deps-dev): bump the typescript group across 1 directory with 2 updates (#1457)
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)

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

Lines changed: 40 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,11 @@ body {
342342
border: 1px solid var(--history-surface-border-color);
343343
padding-left: 9px;
344344
padding-right: 9px;
345+
background: inherit;
346+
color: inherit;
347+
}
348+
.Header_searchInput:focus {
349+
outline: none;
345350
}
346351

347352
/* pages/history/app/components/Item.module.css */
@@ -477,6 +482,25 @@ body {
477482
padding: 0;
478483
margin: 0;
479484
}
485+
.VirtualizedList_emptyState {
486+
width: 100%;
487+
height: 100%;
488+
text-align: center;
489+
color: var(--history-text-normal);
490+
}
491+
.VirtualizedList_emptyStateOffset {
492+
padding-top: var(--sp-32);
493+
}
494+
.VirtualizedList_emptyStateImage {
495+
width: 128px;
496+
height: 96px;
497+
display: inline-block;
498+
}
499+
.VirtualizedList_emptyTitle {
500+
font-size: var(--title-3-em-font-size);
501+
font-weight: var(--title-3-em-font-weight);
502+
line-height: var(--title-3-em-line-height);
503+
}
480504

481505
/* pages/history/app/components/Sidebar.module.css */
482506
.Sidebar_stack {
@@ -497,8 +521,17 @@ body {
497521
.Sidebar_nav {
498522
}
499523
.Sidebar_item {
500-
height: 40px;
501524
position: relative;
525+
border-radius: 8px;
526+
}
527+
.Sidebar_item:is(:hover, :focus-visible) {
528+
background: var(--color-black-at-6);
529+
}
530+
[data-theme=dark] .Sidebar_item:is(:hover, :focus-visible) {
531+
background: var(--color-white-at-6);
532+
}
533+
.Sidebar_link {
534+
height: 40px;
502535
display: flex;
503536
align-items: center;
504537
border-radius: 8px;
@@ -508,12 +541,6 @@ body {
508541
color: var(--history-text-normal);
509542
gap: 6px;
510543
}
511-
.Sidebar_item:is(:hover, :focus-visible) {
512-
background: var(--color-black-at-6);
513-
}
514-
[data-theme=dark] .Sidebar_item:is(:hover, :focus-visible) {
515-
background: var(--color-white-at-6);
516-
}
517544
.Sidebar_delete {
518545
height: 40px;
519546
width: 40px;
@@ -528,12 +555,13 @@ body {
528555
border-bottom-left-radius: 0;
529556
background: transparent;
530557
border: none;
558+
cursor: pointer;
531559
opacity: 0;
532-
visibility: hidden;
533560
color: inherit;
534561
}
535-
.Sidebar_delete:hover {
562+
.Sidebar_delete:is(:hover, :focus-visible) {
536563
background: var(--color-black-at-9);
564+
opacity: 1;
537565
}
538566
.Sidebar_delete:active {
539567
background: var(--color-black-at-12);
@@ -546,7 +574,9 @@ body {
546574
}
547575
.Sidebar_item:hover .Sidebar_delete {
548576
opacity: 1;
549-
visibility: visible;
577+
}
578+
.Sidebar_link:focus-visible + .Sidebar_delete {
579+
opacity: 1;
550580
}
551581
.Sidebar_delete svg path {
552582
fill-opacity: 0.6;

0 commit comments

Comments
 (0)