* changed css names to compatible with zui.

This commit is contained in:
Catouse
2014-03-26 11:01:19 +08:00
parent 1ff011f641
commit e94843f4e2
74 changed files with 303 additions and 296 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<table class='table-1 fixed colored tablesorter datatable'>
<caption class='caption-tl pb-10px'>
<div class='f-left'><?php echo $lang->sso->browse;?></div>
<div class='f-right'>
<div class='text-right'>
<?php common::printIcon('sso', 'create');?>
</div>
</caption>
+3 -3
View File
@@ -4,16 +4,16 @@
<caption><?php echo $lang->sso->create;?></caption>
<tr>
<th class='rowhead'><?php echo $lang->sso->title;?></th>
<td><?php echo html::input('title', '', "class='text-3' placeholder='{$lang->sso->note->title}'");?></td>
<td><?php echo html::input('title', '', "class='form-control' placeholder='{$lang->sso->note->title}'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->sso->code;?></th>
<td><?php echo html::input('code', '', "class='text-3' placeholder='{$lang->sso->note->code}'");?></td>
<td><?php echo html::input('code', '', "class='form-control' placeholder='{$lang->sso->note->code}'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->sso->key;?></th>
<td>
<?php echo html::input('key', $key, "class='text-3' readonly='readonly'");?>
<?php echo html::input('key', $key, "class='form-control' readonly='readonly'");?>
<?php echo html::a('javascript:void(0)', $lang->sso->createKey, '', 'onclick="createKey()"')?>
</td>
</tr>
+2 -2
View File
@@ -4,7 +4,7 @@
<caption><?php echo $lang->sso->edit;?></caption>
<tr>
<th class='rowhead'><?php echo $lang->sso->title;?></th>
<td><?php echo html::input('title', $auth->title, "class='text-3'");?></td>
<td><?php echo html::input('title', $auth->title, "class='form-control'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->sso->code;?></th>
@@ -13,7 +13,7 @@
<tr>
<th class='rowhead'><?php echo $lang->sso->key;?></th>
<td>
<?php echo html::input('key', $auth->key, "class='text-3' readonly='readonly'");?>
<?php echo html::input('key', $auth->key, "class='form-control' readonly='readonly'");?>
<?php echo html::a('javascript:void(0)', $lang->sso->createKey, '', 'onclick="createKey()"')?>
</td>
</tr>