Skip to content

Commit 56b2a5c

Browse files
authored
Fix sizing of search bar on narrow screens #1214 (#1302)
Signed-off-by: @THEBOSS0369
1 parent c3ac2b2 commit 56b2a5c

File tree

1 file changed

+29
-5
lines changed

1 file changed

+29
-5
lines changed

Diff for: www/css/app.css

+29-5
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@
6969
}
7070

7171
.form-control {
72-
margin-top: 2px;
72+
margin-top: 3px;
73+
margin-right: 4px;
7374
}
7475

7576
#articleList {
@@ -95,7 +96,8 @@
9596
}
9697

9798
#formArticleSearch {
98-
padding-top: 1rem;
99+
padding-top: 20px;
100+
padding-bottom: 0px;
99101
}
100102

101103
#configuration {
@@ -392,11 +394,33 @@ button {
392394
font-size: 10px !important;
393395
}
394396

397+
/* margin between search button and result text */
398+
#formArticleSearch > .container {
399+
margin-top: 0rem;
400+
margin-bottom: 0.2rem;
401+
}
402+
403+
/* Article Form */
404+
#formArticleSearch .form-control {
405+
height: 31px ;
406+
padding: 2px 8px ;
407+
font-size: 13px ;
408+
margin-right: 4px;
409+
}
410+
411+
/* search button */
412+
#formArticleSearch .btn {
413+
height: 30px ;
414+
padding: 2px 10px ;
415+
font-size: 14px ;
416+
line-height: 1.5 ;
417+
}
418+
395419
/* Reduce size of the bottom buttons */
396420
.btn-lg, .btn-group-lg > .btn {
397-
padding-top: 1px !important;
398-
padding-bottom: 1px !important;
399-
font-size: 16px !important;
421+
padding-top: 1px ;
422+
padding-bottom: 1px ;
423+
font-size: 16px ;
400424
}
401425

402426
#archiveList {

0 commit comments

Comments
 (0)