Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ const buildStyles = function (done) {
sourceComments: true
}))
.pipe(prefix({
browsers: ['last 2 version', '> 0.25%'],
cascade: true,
remove: true
}))
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,8 @@
"@highlightjs/cdn-assets": "^11.11.1",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.5"
}
},
"browserslist": [
"defaults"
]
}
17 changes: 7 additions & 10 deletions src/main/frontend/sass/_layout.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
@media (min-width: 767px) {
#header {
background: var(--white) url(../images/header.gif) top right no-repeat;
#logo {
display: block;
width: 12.75rem;
aspect-ratio: 7/3;
background: url(../images/existdb-web.svg) center left no-repeat;
text-indent: -999em;
outline: 0;
}
#logo {
display: block;
width: 12.75rem;
aspect-ratio: 7/3;
background: url(../images/existdb-web.svg) center left no-repeat;
text-indent: -999em;
outline: 0;
}
}

Expand Down
8 changes: 5 additions & 3 deletions src/main/xar-resources/modules/view.xql
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@ import module namespace app="http://exist-db.org/apps/docs/app" at "app.xql";

declare namespace output="http://www.w3.org/2010/xslt-xquery-serialization";

declare option output:method "html5";
declare option output:method "html";
declare option output:html-version "5.0";
declare option output:media-type "text/html";
declare option output:indent "no";

declare function local:lookup ($functionName as xs:string, $arity as xs:integer) {
function-lookup(xs:QName($functionName), $arity)
};

declare variable $local:templating-configuration := map {
$templates:CONFIG_FILTER_ATTRIBUTES : true(),
$templates:CONFIG_USE_CLASS_SYNTAX : false(),
$templates:CONFIG_APP_ROOT : $config:app-root,
$templates:CONFIG_USE_CLASS_SYNTAX : false(),
$templates:CONFIG_FILTER_ATTRIBUTES : true(),
$templates:CONFIG_STOP_ON_ERROR : true()
};

Expand Down