mirror of
https://github.com/friendica/friendica
synced 2024-11-10 11:42:54 +00:00
ohh some spelling mistakes heading is written only with one d :-)
This commit is contained in:
parent
1e36de54d5
commit
625d107550
7 changed files with 13 additions and 13 deletions
|
@ -1591,7 +1591,7 @@ ul.dropdown-menu li:hover {
|
||||||
.search-input.form-control.form-search {
|
.search-input.form-control.form-search {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.search-headding {
|
.search-heading {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: $link_color;
|
color: $link_color;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
@ -1696,7 +1696,7 @@ ul.viewcontact_wrapper > li {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* directory page */
|
/* directory page */
|
||||||
#directory-search-headding {
|
#directory-search-heading {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -141,10 +141,10 @@ function loadModalTitle() {
|
||||||
//$("#modal-title").empty();
|
//$("#modal-title").empty();
|
||||||
|
|
||||||
// hide the first h3 child element of the modal body
|
// hide the first h3 child element of the modal body
|
||||||
$("#modal-body .headding").first().hide();
|
$("#modal-body .heading").first().hide();
|
||||||
|
|
||||||
// get the text of the first element with headding class
|
// get the text of the first element with heading class
|
||||||
var title = $("#modal-body .headding").first().text();
|
var title = $("#modal-body .heading").first().text();
|
||||||
|
|
||||||
// and append it to modal title
|
// and append it to modal title
|
||||||
if (title!=="") {
|
if (title!=="") {
|
||||||
|
|
|
@ -108,9 +108,9 @@ $(document).ready(function(){
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// add search-headding to the scecond navbar
|
// add search-heading to the scecond navbar
|
||||||
if( $(".search-headding")) {
|
if( $(".search-heading")) {
|
||||||
$(".search-headding").appendTo("#topbar-second > .container > #tabmenu");
|
$(".search-heading").appendTo("#topbar-second > .container > #tabmenu");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
|
|
||||||
{{$tabs}}
|
{{$tabs}}
|
||||||
|
|
||||||
{{* The page headding with it's contacts counter *}}
|
{{* The page heading with it's contacts counter *}}
|
||||||
<h2 class="headding">{{$header}} {{if $total}} ({{$total}}) {{/if}}</h2>
|
<h2 class="heading">{{$header}} {{if $total}} ({{$total}}) {{/if}}</h2>
|
||||||
|
|
||||||
{{if $finding}}<h4>{{$finding}}</h4>{{/if}}
|
{{if $finding}}<h4>{{$finding}}</h4>{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
|
|
||||||
{{if $findterm}}
|
{{if $findterm}}
|
||||||
<h4 class="search-headding">{{$finding}} {{$findterm}}</h4>
|
<h4 class="search-heading">{{$finding}} {{$findterm}}</h4>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{* The search input field to search for contacts *}}
|
{{* The search input field to search for contacts *}}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<div id="mail-thread-{{$thread_id}}" class="mail-thread">
|
<div id="mail-thread-{{$thread_id}}" class="mail-thread">
|
||||||
{{$brauchenwas}}
|
{{$brauchenwas}}
|
||||||
<h4 class="headding">{{$thread_subject}}</h3>
|
<h4 class="heading">{{$thread_subject}}</h3>
|
||||||
|
|
||||||
<div id="mail-conversation" class="panel panel-default {{if $canreply }}can-reply{{/if}}">
|
<div id="mail-conversation" class="panel panel-default {{if $canreply }}can-reply{{/if}}">
|
||||||
{{foreach $mails as $mail}}
|
{{foreach $mails as $mail}}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<div id="poke-wrapper">
|
<div id="poke-wrapper">
|
||||||
|
|
||||||
<h3 class="headding">{{$title}}</h3>
|
<h3 class="heading">{{$title}}</h3>
|
||||||
<div id="poke-desc">{{$desc}}</div>
|
<div id="poke-desc">{{$desc}}</div>
|
||||||
|
|
||||||
<form id="poke-form" action="poke" method="get">
|
<form id="poke-form" action="poke" method="get">
|
||||||
|
|
Loading…
Reference in a new issue