diff options
| author | Chris Rebert <[email protected]> | 2015-02-02 18:09:53 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-02-02 18:09:53 -0800 |
| commit | 54bae8f021d319a7ae79e7f3197298d99b61c138 (patch) | |
| tree | 474eed984281f98f558f4dbc0ee6bc9ea468ea72 | |
| parent | ccd859f3b164fedb1ec98b8efddb4f3916975b3d (diff) | |
| parent | b46dbef3264c87d16dbba3ba89cec3dc72065cac (diff) | |
| download | bootstrap-54bae8f021d319a7ae79e7f3197298d99b61c138.tar.xz bootstrap-54bae8f021d319a7ae79e7f3197298d99b61c138.zip | |
Merge pull request #15726 from hkdobrev/fix-embed-responsive-code
Extract responsive embed nested classes
| -rw-r--r-- | less/responsive-embed.less | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/less/responsive-embed.less b/less/responsive-embed.less index c1fa8f848..080a5118f 100644 --- a/less/responsive-embed.less +++ b/less/responsive-embed.less @@ -22,14 +22,14 @@ width: 100%; border: 0; } +} - // Modifier class for 16:9 aspect ratio - &.embed-responsive-16by9 { - padding-bottom: 56.25%; - } +// Modifier class for 16:9 aspect ratio +.embed-responsive-16by9 { + padding-bottom: 56.25%; +} - // Modifier class for 4:3 aspect ratio - &.embed-responsive-4by3 { - padding-bottom: 75%; - } +// Modifier class for 4:3 aspect ratio +.embed-responsive-4by3 { + padding-bottom: 75%; } |
