mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-12 01:03:11 +00:00
tweaks to img paths
This commit is contained in:
parent
69d9690694
commit
25819c4ca4
5 changed files with 7 additions and 7 deletions
|
|
@ -118,7 +118,7 @@
|
|||
-webkit-font-smoothing: auto;
|
||||
font-size:0.80em;
|
||||
margin:0 0.5em;
|
||||
background:white url(@{static-root}bg-dark-diag.svg);
|
||||
background:white url(~"@{static-root}bg-dark-diag.svg");
|
||||
|
||||
&.primary{
|
||||
color:@color-grey-2;
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
@import "components/formatters.less";
|
||||
|
||||
html{
|
||||
background:url(@{static-root}bg-body.svg);
|
||||
background:url(~"@{static-root}bg-body.svg");
|
||||
height:100%;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
}
|
||||
|
||||
.objects{
|
||||
background:url(@{static-root}bg-dark-diag.svg);
|
||||
background:url(~"@{static-root}bg-dark-diag.svg");
|
||||
}
|
||||
.object{
|
||||
position:relative;
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
|
||||
> h2, &.single-field label{
|
||||
-webkit-font-smoothing: auto;
|
||||
background:@color-grey-3 url(@{static-root}bg-light-diag.svg);
|
||||
background:@color-grey-3 url(~"@{static-root}bg-light-diag.svg");
|
||||
text-transform:uppercase;
|
||||
padding:0.9em 0 0.9em 4em;
|
||||
font-size:0.95em;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
|
|||
from django.contrib.auth.decorators import permission_required
|
||||
|
||||
from wagtail.wagtailadmin.edit_handlers import ObjectList
|
||||
from wagtailadmin.forms import SearchForm
|
||||
from wagtail.wagtailadmin.forms import SearchForm
|
||||
|
||||
import models
|
||||
import forms
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ from django.contrib.auth.decorators import login_required
|
|||
from wagtail.wagtailsearch import models, forms
|
||||
from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
|
||||
|
||||
from wagtailsearch import models, forms
|
||||
from wagtailadmin.forms import SearchForm
|
||||
from wagtail.wagtailsearch import models, forms
|
||||
from wagtail.wagtailadmin.forms import SearchForm
|
||||
|
||||
@login_required
|
||||
def index(request):
|
||||
|
|
|
|||
Loading…
Reference in a new issue