added pagination support to event log
Change-Id: I18a21ba71679407bd512f1895ba91717c8ca5990
Signed-off-by: Michael Davis <michael.s.davis@ibm.com>
diff --git a/app/common/styles/elements/content-search.scss b/app/common/styles/elements/content-search.scss
new file mode 100644
index 0000000..800dd98
--- /dev/null
+++ b/app/common/styles/elements/content-search.scss
@@ -0,0 +1,57 @@
+
+// content search
+
+.content__search {
+ width: 100%;
+ max-width: 99%;
+ display: inline-block;
+ position: relative;
+ margin-right: 1em;
+ margin-top: .5em;
+ @media (min-width: 1333px) {
+ max-width: 60%;
+ margin-top: 0;
+ }
+ #content__search-input {
+ margin: 0;
+ border: 0;
+ border-bottom: 2px solid $lightgrey;
+ padding-left: 40px;
+ &:focus {
+ box-shadow: none;
+ }
+ }
+ label {
+ position: absolute;
+ text-indent: -9999px;
+ height:20px;
+ width: 20px;
+ left: 10px;
+ top: 25px;
+ transform: translateY(-50%);
+ background: url("../assets/images/icon-search.svg") center center no-repeat;
+ opacity: .6;
+ }
+
+ #event__search-submit {
+ position: absolute;
+ top: .5em;
+ right: 0;
+ padding: 8px;
+ min-height: 20px;
+ max-width: 70px;
+ text-align: center;
+ margin: 0;
+ }
+
+ .tag-filter-label {
+ text-transform: uppercase;
+ color: $darkgrey;
+ font-size: .7em;
+ font-weight: 700;
+ min-height: 20px;
+ line-height:1.3;
+ margin-top: .5em;
+ text-align: right;
+ }
+}//end event-log__search
\ No newline at end of file