Commit 2b7627e7 by Tim Krones

Fix "ok" button issue.

In some configurations of OS'es and browsers (Linux, Chrome/Chromium),
buttons for submitting user input after dropping an item don't render
correctly; the "ok" label is broken up into two lines:

******         *****
* ok *   vs.   * o *
******         * k *
               *****

The changes in this commit fix this issue.
parent 1930af65
...@@ -111,6 +111,7 @@ ...@@ -111,6 +111,7 @@
position: absolute; position: absolute;
left: 150px; left: 150px;
top: 4px; top: 4px;
white-space: nowrap; /* Fix cross-browser issue: Without this declaration, button text wraps in Chrome/Chromium */
} }
.xblock--drag-and-drop .drag-container .option .numerical-input.correct .input-submit, .xblock--drag-and-drop .drag-container .option .numerical-input.correct .input-submit,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment