diff --git a/static/css/app.css b/static/css/app.css index 72a57e2..f095c8f 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -625,6 +625,59 @@ float: left; } +#content_modal { + display: none; + width: 60%; + height: 400px; + position: fixed; + top: 20%; + left: 20%; + background: #fff; + border: 1px solid #ccc; + box-shadow: #ddd 0 0 20px; +} + +#content_modal .content { + border: 0px none; + position: relative; + padding: 8px; + white-space: break-spaces; + background: #fff; + overflow-y: scroll; + height: 366px; + box-sizing: border-box; +} + +#content_modal .title { + font-weight: bold; + line-height: 24px; + background: #f5f5f5; + padding: 4px 4px 4px 8px; +} + +#content_modal .actions { + float: right; +} + +#content_modal .actions .fa { + float: right; + width: 24px; + height: 24px; + line-height: 24px; + font-size: 13px; + text-align: center; + background: #fff; + border: 1px solid #ddd; + border-radius: 3px; + cursor: pointer; + margin-left: 4px; +} + +#content_modal .actions .fa:hover { + border-color: #999; + box-shadow: #eee 0 0 5px; +} + /* -------------------------------------------------------------------------- */ #custom_query { diff --git a/static/index.html b/static/index.html index 9374c0b..59a6fcf 100644 --- a/static/index.html +++ b/static/index.html @@ -139,6 +139,17 @@ +