File tree Expand file tree Collapse file tree 4 files changed +16
-15
lines changed Expand file tree Collapse file tree 4 files changed +16
-15
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ const buildStyles = function (done) {
221
221
sourceComments : true
222
222
} ) )
223
223
. pipe ( prefix ( {
224
- browsers : [ 'last 2 version' , '> 0.25%' ] ,
225
224
cascade : true ,
226
225
remove : true
227
226
} ) )
Original file line number Diff line number Diff line change 56
56
"@highlightjs/cdn-assets" : " ^11.11.1" ,
57
57
"@popperjs/core" : " ^2.11.8" ,
58
58
"bootstrap" : " ^5.3.5"
59
- }
59
+ },
60
+ "browserslist" : [
61
+ " defaults"
62
+ ]
60
63
}
Original file line number Diff line number Diff line change 1
1
@media (min-width : 767px ) {
2
- #header {
3
- background : var (--white ) url (../images/header.gif ) top right no-repeat ;
4
- #logo {
5
- display : block ;
6
- width : 12.75rem ;
7
- aspect-ratio : 7 / 3 ;
8
- background : url (../images/existdb-web.svg ) center left no-repeat ;
9
- text-indent : -999em ;
10
- outline : 0 ;
11
- }
2
+ #logo {
3
+ display : block ;
4
+ width : 12.75rem ;
5
+ aspect-ratio : 7 / 3 ;
6
+ background : url (../images/existdb-web.svg ) center left no-repeat ;
7
+ text-indent : -999em ;
8
+ outline : 0 ;
12
9
}
13
10
}
14
11
Original file line number Diff line number Diff line change @@ -15,17 +15,19 @@ import module namespace app="http://exist-db.org/apps/docs/app" at "app.xql";
15
15
16
16
declare namespace output="http://www.w3.org/2010/xslt-xquery-serialization" ;
17
17
18
- declare option output:method "html5" ;
18
+ declare option output:method "html" ;
19
+ declare option output:html-version "5.0" ;
19
20
declare option output:media-type "text/html" ;
21
+ declare option output:indent "no" ;
20
22
21
23
declare function local:lookup ($functionName as xs:string, $arity as xs:integer) {
22
24
function-lookup (xs:QName ($functionName), $arity)
23
25
};
24
26
25
27
declare variable $local:templating-configuration := map {
26
- $templates:CONFIG_FILTER_ATTRIBUTES : true (),
27
- $templates:CONFIG_USE_CLASS_SYNTAX : false (),
28
28
$templates:CONFIG_APP_ROOT : $config:app-root,
29
+ $templates:CONFIG_USE_CLASS_SYNTAX : false (),
30
+ $templates:CONFIG_FILTER_ATTRIBUTES : true (),
29
31
$templates:CONFIG_STOP_ON_ERROR : true ()
30
32
};
31
33
You can’t perform that action at this time.
0 commit comments