summaryrefslogtreecommitdiff
path: root/resources/css/_vendor-patches.css
diff options
context:
space:
mode:
Diffstat (limited to 'resources/css/_vendor-patches.css')
-rw-r--r--resources/css/_vendor-patches.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/resources/css/_vendor-patches.css b/resources/css/_vendor-patches.css
index b323c09757..886ffb3e53 100644
--- a/resources/css/_vendor-patches.css
+++ b/resources/css/_vendor-patches.css
@@ -16,3 +16,30 @@
/*
* Temporary fixes for things that are broken upstream.
*/
+
+/*
+ * https://github.com/fisharebest/webtrees/issues/2291
+ * Chrome 72 has problems with all cards in the control panel.
+ * Chrome 73 has problems with the family-tree card in the control panel.
+ * Chrome 76 seems OK.
+ * https://github.com/fisharebest/webtrees/issues/2813
+ * Safari 13 has the same issue.
+ */
+.wt-control-panel .card {
+ display: block;
+}
+
+/* Allow font-awesome icon lists to work on RTL pages */
+[dir=rtl] .fa-li {
+ right: -2rem;
+}
+
+/* Allows twitter typeahead to work with bootstrap input groups */
+.input-group > .twitter-typeahead {
+ flex: 1 1;
+}
+
+/* Allows select2 to work with bootstrap input groups */
+.input-group > .select2-container {
+ flex: 1 1;
+}