diff --git a/reviewboard/static/rb/css/dashboard.less b/reviewboard/static/rb/css/dashboard.less
index cb51f2fef6b5f559d9e336f6db0a142ebe7d9709..499ea07d643a8e99552ad61e7ed213f4689abef0 100644
--- a/reviewboard/static/rb/css/dashboard.less
+++ b/reviewboard/static/rb/css/dashboard.less
@@ -159,7 +159,7 @@
 
     &.has-url:hover,
     &.active {
-      .row {
+      .datagrid-sidebar-row {
         background: @dashboard-sidebar-active-bg;
       }
     }
@@ -167,7 +167,7 @@
     &.section {
       margin: 0 0 1em 0;
 
-      & > .row .label {
+      & > .datagrid-sidebar-row .label {
         font-size: 110%;
         font-weight: bold;
       }
@@ -228,7 +228,7 @@
       }
     }
 
-    .row {
+    .datagrid-sidebar-row {
       line-height: 16px;
       padding: @dashboard-sidebar-vert-padding @dashboard-sidebar-horiz-padding;
       position: relative;
diff --git a/reviewboard/templates/datagrids/sidebar_nav_item.html b/reviewboard/templates/datagrids/sidebar_nav_item.html
index e03d4fe1558c1024a5e9b848966e6077dd4483c3..7a3adca951b1394ea0e94e3afc657cb08a2cf22b 100644
--- a/reviewboard/templates/datagrids/sidebar_nav_item.html
+++ b/reviewboard/templates/datagrids/sidebar_nav_item.html
@@ -1,5 +1,5 @@
 <li class="item has-url{% if active %} active{% endif %}{% if has_count %} has-count{% endif %}{% if css_classes %} {{css_classes|join:' '}}{% endif %}" onclick="javascript:window.location=&quot;{{url}}&quot;; return false;">
- <div class="row">
+ <div class="datagrid-sidebar-row">
   <div class="rb-icon {{icon_name|default:''}}"></div>
   <span class="label"><a href="{{url}}">{{label}}</a></span>
 {% if has_count %}
diff --git a/reviewboard/templates/datagrids/sidebar_section.html b/reviewboard/templates/datagrids/sidebar_section.html
index 9edeac3e1ff31db9721055128f5d9476849bfcfb..755b3a317753cc6e3e12878532b02c05d2d6e291 100644
--- a/reviewboard/templates/datagrids/sidebar_section.html
+++ b/reviewboard/templates/datagrids/sidebar_section.html
@@ -1,5 +1,5 @@
 <li class="section{% if active %} active{% endif %} {% if url %}has-url{% endif %}{% if css_classes %} {{css_classes|join:' '}}{% endif %}"{% if url %} onclick="javascript:window.location=&quot;{{url}}&quot;; return false;"{% endif %}>
- <div class="row">
+ <div class="datagrid-sidebar-row">
   <span class="label">{% if url %}<a href="{{url}}">{% endif %}{% if icon_name %}<div class="rb-icon {{icon_name}}"></div> {% endif %}{{label}}{% if url %}</a>{% endif %}</span>
 {% if has_count %}
   <span class="count {% if count == 0 %}count-zero{% endif %}">{{count}}</span>
diff --git a/reviewboard/templates/datagrids/sidebar_user_info.html b/reviewboard/templates/datagrids/sidebar_user_info.html
index 389f497dc7368ef8e609e8f9118adb1fc3e6e663..4131d00602dc1e9ed3c6088fbf60f425b5a67c16 100644
--- a/reviewboard/templates/datagrids/sidebar_user_info.html
+++ b/reviewboard/templates/datagrids/sidebar_user_info.html
@@ -1,33 +1,33 @@
 {% load gravatars i18n tz %}
 
 <li id="user_page_profile">
- <div class="row">
+ <div class="datagrid-sidebar-row">
   {% gravatar profile_user 175 %}
  </div>
 
- <div class="row">
+ <div class="datagrid-sidebar-row">
   <h2 class="nickname">{{profile_user.username}}</h2>
  </div>
 
 {% if show_profile %}
- <div class="row fn">
+ <div class="datagrid-sidebar-row fn">
   {{profile_user.first_name}} {{profile_user.last_name}}
  </div>
 
 {%  if request.user.is_authenticated %}
- <div class="row">
+ <div class="datagrid-sidebar-row">
   <a class="email" href="mailto:{{profile_user.email}}">{{profile_user.email}}</a>
  </div>
 {%  endif %}
 
 {%  localtime on %}
- <div class="row logged-in">
+ <div class="datagrid-sidebar-row logged-in">
 {%   blocktrans with profile_user.last_login|localtime|date as last_login_date %}
   Last logged in {{last_login_date}}
 {%   endblocktrans %}
  </div>
 
- <div class="row joined">
+ <div class="datagrid-sidebar-row joined">
 {%   blocktrans with profile_user.date_joined|localtime|date as joined_date %}
   Joined {{joined_date}}
 {%   endblocktrans %}
