-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add filter by photo ability in officer query #965
Changes from all commits
2e5ea7f
d16374a
e7e2e34
79c99f9
2a5113f
b35bdb5
e368c25
2dde1bc
87c92c8
e989bda
0ee8ef7
fcdd73c
27f8ae2
f2c317a
c18eff8
297c1b1
d009908
4b498d0
bc87b28
0e8e8bf
ebf3c8c
2745329
b359215
858c01f
6468e2d
515f97e
e02b42d
f4aff85
8bc3a7e
924a834
81339ad
a916d2b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,6 +119,7 @@ a > .tutorial{ | |
min-height: 700px; | ||
margin-bottom: 50px; | ||
} | ||
|
||
/* Since positioning the image, we need to help out the caption */ | ||
.carousel-caption { | ||
display:block; | ||
|
@@ -500,6 +501,12 @@ tr:hover .row-actions { | |
content: "\e253"; | ||
} | ||
|
||
@media all and (min-width: 768px) and (max-width: 991px) { | ||
.filter-sidebar > .form > .btn.btn-primary:first-of-type { | ||
margin-bottom: 5px; | ||
} | ||
} | ||
|
||
Comment on lines
+504
to
+509
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
.search-results .list-group-item { | ||
border: 0; | ||
} | ||
|
@@ -578,8 +585,8 @@ tr:hover .row-actions { | |
} | ||
|
||
.officer-face { | ||
min-width: 200px; | ||
min-height: 200px; | ||
height: 300px; | ||
Comment on lines
-581
to
+588
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. With the previous setup you got these HUGE photos that threw off the flow of the page, so I set a standard height so that the width is automatically set according to its respective aspect ratio. |
||
margin: auto; | ||
} | ||
|
||
.face-wrap { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Picture filtering logic.