Skip to content

Commit

Permalink
issue6851: (index) should be put in italic
Browse files Browse the repository at this point in the history
  • Loading branch information
fflorent committed Nov 18, 2013
1 parent 027b2ef commit 79fe5e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion extension/content/firebug/chrome/tableRep.js
Expand Up @@ -56,7 +56,8 @@ var TableRep = domplate(Rep,
onclick: "$onClickHeader"},
FOR("column", "$object.columns",
TH({"class": "headerCell a11yFocus", "role": "columnheader",
$alphaValue: "$column.alphaValue"},
$alphaValue: "$column.alphaValue",
$dataTableIndex: "$column.index"},
DIV({"class": "headerCellBox"},
"$column.label"
)
Expand Down Expand Up @@ -356,6 +357,7 @@ var TableRep = domplate(Rep,
property: "__fb_table_index",
label: Locale.$STR("firebug.reps.table.Index"),
alphaValue: isAlphaValue,
index: true,
});
}
},
Expand Down
5 changes: 5 additions & 0 deletions extension/skin/classic/tableRep.css
Expand Up @@ -65,6 +65,11 @@
outline-offset: -2px;
}

/* The (index) column */
.dataTableIndex {
font-style: italic;
}

/*****************************************************************************************/
/* Console panel filter */

Expand Down

0 comments on commit 79fe5e5

Please sign in to comment.