Skip to content

Commit 89f4892

Browse files
kartbencsarip
authored andcommitted
doc: Remove disabled row styling from table of supported HW features
Grayed out rows in the table of supported HW features are more confusing than helpful. The yellow/green indicators with the count for each feature are enough to communicate the initial status. Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
1 parent 9462df3 commit 89f4892

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

doc/_extensions/zephyr/domain/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -871,8 +871,6 @@ def feature_sort_key(feature):
871871

872872
for i, (key, value) in enumerate(items):
873873
row = nodes.row()
874-
if value.get("disabled_nodes", []) and not value.get("okay_nodes", []):
875-
row["classes"].append("disabled")
876874

877875
# TYPE column
878876
if i == 0:

doc/_extensions/zephyr/domain/static/css/board.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,6 @@
133133
}
134134
}
135135

136-
/* Disabled feature styling */
137-
tr.disabled {
138-
opacity: 0.3;
139-
}
140-
141136
/* Column widths and specific styling */
142137
.type {
143138
font-weight: 600;

0 commit comments

Comments
 (0)