some testbubble fixes
This commit is contained in:
parent
199da623ff
commit
02f21fb74c
4 changed files with 36 additions and 3 deletions
|
@ -188,7 +188,7 @@ EOT;
|
||||||
$selected = (($group_id == $rr['id']) ? ' group-selected' : '');
|
$selected = (($group_id == $rr['id']) ? ' group-selected' : '');
|
||||||
$o .= ' <li class="sidebar-group-li">'
|
$o .= ' <li class="sidebar-group-li">'
|
||||||
. (($edit) ? "<a href=\"group/{$rr['id']}\" title=\"" . t('Edit')
|
. (($edit) ? "<a href=\"group/{$rr['id']}\" title=\"" . t('Edit')
|
||||||
. "\" class=\"groupsideedit\" ><img src=\"images/spencil.gif\" alt=\"" . t('Edit') . "\"></a> " : "")
|
. "\" class=\"groupsideedit\" ><span class=\"icon small-pencil\"></span></a> " : "")
|
||||||
. (($cid) ? '<input type="checkbox" class="' . (($selected) ? 'ticked' : 'unticked') . '" onclick="contactgroupChangeMember(' . $rr['id'] . ',' . $cid . ');return true;" '
|
. (($cid) ? '<input type="checkbox" class="' . (($selected) ? 'ticked' : 'unticked') . '" onclick="contactgroupChangeMember(' . $rr['id'] . ',' . $cid . ');return true;" '
|
||||||
. ((in_array($rr['id'],$member_of)) ? ' checked="checked" ' : '') . '/>' : '')
|
. ((in_array($rr['id'],$member_of)) ? ' checked="checked" ' : '') . '/>' : '')
|
||||||
. "<a href=\"$each/{$rr['id']}\" class=\"sidebar-group-element" . $selected ."\" >{$rr['name']}</a></li>\r\n";
|
. "<a href=\"$each/{$rr['id']}\" class=\"sidebar-group-element" . $selected ."\" >{$rr['name']}</a></li>\r\n";
|
||||||
|
|
|
@ -1788,6 +1788,12 @@ a.mail-list-link {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sidebar-group-list .icon {
|
||||||
|
display: inline-block;
|
||||||
|
height: 12px;
|
||||||
|
width: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
#sidebar-group-list li {
|
#sidebar-group-list li {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1878,6 +1878,11 @@ a.mail-list-link {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sidebar-group-list .icon {
|
||||||
|
display: inline-block;
|
||||||
|
height: 12px;
|
||||||
|
width: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
#search-save {
|
#search-save {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
|
|
@ -615,6 +615,7 @@ h3#search:before {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#sidebar-new-group:hover {
|
#sidebar-new-group:hover {
|
||||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );
|
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );
|
||||||
background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% );
|
background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% );
|
||||||
|
@ -627,6 +628,25 @@ h3#search:before {
|
||||||
top:1px;
|
top:1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.group-selected {
|
||||||
|
padding-bottom: 0px;
|
||||||
|
padding-left: 2px;
|
||||||
|
padding-right: 2px;
|
||||||
|
-moz-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
|
||||||
|
-webkit-box-shadow:inset 0px 1px 0px 0px #cfcfcf;
|
||||||
|
box-shadow:inset 0px 1px 0px 0px #cfcfcf;
|
||||||
|
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
|
||||||
|
background:-moz-linear-gradient( center top, #bdbdbd 5%, #a2a2a2 100% );
|
||||||
|
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bdbdbd', endColorstr='#a2a2a2');
|
||||||
|
background-color:#bdbdbd;
|
||||||
|
-moz-border-radius:5px;
|
||||||
|
-webkit-border-radius:5px;
|
||||||
|
border-radius:5px;
|
||||||
|
display:inline-block;
|
||||||
|
color:#efefef;
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
|
||||||
#sidebar-new-group a {
|
#sidebar-new-group a {
|
||||||
color: #efefef;
|
color: #efefef;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
@ -640,8 +660,10 @@ ul .sidebar-group-li{
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul .sidebar-group-li img{
|
ul .sidebar-group-li .icon{
|
||||||
display: none;
|
display: inline-block;
|
||||||
|
height: 12px;
|
||||||
|
width: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.widget h3{
|
.widget h3{
|
||||||
|
|
Loading…
Reference in a new issue