Skip to content

Commit 1b1426c

Browse files
committed
Apply suggestions
1 parent c2d545d commit 1b1426c

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

src/css/doc.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ details[open] > summary {
11221122
.doc .tableblock .choices__list--dropdown,
11231123
.doc .tableblock .choices__list[aria-expanded],
11241124
.doc .choices__list--dropdown,
1125-
.doc .choices__list[aria-expanded][aria-expanded] {
1125+
.doc .choices__list[aria-expanded="true"] {
11261126
background-color: var(--body-background);
11271127
color: var(--body-font-color);
11281128
}

src/css/table-filters.css

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@
4747
}
4848

4949
.doc .metadata-block .dropdown-menu {
50-
left: 50px;
50+
left: 0;
5151
max-width: 180px;
52+
transform: translateX(50px);
5253
}
5354

5455
/* ===== TABLE FILTERS CONTAINER ===== */
@@ -220,6 +221,12 @@
220221
font-weight: bold;
221222
}
222223

224+
.doc .dropdown-checkbox-option input[type="checkbox"]:focus-visible {
225+
outline: 2px solid #54478c;
226+
outline-offset: 2px;
227+
box-shadow: 0 0 0 4px rgba(84, 71, 140, 0.15);
228+
}
229+
223230
.doc .dropdown-checkbox-option span {
224231
font-weight: 400;
225232
color: #202124;
@@ -433,6 +440,12 @@
433440
background: var(--link-highlight-color);
434441
}
435442

443+
.doc .dropdown-checkbox-option input[type="checkbox"]:focus-visible {
444+
outline: 2px solid var(--link-highlight-color);
445+
outline-offset: 2px;
446+
box-shadow: 0 0 0 4px var(--link-highlight-background-color);
447+
}
448+
436449
.doc .dropdown-checkbox-option span {
437450
color: var(--body-font-color);
438451
}
@@ -601,6 +614,14 @@ html[data-theme="dark"] .doc .dropdown-checkbox-option input[type="checkbox"]:ch
601614
background: var(--link-highlight-color);
602615
}
603616

617+
.doc[data-theme="dark"] .dropdown-checkbox-option input[type="checkbox"]:focus-visible,
618+
.doc.dark .dropdown-checkbox-option input[type="checkbox"]:focus-visible,
619+
html[data-theme="dark"] .doc .dropdown-checkbox-option input[type="checkbox"]:focus-visible {
620+
outline: 2px solid var(--link-highlight-color);
621+
outline-offset: 2px;
622+
box-shadow: 0 0 0 4px var(--link-highlight-background-color);
623+
}
624+
604625
.doc[data-theme="dark"] .dropdown-checkbox-option span,
605626
.doc.dark .dropdown-checkbox-option span,
606627
html[data-theme="dark"] .doc .dropdown-checkbox-option span {

0 commit comments

Comments
 (0)