diff options
author | 2018-05-14 20:42:41 +0100 | |
---|---|---|
committer | 2018-05-14 20:42:41 +0100 | |
commit | b7fe5de12be5c9f02adeedba45befee751ea68be (patch) | |
tree | 740be4b7dff4a8e70616e1663375ef1940604d53 /static | |
parent | Switch from using abort to using werkzeug exception (diff) |
Migration runner and migrations (#69)
* Migration runner and migrations
* Remove demo wiki data
* [Staff] Table management pages
* Fix weird travis build omission
* Address review and comments by @Volcyy
* [Tables] Fix pagination
* Move table definitions to new file with nameduple
* Linting
* Address lemon's review comments
* Address @Volcyy's review
* Address lemon's review
* Update search placeholder
* Search by key now available
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index f99fd256..2b9b329c 100644 --- a/static/style.css +++ b/static/style.css @@ -109,6 +109,16 @@ footer div.uk-section div.uk-text-center { background: rgba(0, 0, 0, 0.22); } +.uk-button-dark { + background: rgba(0, 0, 0, 0.95); + border: 1px solid rgba(34, 34, 34, 0.93); + color: white; +} + +.uk-button-dark:hover { + background: rgba(0, 0, 0, 0.70); +} + /* Flash of Unstyled Content fixes */ .prevent_fouc { display: none; @@ -161,4 +171,12 @@ div.quote { .uk-article-meta { margin-left: 2px; +} + +select { + position: relative !important; + top: auto !important; + left: auto !important; + -webkit-appearance: unset !important; + opacity: 1 !important; }
\ No newline at end of file |