Update js/rus/rus.js
Browse files- js/rus/rus.js +13 -10
js/rus/rus.js
CHANGED
@@ -538,7 +538,18 @@ editor.Blocks.add('video-player-settings-block', {
|
|
538 |
content: { type: 'video-player-settings' },
|
539 |
});
|
540 |
|
541 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
|
543 |
|
544 |
|
@@ -575,15 +586,7 @@ editor.CssComposer.addRules(`
|
|
575 |
top: 0;
|
576 |
display: block;
|
577 |
}
|
578 |
-
|
579 |
-
width: 480px;
|
580 |
-
height: 270px;
|
581 |
-
border: 3px solid black;
|
582 |
-
margin: 0 auto;
|
583 |
-
position: relative;
|
584 |
-
top: 0;
|
585 |
-
display: block;
|
586 |
-
}
|
587 |
`);
|
588 |
|
589 |
|
|
|
538 |
content: { type: 'video-player-settings' },
|
539 |
});
|
540 |
|
541 |
+
// Создаем блок стилей плеера
|
542 |
+
editor.CssComposer.addRules(`
|
543 |
+
#player {
|
544 |
+
width: 720px;
|
545 |
+
height: 480px;
|
546 |
+
border: 3px solid black;
|
547 |
+
margin: 0 auto;
|
548 |
+
position: relative;
|
549 |
+
top: 0;
|
550 |
+
display: block;
|
551 |
+
}
|
552 |
+
`);
|
553 |
|
554 |
|
555 |
|
|
|
586 |
top: 0;
|
587 |
display: block;
|
588 |
}
|
589 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
590 |
`);
|
591 |
|
592 |
|