diff --git a/docs/index.html.ejs b/docs/index.html.ejs
index 0e85264..271aefd 100644
--- a/docs/index.html.ejs
+++ b/docs/index.html.ejs
@@ -197,11 +197,14 @@
A menu bar consists of menu elements that name menu items and they typically have a dropdown menu associated with them.
+ In case of a menu item as a single children or plain text with no menu dropdown associated with it, use aria-haspopup="false" attribute.
To create a menu bar we will use the .menu-bar class.
<%- example(`
+ - Single Item
+ - System.css on GitHub
-
File
diff --git a/style.css b/style.css
index e6b82be..1763eb5 100644
--- a/style.css
+++ b/style.css
@@ -637,6 +637,11 @@ ul[role="menu-bar"] > [role="menu-item"]:focus, ul[role="menu-bar"] > [role="men
color: var(--primary);
outline: none;
}
+ul[role="menu-bar"] > [role="menu-item"][aria-haspopup="false"] * {
+ color: inherit;
+ background: inherit;
+ text-decoration: none;
+}
ul[role="menu"] {
position: relative;
min-width: 200px;