summaryrefslogtreecommitdiff
path: root/modules/pref-labels.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-20 14:53:52 +0300
committerAndrew Dolgov <[email protected]>2010-11-20 14:53:52 +0300
commit59216e083ceae53c0f7862dcca4af20738b5d2cb (patch)
tree54e1a45a080d08bf9b51bb19fbab793e3f48ecd6 /modules/pref-labels.php
parentd90868d719a4a620ff5c1f74457626c429196590 (diff)
use dijit.form.Buttons in refactored filter/label dialogs
Diffstat (limited to 'modules/pref-labels.php')
-rw-r--r--modules/pref-labels.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/pref-labels.php b/modules/pref-labels.php
index 5e0253856..e381d72ff 100644
--- a/modules/pref-labels.php
+++ b/modules/pref-labels.php
@@ -25,7 +25,7 @@
$fg_color = $line['fg_color'];
$bg_color = $line['bg_color'];
- print "<span class=\"labelColorIndicator\" id=\"label-editor-indicator\" style='color : $fg_color; background-color : $bg_color'>&alpha;</span>";
+ print "<span class=\"labelColorIndicator\" id=\"label-editor-indicator\" style='color : $fg_color; background-color : $bg_color; margin-bottom : 4px; margin-right : 4px'>&alpha;</span>";
print "<input style=\"font-size : 16px\" name=\"caption\"
dojoType=\"dijit.form.ValidationTextBox\"
@@ -74,9 +74,9 @@
# print "</form>";
print "<div class=\"dlgButtons\">";
- print "<button onclick=\"dijit.byId('labelEditDlg').execute()\">".
+ print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('labelEditDlg').execute()\">".
__('Save')."</button>";
- print "<button onclick=\"dijit.byId('labelEditDlg').hide()\">".
+ print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('labelEditDlg').hide()\">".
__('Cancel')."</button>";
print "</div>";