Browse Source

Fix issue #109 : vidéos ne dépassent plus du cadre

Ajout dans le CSS d'une taille max 100% pour les balises <video />
Marien Fressinaud 12 years ago
parent
commit
9d2da6813c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/theme/global.css

+ 1 - 1
public/theme/global.css

@@ -51,7 +51,7 @@ img {
 	}
 	}
 
 
 /* VIDEOS */
 /* VIDEOS */
-iframe, embed, object {
+iframe, embed, object, video {
 	max-width: 100%;
 	max-width: 100%;
 }
 }