1
0
mirror of https://github.com/MatMoul/quickdial-webext.git synced 2025-12-16 08:53:13 +00:00

Feature: Add border size setting for tiles

This commit is contained in:
2017-11-10 20:34:19 +01:00
parent 0b59809758
commit 356bf74e8d
4 changed files with 29 additions and 4 deletions

View File

@@ -12,6 +12,7 @@
input[type=color] { width: 60px; }
.hidden { display: none; }
.Tab>table { width: 100%; border-collapse: collapse; }
.Tab>div { overflow: auto; }
.Tab .TabSpace { width: 100%; border-bottom: solid 1px #505050; }
.Tab .TabButton { border: solid 1px #505050; padding: 2px 6px 2px 6px; cursor: default; }
.Tab .TabButtonActive { border: solid 1px #505050; border-bottom: none; padding: 2px 6px 2px 6px; cursor: default; }
@@ -101,6 +102,11 @@
<td><input id="GridCellsMargins" type="number"></td>
<td><input id="GridCellsMarginsHover" type="number" style="display: none;"></td>
</tr>
<tr>
<td><span>Border Size :</span></td>
<td><input id="GridCellsBorderSize" type="number"></td>
<td><input id="GridCellsBorderSizeHover" type="number" style="display: none;"></td>
</tr>
<tr>
<td><span>Border Radius :</span></td>
<td><input id="GridCellsBorderRadius" type="number"></td>
@@ -136,6 +142,11 @@
<td><input id="GridCellsTitleFontSize" type="number"></td>
<td></td>
</tr>
<tr>
<td><span>Title Border Size :</span></td>
<td><input id="GridCellsTitleBorderSize" type="number"></td>
<td></td>
</tr>
<tr>
<td><span>Title Text Color :</span></td>
<td><input id="GridCellsTitleColor" type="color"></td>