Tag: twitter bootstrap

更大的字形

如何在twitter bootstrap 3.0(不是2.3.x)中制作更大的Glyphicons。 这段代码将使我的graphics大: <button type="button" class="btn btn-default btn-lg"> <span class="glyphicon glyphicon-th-list"> </span> </button> 如何在不使用btn-lg类的同时只使用跨度来获得这个大小? 这给了一个小的graphics: <span class="glyphicon glyphicon-link"></span>

禁止在引导模式区域外单击以closures模式

我正在制作一个bootstrap网站,附带一些Bootstrap'Modals'。 我试图自定义一些默认function。 问题是这样的; 您可以通过点击背景closures模式。 反正有禁用此function? 只在特定的模式? Bootstrap模态页面

Twitter Bootstrap与jQuery UI?

我一直在使用jQuery UI进行一些基本的页面增强。 button和input样式和模式对话框。 现在我遇到了Bootstrap,它看起来不错。 有没有人从使用jQuery UI到Bootstrap的任何经验? 这是我想要做的,但在我做这个之前,我想知道我可以面对什么问题。

Bootstrap 3模态垂直位置中心

这是一个两部分问题: 当你不知道模态的确切高度时,如何将模态垂直定位在中心? 是否有可能以模态为中心,溢出:自动在模态体,但只有当模态超过屏幕高度? 我试过使用这个: .modal-dialog { height: 80% !important; padding-top:10%; } .modal-content { height: 100% !important; overflow:visible; } .modal-body { height: 80%; overflow: auto; } 当内容比垂直屏幕尺寸大得多时,这给了我所需要的结果,但是对于小模式内容,它几乎不可用。

Twitter Bootstrap 3.0现在我如何“重要徽章徽章”

在版本二我可以使用 徽章徽章 – 重要 我发现.badge元素不再具有上下文(-success,-primary等)类。 我如何在版本3中实现相同的function? 例如。 我需要警告徽章和重要的徽章在我的用户界面

在twitter引导2中添加图标提交button

我想在我的表单input提交button上使用twitter引导程序图标。 http://twitter.github.com/bootstrap/base-css.html#icons上的示例主要显示样式化的超链接。 我来的最近的是获取button旁边显示的图标,但不是在里面。 <div class="input-prepend"> <span class="add-on"><i class="icon-user icon-white"></i></span> <input type="submit" class="btn-primary" value="Login" > </div>

这些属性是什么:“咏叹调标签”和“咏叹调隐藏”

使用Bootstrap模式,我已经看到这些aria属性很多,但我从来不知道如何使用它们。 有谁知道什么情况下使用这些属性? 我GOOGLE了 – 只是没有find任何直接的答案。

Twitter Bootstrap – 如何水平或垂直居中元素

有没有什么办法来垂直或水平内部主要父母的HTML元素?

在Twitter的Bootstrap中禁用button的最佳方法

我很困惑,当用JavaScript / jQuery来禁用类: .btn或.btn-primary的<button> , <input>或<a>元素。 我已经使用以下代码片段来做到这一点: $('button').addClass('btn-disabled'); $('button').attr('disabled', 'disabled'); $('button').prop('disabled', true); 所以,如果我只提供了$('button').addClass('btn-disabled'); 到我的元素,它将显示为禁用,在视觉上,但function将保持不变,这将是无可争辩的,所以这就是为什么我将attr和prop设置添加到元素的原因。 有没有人在那里过期了这个相同的问题? 这是做这个的正确方法 – 使用Twitter的Bootstrap?

embedded到引导模式中时,Select2不起作用

当我在引导模式中使用select2(input)时,我无法input任何内容。 这就像禁用? 外面他模态select2工作正常。 工作示例: http : //jsfiddle.net/byJy8/1/代码: <!– Modal –> <div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h3 id="myModalLabel">Panel</h3> </div> <div class="modal-body" style="max-height: 800px"> <form class="form-horizontal"> <!– Text input–> <div class="control-group"> <label class="control-label" for="vdn_number">Numer</label> <div class="controls"> <!– seleect2 –> <input name="vdn_number" type="hidden" id="vdn_number" class="input-large" required="" /> […]