summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-11-02 13:40:09 +0100
committerYorhel <git@yorhel.nl>2020-11-02 13:40:11 +0100
commitddc4b6779acc962addd7f0dfd31df70d77fff113 (patch)
tree94c1a74504eff881380e5e66e12a35cf3988e498 /data
parentff3738db5ef84abf93a97724fe4bc397878e57e3 (diff)
Advsearch: Add dropdown to change nesting type + styling fixes
NOW we're really getting somewhere!
Diffstat (limited to 'data')
-rw-r--r--data/style.css10
1 files changed, 6 insertions, 4 deletions
diff --git a/data/style.css b/data/style.css
index c477ca9b..85ab464e 100644
--- a/data/style.css
+++ b/data/style.css
@@ -1114,16 +1114,18 @@ p.filselect i { font-style: normal }
/****** Advanced Search *******/
-.advsearch { max-width: 800px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center }
+.advsearch { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center }
.advsearch .advnest { display: flex }
-.advsearch .advnest > div:nth-child(1) { width: 30px }
-.advsearch .advnest > div:nth-child(2) { border-left: 1px dashed $border$ }
+.advsearch .advnest > div:nth-child(1) { flex: 0 0 35px; }
+.advsearch .advnest > div:nth-child(2) { flex: 1; border-left: 1px dashed $border$ }
+.advsearch .elm_dd_input { margin: 5px; width: 150px }
+.advsearch .elm_dd_input.elm_dd_noarrow { width: 13px }
.advsearch .advrow { display: flex; flex-wrap: wrap }
-.advsearch .advrow > * { margin: 5px; width: 150px }
.advsearch .advheader { box-sizing: border-box; background-color: $_blendbg$; padding: 3px; width: 100%; margin-bottom: 2px }
.advsearch .advheader > h3 { text-align: center; font-weight: bold; font-size: inherit; margin-bottom: 3px }
.advsearch .advheader .opts { display: flex; justify-content: space-between }
.advsearch .advheader .opts > * { margin: 0 }
+.advsearch input.submit { margin-top: 5px }