mirror of
https://github.com/marcriera/ddgo-controller-docs.git
synced 2025-04-19 10:09:28 +02:00
Fix custom CSS
This commit is contained in:
parent
3dc5c861ac
commit
fd30647d80
4 changed files with 30 additions and 23 deletions
|
@ -11,7 +11,6 @@ collapsibleMenu = true
|
||||||
disableLandingPageButton = true
|
disableLandingPageButton = true
|
||||||
disableShortcutsTitle=true
|
disableShortcutsTitle=true
|
||||||
disableNextPrev = true
|
disableNextPrev = true
|
||||||
custom_css = [ "css/custom.css", "css/detail-pages.css" ]
|
|
||||||
|
|
||||||
[markup]
|
[markup]
|
||||||
[markup.goldmark]
|
[markup.goldmark]
|
||||||
|
|
30
layouts/partials/custom-header.html
Normal file
30
layouts/partials/custom-header.html
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
<style type="text/css">
|
||||||
|
|
||||||
|
<!-- General -->
|
||||||
|
#body .flex-block-wrapper {
|
||||||
|
max-width: 100%;
|
||||||
|
min-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flex-block-wrapper table {
|
||||||
|
overflow-x: auto;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
<!-- Detail pages -->
|
||||||
|
|
||||||
|
table #image img {
|
||||||
|
margin: 0;
|
||||||
|
max-width: 190px;
|
||||||
|
max-height: 190px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table #native {
|
||||||
|
background-color: rgba(189,233,186,.35);
|
||||||
|
}
|
||||||
|
|
||||||
|
table #partial {
|
||||||
|
background-color: rgba(255,215,140,.35);
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
|
@ -1,9 +0,0 @@
|
||||||
#body .flex-block-wrapper {
|
|
||||||
max-width: 100%;
|
|
||||||
min-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.flex-block-wrapper table {
|
|
||||||
overflow-x: auto;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
table #image img {
|
|
||||||
margin: 0;
|
|
||||||
max-width: 190px;
|
|
||||||
max-height: 190px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table #native {
|
|
||||||
background-color: rgba(189,233,186,.35);
|
|
||||||
}
|
|
||||||
|
|
||||||
table #partial {
|
|
||||||
background-color: rgba(255,215,140,.35);
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue