aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-14 20:42:41 +0100
committerGravatar GitHub <[email protected]>2018-05-14 20:42:41 +0100
commitb7fe5de12be5c9f02adeedba45befee751ea68be (patch)
tree740be4b7dff4a8e70616e1663375ef1940604d53 /static
parentSwitch 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.css18
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