Improve readability
- Move CSS block above the temporary block - Add template description
This commit is contained in:
parent
57ce6cf5da
commit
ebdc9667f7
|
@ -2508,16 +2508,7 @@ body .tread-wrapper .hovercard:hover .hover-card-content a {
|
||||||
color: $link_color !important;
|
color: $link_color !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* some temporary workarounds until this will solved
|
|
||||||
* elsewhere (e.g. new templates)
|
|
||||||
*/
|
|
||||||
section .profile-match-wrapper {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Pagination improvements */
|
/* Pagination improvements */
|
||||||
|
|
||||||
.pagination > li > a,
|
.pagination > li > a,
|
||||||
.pagination > li > span {
|
.pagination > li > span {
|
||||||
color: $link_color;
|
color: $link_color;
|
||||||
|
@ -2531,7 +2522,14 @@ section .profile-match-wrapper {
|
||||||
background-color: $link_color;
|
background-color: $link_color;
|
||||||
border-color: $link_color;
|
border-color: $link_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.disabled > a {
|
.disabled > a {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* some temporary workarounds until this will solved
|
||||||
|
* elsewhere (e.g. new templates)
|
||||||
|
*/
|
||||||
|
section .profile-match-wrapper {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
{{* Pager template, uses output of paginate_data() in include/text.php *}}
|
||||||
{{if $pager}}
|
{{if $pager}}
|
||||||
<div class="{{$pager.class}}">
|
<div class="{{$pager.class}}">
|
||||||
{{if $pager.first}}<li class="pager_first {{$pager.first.class}}"><a href="{{$pager.first.url}}">{{$pager.first.text}}</a></li>{{/if}}
|
{{if $pager.first}}<li class="pager_first {{$pager.first.class}}"><a href="{{$pager.first.url}}">{{$pager.first.text}}</a></li>{{/if}}
|
||||||
|
|
Loading…
Reference in a new issue