Browse Source

Prevent Style Override of Crossword

MOODLE_20_STABLE
Vasilis Daloukas 9 years ago
parent
commit
b1090cf018
  1. 1
      CHANGES.md
  2. 10
      cross/play.php

1
CHANGES.md

@ -2,6 +2,7 @@ Changes in version 3.36.31.1 (2015123101)
------------------------------------------------------------------ ------------------------------------------------------------------
- New: Disable summarize of attempts. - New: Disable summarize of attempts.
- CONTRIB-5605: Quotation marks breaks the js-code in game Cryptex. - CONTRIB-5605: Quotation marks breaks the js-code in game Cryptex.
- Prevent Style Override of Crossword
Changes in version 3.36.29.1 (2015122901) Changes in version 3.36.29.1 (2015122901)
------------------------------------------------------------------ ------------------------------------------------------------------

10
cross/play.php

@ -247,27 +247,27 @@ border-width: 2px;
padding: .5em; padding: .5em;
} }
body { #region-game.body {
background-color: white; background-color: white;
cursor: default; cursor: default;
} }
body, button, input, p, td { #region-game.body, #region-game.button, #region-game.input, #region-game.p, #region-game.td {
font-family: Verdana, Arial, Sans-Serif; font-family: Verdana, Arial, Sans-Serif;
font-size: small; font-size: small;
} }
button { #region-game.button {
cursor: pointer; cursor: pointer;
} }
h1, h2, h3 { #region-game.h1, #region-game.h2, #region-game.h3 {
color: #5F78A2; color: #5F78A2;
font-family: Franklin Gothic Medium, Arial, Sans-Serif; font-family: Franklin Gothic Medium, Arial, Sans-Serif;
font-weight: normal; font-weight: normal;
} }
p { #region-game.p {
margin-top: 1em; margin-top: 1em;
} }

Loading…
Cancel
Save