improve dark mode export dialog l&f
This commit is contained in:
parent
80b4765cd0
commit
9cb53f983e
2 changed files with 13 additions and 1 deletions
|
|
@ -897,7 +897,7 @@ let add = {
|
|||
}
|
||||
let last = api.prefs.map.threads = (api.prefs.map.threads || {});
|
||||
api.modal.dialog({
|
||||
title: "gear generator",
|
||||
title: "threads generator",
|
||||
body: [ h.div({ class: "additem" }, [
|
||||
h.label('height'),
|
||||
h.input({ value: last.height || 25, size: 5, id: "_height" }),
|
||||
|
|
|
|||
|
|
@ -1482,6 +1482,10 @@ th, tr, td, label {
|
|||
#tool-cols {
|
||||
max-height: 350px;
|
||||
}
|
||||
.dark #mod-x {
|
||||
border-color: #555;
|
||||
background-color: rgba(0,0,0,0.15);
|
||||
}
|
||||
#mod-x {
|
||||
border-radius: 5px;
|
||||
border: 2px solid rgba(255,255,255,0.5);
|
||||
|
|
@ -1565,6 +1569,10 @@ th, tr, td, label {
|
|||
font-weight: normal;
|
||||
padding-top: 5px;
|
||||
}
|
||||
.dark #mod-print .box {
|
||||
background-color: rgba(0,0,0,0.15);
|
||||
border-color: #555;
|
||||
}
|
||||
#mod-print .box {
|
||||
background-color: rgba(255,255,255,0.5);
|
||||
border: 1px solid #bbb;
|
||||
|
|
@ -1600,6 +1608,10 @@ th, tr, td, label {
|
|||
font-weight: bold;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.dark #mod-print button {
|
||||
background-color: #555;
|
||||
border-color: #777;
|
||||
}
|
||||
#mod-print button {
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
|
|
|||
Loading…
Reference in a new issue