network select widget
This commit is contained in:
parent
291a82c4a4
commit
c3ada095f4
6 changed files with 96 additions and 3 deletions
10
view/nets.tpl
Normal file
10
view/nets.tpl
Normal file
|
@ -0,0 +1,10 @@
|
|||
<div id="nets-sidebar" class="widget">
|
||||
<h3>$title</h3>
|
||||
<div id="nets-desc">$desc</div>
|
||||
<a href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a>
|
||||
<ul class="nets-ul">
|
||||
{{ for $nets as $net }}
|
||||
<li><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li>
|
||||
{{ endfor }}
|
||||
</ul>
|
||||
</div>
|
|
@ -300,7 +300,7 @@ div.wall-item-content-wrapper.shiny {
|
|||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.group-selected {
|
||||
.group-selected, .nets-selected {
|
||||
padding: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
|
@ -1836,6 +1836,21 @@ a.mail-list-link {
|
|||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.nets-ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.nets-ul li {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.nets-link {
|
||||
margin-left: 24px;
|
||||
}
|
||||
.nets-all {
|
||||
margin-left: 42px;
|
||||
}
|
||||
|
||||
#search-save {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
|
|
@ -164,7 +164,7 @@ blockquote:before {
|
|||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.group-selected {
|
||||
.group-selected, .nets-selected {
|
||||
padding: 3px;
|
||||
border: 1px solid #CCCCCC;
|
||||
background: #F8F8F8;
|
||||
|
@ -1901,6 +1901,21 @@ a.mail-list-link {
|
|||
width: 12px;
|
||||
}
|
||||
|
||||
.nets-ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.nets-ul li {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.nets-link {
|
||||
margin-left: 24px;
|
||||
}
|
||||
.nets-all {
|
||||
margin-left: 42px;
|
||||
}
|
||||
|
||||
#search-save {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
|
|
@ -630,7 +630,7 @@ h3#search:before {
|
|||
top:1px;
|
||||
}
|
||||
|
||||
.group-selected {
|
||||
.group-selected, .nets-selected {
|
||||
padding-bottom: 0px;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
|
@ -668,6 +668,23 @@ ul .sidebar-group-li .icon{
|
|||
width: 12px;
|
||||
}
|
||||
|
||||
|
||||
.nets-ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.nets-ul li {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.nets-link {
|
||||
margin-left: 24px;
|
||||
}
|
||||
.nets-all {
|
||||
margin-left: 42px;
|
||||
}
|
||||
|
||||
|
||||
.widget h3{
|
||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f0edf0), color-stop(1, #e2e2e2) );
|
||||
background:-moz-linear-gradient( center top, #f0edf0 5%, #e2e2e2 100% );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue