diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-16 23:27:53 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-19 11:44:48 +0300 |
commit | 4718a059f842a791c89a1922996bb8f1dbea8f65 (patch) | |
tree | a6dcc621f8287d444a699355f89b4a383eafd283 /www | |
parent | e2264d6c34de011753913dd9b447b3d38649619c (diff) |
Add filter form to builds page
Diffstat (limited to 'www')
-rw-r--r-- | www/brep-common.css | 9 | ||||
-rw-r--r-- | www/builds-body.css | 21 |
2 files changed, 27 insertions, 3 deletions
diff --git a/www/brep-common.css b/www/brep-common.css index 81fc909..1a90dda 100644 --- a/www/brep-common.css +++ b/www/brep-common.css @@ -170,3 +170,12 @@ #pager #curr:after {content: "]"; font-weight: normal;} #pager #next:after {content: "\A0>";} + +/* Use page rather than system font settings. */ +select +{ + font-family: inherit; + font-weight: inherit; + font-size: inherit; + line-height: inherit; +} diff --git a/www/builds-body.css b/www/builds-body.css index a69bb5a..a4b72fc 100644 --- a/www/builds-body.css +++ b/www/builds-body.css @@ -1,4 +1,16 @@ /* + * Filter form (based on proplist and form-table) + */ +#filter input, #filter select, +#build-count, #build-count #count +{ + width: 100%; + margin:0; +} + +#filter-btn {padding-left: .4em;} + +/* * Build count. */ #count @@ -11,9 +23,9 @@ } /* - * Version table. + * Build table. */ -.build +.build, #filter { margin-top: .8em; margin-bottom: .8em; @@ -23,7 +35,10 @@ } .build:nth-child(even) {background-color: rgba(0, 0, 0, 0.07);} -.build th {width: 7.0em;} +.build th, #filter th +{ + width: 7.0em; +} .build tr.name td .value, .build tr.version td .value, |