Подтвердить что ты не робот

Gist - как установить высоту и ширину встроенного Gist

В целях внедрения очень длинных Gists из Github в блоге Wordpress, какой код позволит мне установить высоту так, чтобы были созданы вертикальные полосы прокрутки? Что-то около 500 пикселей будет идеально.


EDIT: проблема решена, но я потратил столько времени на эту проблему, я считаю, что было бы полезно создать поток, посвященный этой проблеме. Я опубликовал ответ ниже, который работает.

4b9b3361

Ответ 1

<style type="text/css">
  .gist {width:500px !important;}
  .gist-file
  .gist-data {max-height: 500px;max-width: 500px;}
</style>

<script src="https://gist.github.com/user-name/123456789.js"></script>

Пример: сайт Boilerplate, заимствованный из: http://www.dummies.com/how-to/content/a-sample-web-page-in-html.html [Ответ работает, как описано 24 февраля 2016 года с Firefox 44.0. 2 на OSX Snow Leopard 10.6.8.]

<html>
<!-- Text between angle brackets is an HTML tag and is not displayed.
Most tags, such as the HTML and /HTML tags that surround the contents of
a page, come in pairs; some tags, like HR, for a horizontal rule, stand 
alone. Comments, such as the text you're reading, are not displayed when
the Web page is shown. The information between the HEAD and /HEAD tags is 
not displayed. The information between the BODY and /BODY tags is displayed.-->
<head>
<title>Enter a title, displayed at the top of the window.</title>
</head>
<!-- The information between the BODY and /BODY tags is displayed.-->
<style type="text/css">
  .gist {width:300px !important;}
  .gist-file
  .gist-data {max-height: 300px;max-width: 300px;}
</style>
<body>
<h1>Enter the main heading, usually the same as the title.</h1>
<p>Be <b>bold</b> in stating your key points. Put them in a list: </p>
<ul>
<li>The first item in your list</li>
<li>The second item; <i>italicize</i> key words</li>
</ul>
<p>Improve your image by including an image. </p>
<p><img src="http://www.mygifs.com/CoverImage.gif" alt="A Great HTML Resource"></p>
<p>Add a link to your favorite <a href="http://www.dummies.com/">Web site</a>.
Break up your page with a horizontal rule or two. </p>
<hr>
<p>Finally, link to <a href="page2.html">another page</a> in your own Web site.</p>
<!-- And add a copyright notice.-->
<p>&#169; Wiley Publishing, 2011</p>
<script src="https://gist.github.com/lawlist/12345678.js"></script>
</body>
</html>

Ответ 2

Ни один из вышеперечисленных ответов больше не работает. Вот обновленный CSS, который отображает gist правильно с видимыми полосами прокрутки, где это необходимо.

.gist {
   max-width:350px;
   overflow:auto;
}

.gist .blob-wrapper.data {
   max-height:200px;
   overflow:auto;
}

Смотрите это сообщение в блоге, например: Как установить пользовательскую высоту и ширину встроенного Github Gist.

Ответ 3

Кажется, что они что-то изменили, поэтому теперь вам нужно сделать это:

<style type="text/css"> .gist {width:500px; overflow:auto}  .gist .file-data {max-height: 500px;max-width: 500px;} </style>