- No hover effects for disabled elements
- Use full table width for notice about empty database
Dieser Commit ist enthalten in:
Ursprung
d50ef4adba
Commit
65bfb9743b
3 geänderte Dateien mit 9 neuen und 4 gelöschten Zeilen
|
@ -35,7 +35,7 @@ if ($this->pageCount) {
|
|||
</a>
|
||||
<?php
|
||||
} else { ?>
|
||||
<button class="Formbutton"><?php echo $this->getIcon('ForwardDisabled', '', 16);?></button>
|
||||
<button class="Formbutton" disabled="disabled"><?php echo $this->getIcon('ForwardDisabled', '', 16);?></button>
|
||||
<?php
|
||||
}
|
||||
|
||||
|
@ -45,7 +45,7 @@ if ($this->pageCount) {
|
|||
</a>
|
||||
<?php
|
||||
} else { ?>
|
||||
<button disabled="disabled" class="Formbutton"><?php echo $this->getIcon('LastDisabled', '', 16);?></button>
|
||||
<button class="Formbutton" disabled="disabled"><?php echo $this->getIcon('LastDisabled', '', 16);?></button>
|
||||
<?php
|
||||
}
|
||||
} ?>
|
||||
|
|
|
@ -220,7 +220,7 @@ if ($this->tables->getTotalItemCount() >= 1) {
|
|||
$i++;
|
||||
endforeach;
|
||||
if ($this->tables->getTotalItemCount() <= 0) { ?>
|
||||
<tr><td colspan="12" class="error"><?php echo $this->lang->L_INFO_DBEMPTY;?></td></tr>
|
||||
<tr><td colspan="15" class="error"><?php echo $this->lang->L_INFO_DBEMPTY;?></td></tr>
|
||||
<?php }
|
||||
echo $this->partial('/sql/tables/table-header.phtml',
|
||||
array('lang' => $this->lang));
|
||||
|
|
|
@ -80,6 +80,10 @@ a:hover {
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
a[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
img {
|
||||
display: inline;
|
||||
border: 0px;
|
||||
|
@ -379,10 +383,11 @@ a.Formbutton:hover,button.Formbutton:hover,input.Formbutton:hover {
|
|||
color: #256777 !important;
|
||||
}
|
||||
|
||||
.Formbutton:disabled {
|
||||
.Formbutton:disabled,.Formbutton:disabled:hover {
|
||||
color: #888 !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/********** breadcrumb *******/
|
||||
#breadcrumb ul {
|
||||
list-style: none;
|
||||
|
|
Laden …
In neuem Issue referenzieren