Index: token.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/token/token.css,v
retrieving revision 1.3
diff -u -p -r1.3 token.css
--- token.css	6 Sep 2010 14:55:41 -0000	1.3
+++ token.css	20 Feb 2011 12:47:20 -0000
@@ -9,3 +9,7 @@
   padding-top: 0;
   padding-bottom: 0;
 }
+
+.token-tree .token-group-nojs td {
+  font-weight: bold;
+}
Index: token.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/token/token.js,v
retrieving revision 1.3
diff -u -p -r1.3 token.js
--- token.js	20 Mar 2010 19:48:25 -0000	1.3
+++ token.js	20 Feb 2011 12:47:20 -0000
@@ -5,6 +5,7 @@
 Drupal.behaviors.tokenTree = {
   attach: function (context, settings) {
     $('table.token-tree', context).once('token-tree', function () {
+      $('table.token-tree tr.token-group-nojs').toggleClass('token-group-nojs');
       $(this).treeTable();
     });
   }
Index: token.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/token/token.pages.inc,v
retrieving revision 1.13
diff -u -p -r1.13 token.pages.inc
--- token.pages.inc	18 Dec 2010 01:53:33 -0000	1.13
+++ token.pages.inc	20 Feb 2011 12:47:21 -0000
@@ -114,7 +114,7 @@ function _token_token_tree_format_row($t
 
   if ($is_group) {
     // This is a token type/group.
-    $row['class'][] = 'token-group';
+    $row['class'] = array('token-group', 'token-group-nojs');
   }
   else {
     // This is a token.
