frio - fix help toc aside
This commit is contained in:
parent
a9f1f47be2
commit
3fb993f37b
4 changed files with 38 additions and 11 deletions
|
@ -464,6 +464,22 @@ td.federation-data {
|
|||
opacity: 0.3;
|
||||
}
|
||||
|
||||
/* help widget */
|
||||
aside .help-aside-wrapper ul {
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
aside .help-aside-wrapper h1 {
|
||||
font-size:2em
|
||||
}
|
||||
|
||||
.md_warning {
|
||||
padding: 1em;
|
||||
border: #ff0000 solid 2px;
|
||||
background-color: #f9a3a3;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
#forum-widget-collapse:hover {
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
|
|
@ -98,7 +98,6 @@ blockquote {
|
|||
code {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.help-content-wrapper code, .help-aside-wrapper code {display: inline}
|
||||
|
||||
/**
|
||||
* mobile aside
|
||||
|
@ -1055,6 +1054,25 @@ aside > #datebrowse-sidebar .posted-date-selector-months > ul > li:hover{
|
|||
padding-left: 27px;
|
||||
}
|
||||
|
||||
/* help page widget */
|
||||
aside > .help-content-wrapper code, .help-aside-wrapper code {
|
||||
display: inline
|
||||
}
|
||||
aside > .help-aside-wrapper p strong:first-child {
|
||||
display: block;
|
||||
margin: 1em 0 0em;
|
||||
}
|
||||
aside > .help-aside-wrapper h1 {
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
padding: 20px 0 10px;
|
||||
}
|
||||
aside > .help-aside-wrapper h2 {
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* vcard / h-card */
|
||||
aside .vcard #profile-photo-wrapper{
|
||||
margin: 0;
|
||||
|
|
|
@ -300,7 +300,7 @@ function frio_acl_lookup(App $a, &$results)
|
|||
$sql_extra = '';
|
||||
if ($results["search"]) {
|
||||
$search_txt = dbesc(protect_sprintf(preg_quote($results["search"])));
|
||||
$sql_extra .= " AND (`attag` LIKE '%%" . dbesc($search_txt) . "%%' OR `name` LIKE '%%" . dbesc($search_txt) . "%%' OR `nick` LIKE '%%" . dbesc($search_txt) . "%%') ";
|
||||
$sql_extra .= " AND (`attag` LIKE '%%" . dbesc($search_txt) . "%%' OR `name` LIKE '%%" . dbesc($search_txt) . "%%' OR `nick` LIKE '%%" . dbesc($search_txt) . "%%' OR `addr` LIKE '%%" . dbesc($search_txt) . "%%') ";
|
||||
}
|
||||
|
||||
if ($nets) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue