Skip to content

Commit 01171a2

Browse files
authored
Merge branch 'pre-merge' into and-more-codestyle-improvements
2 parents 9bb0c70 + ee9a325 commit 01171a2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+958
-1053
lines changed
Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
1-
/*
2-
Layout container for the whole page.
3-
Uses flexbox so the filter and table sections can sit side by side on desktop, and stack on mobile.
4-
*/
5-
.responsive-layout {
6-
display: flex;
7-
flex-wrap: wrap;
8-
width: 100%;
9-
}
10-
11-
/*
12-
The filter (sidebar) section.
13-
Transition allows smooth showing/hiding.
14-
*/
15-
.filter-section {
16-
transition: all 0.3s ease;
17-
}
18-
19-
/*
20-
When .hide is applied, the filter section is hidden.
21-
!important ensures it's forced, even if overridden by other classes.
22-
*/
23-
.filter-section.hide {
24-
display: none !important;
25-
}
26-
27-
/* ---------- DESKTOP Styles (screen ≥ 768px) ---------- */
28-
@media (min-width: 768px) {
29-
30-
/*
31-
Filter sidebar gets 25% width, and some space on the right.
32-
*/
33-
.filter-section {
34-
flex: 0 0 25%;
35-
max-width: 25%;
36-
padding-right: 15px;
37-
}
38-
39-
/*
40-
Main table takes the remaining 75%.
41-
*/
42-
.table-section {
43-
flex: 0 0 75%;
44-
max-width: 75%;
45-
}
46-
47-
/*
48-
If filter is hidden, the table takes full width.
49-
*/
50-
.filter-section.hide+.table-section {
51-
flex: 0 0 100%;
52-
max-width: 100%;
53-
}
54-
}
55-
56-
/* ---------- MOBILE Styles (screen < 768px) ---------- */
57-
@media (max-width: 767px) {
58-
59-
/*
60-
Filter takes full width, and sits above the table section.
61-
*/
62-
.filter-section {
63-
width: 100%;
64-
margin-bottom: 15px;
65-
}
66-
67-
.table-section {
68-
width: 100%;
69-
}
1+
/*
2+
Layout container for the whole page.
3+
Uses flexbox so the filter and table sections can sit side by side on desktop, and stack on mobile.
4+
*/
5+
.responsive-layout {
6+
display: flex;
7+
flex-wrap: wrap;
8+
width: 100%;
9+
}
10+
11+
/*
12+
The filter (sidebar) section.
13+
Transition allows smooth showing/hiding.
14+
*/
15+
.filter-section {
16+
transition: all 0.3s ease;
17+
}
18+
19+
/*
20+
When .hide is applied, the filter section is hidden.
21+
!important ensures it's forced, even if overridden by other classes.
22+
*/
23+
.filter-section.hide {
24+
display: none !important;
25+
}
26+
27+
/* ---------- DESKTOP Styles (screen ≥ 768px) ---------- */
28+
@media (min-width: 768px) {
29+
30+
/*
31+
Filter sidebar gets 25% width, and some space on the right.
32+
*/
33+
.filter-section {
34+
flex: 0 0 25%;
35+
max-width: 25%;
36+
padding-right: 15px;
37+
}
38+
39+
/*
40+
Main table takes the remaining 75%.
41+
*/
42+
.table-section {
43+
flex: 0 0 75%;
44+
max-width: 75%;
45+
}
46+
47+
/*
48+
If filter is hidden, the table takes full width.
49+
*/
50+
.filter-section.hide+.table-section {
51+
flex: 0 0 100%;
52+
max-width: 100%;
53+
}
54+
}
55+
56+
/* ---------- MOBILE Styles (screen < 768px) ---------- */
57+
@media (max-width: 767px) {
58+
59+
/*
60+
Filter takes full width, and sits above the table section.
61+
*/
62+
.filter-section {
63+
width: 100%;
64+
margin-bottom: 15px;
65+
}
66+
67+
.table-section {
68+
width: 100%;
69+
}
7070
}

public/css/dist/advanced-search-index.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/dist/all.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/dist/bootstrap-table.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/dist/modal.css

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
.modal-radio {
2-
margin-bottom: 1.5vh;
3-
}
4-
5-
.radio-label-text {
6-
margin-left: 0.5em;
7-
display: inline-block;
8-
}
9-
10-
.capitalize-first-letter {
11-
text-transform: capitalize;
12-
}
13-
14-
.sr-only {
15-
position: absolute !important;
16-
width: 1px !important;
17-
height: 1px !important;
18-
margin: -1px !important;
19-
padding: 0 !important;
20-
overflow: hidden !important;
21-
clip: rect(0, 0, 0, 0) !important;
22-
border: 0 !important;
23-
}
24-
25-
#advanced-search-modal-container {
26-
z-index: 100;
27-
}
28-
29-
30-
@media only screen and (max-width: 768px) {
31-
#advanced-search-modal-container .modal-dialog {
32-
padding-top: 25vh;
33-
}
34-
}
35-
36-
@media only screen and (min-width: 768px) {
37-
#advanced-search-modal-container .modal-dialog {
38-
padding-top: 20vh;
39-
}
1+
.modal-radio {
2+
margin-bottom: 1.5vh;
3+
}
4+
5+
.radio-label-text {
6+
margin-left: 0.5em;
7+
display: inline-block;
8+
}
9+
10+
.capitalize-first-letter {
11+
text-transform: capitalize;
12+
}
13+
14+
.sr-only {
15+
position: absolute !important;
16+
width: 1px !important;
17+
height: 1px !important;
18+
margin: -1px !important;
19+
padding: 0 !important;
20+
overflow: hidden !important;
21+
clip: rect(0, 0, 0, 0) !important;
22+
border: 0 !important;
23+
}
24+
25+
#advanced-search-modal-container {
26+
z-index: 100;
27+
}
28+
29+
30+
@media only screen and (max-width: 768px) {
31+
#advanced-search-modal-container .modal-dialog {
32+
padding-top: 25vh;
33+
}
34+
}
35+
36+
@media only screen and (min-width: 768px) {
37+
#advanced-search-modal-container .modal-dialog {
38+
padding-top: 20vh;
39+
}
4040
}

public/css/dist/modal.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)