Fixed issue 445: Made it more obvious that the column options in the custom tabular exporter dialog are for the selected column.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2232 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2011-09-02 03:31:03 +00:00
parent f7aa8c2705
commit 585d3fce3b
2 changed files with 9 additions and 2 deletions

View File

@ -48,8 +48,8 @@
<div id="custom-tabular-exporter-tabs-content"><div class="grid-layout grid-layout-for-ui layout-normal layout-full"><table>
<tr>
<th>Select and Order Columns to Export</th>
<th>Configure Options for Column "<span bind="columnNameSpan"></span>"</th>
<td>Select and Order Columns to Export</td>
<td>Options for <span bind="columnNameSpan" class="custom-tabular-exporter-selected-column"></span></td>
</tr>
<tr>
<td width="40%"><div bind="columnList" class="custom-tabular-exporter-columns"></div></td>

View File

@ -45,6 +45,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.custom-tabular-exporter-columns {
overflow: auto;
}
.custom-tabular-exporter-selected-column {
font-weight: bold;
border: 1px solid @chrome_primary;
background: @chrome_primary;
padding: @padding_tighter;
.rounded_corners();
}
.custom-tabular-exporter-dialog-column {
border: 1px solid @chrome_primary;