summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-07-26 17:30:51 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-07-26 17:30:51 +0200
commit9d2da6813c242863e06997450397f2b7456c4c73 (patch)
tree171444418fa1c28d74585e014fcd3e8717b628d5
parentb5f233f6d524ca9f74e9d33bf5692a1a678d7fec (diff)
Fix issue #109 : vidéos ne dépassent plus du cadre
Ajout dans le CSS d'une taille max 100% pour les balises <video />
-rw-r--r--public/theme/global.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/theme/global.css b/public/theme/global.css
index b3d80e52a..9f3ad4138 100644
--- a/public/theme/global.css
+++ b/public/theme/global.css
@@ -51,7 +51,7 @@ img {
}
/* VIDEOS */
-iframe, embed, object {
+iframe, embed, object, video {
max-width: 100%;
}