Domingo, 05 Mayo 2024

Misa por el 50 aniversario del IESC, Chiclayo
Misa de aniversario en la iglesia de la Compañía, Arequipa
Misa por el 50 aniversario del IESC en la Parroquia de Santa Rita, Miraflores
Asistentes al brindis con motivo del 50 aniversario del IESC
El presidente del IESC saluda al Papa Francisco en el marco de la conferencia internacional ‘Salvar nuestra casa común y el futuro de la vida sobre la tierra’.
P. Juan Roger Rodríguez en la firma de su libro: 'El Estado peruano, ni confesional ni laico'
(Izq. a der.) Armando Borda, Hans Schelkshorn, Andreas Rendl en el Foro Social Cristiano 'Desafíos para Europa: El Populismo'
Presentación del libro: Evangélicos y poder en América Latina. Autor: José Luis Pérez Guadalupe
(Izq. a der.) Armando Borda, Sebastian Grundberger, Peter Weiss en el Foro Social Cristiano: El Desafío Populista en Europa
Firma del convenio de cooperación de la Universidad Católica de Lublin y el IESC. 10 de mayo.
Seminario Internacional: Políticos cristianos frente a los desafíos globales.
FSC: La Iglesia ante la crisis social en Venezuela

Default buttons Button styles can be applied to anything with the .btn class applied. However, typically you'll want to apply these to only and

Create block level buttons—those that span the full width of a parent— by adding .btn-block. Block level button Block level button buttons. Primary link Link Primary linkLink Heads up! We use .disabled as a utility class here, similar to the common .active class, so no prefix is required. Also, this class is only for aesthetic; you must use custom JavaScript to disable links here. Button element Add the disabled attribute to , Link

 

Two basic options, along with two more specific variations.

Single button group

Wrap a series of buttons with .btn in .btn-group.

  1. <divclass="btn-group">
  2. <buttonclass="btn">1</button>
  3. <buttonclass="btn">2</button>
  4. <buttonclass="btn">3</button>
  5. </div>

Multiple button groups

Combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.

  1. <divclass="btn-toolbar">
  2. <divclass="btn-group">
  3. ...
  4. </div>
  5. </div>

Vertical button groups

Make a set of buttons appear vertically stacked rather than horizontally.

 
  1. <divclass="btn-group btn-group-vertical">
  2. ...
  3. </div>

Checkbox and radio flavors

Button groups can also function as radios, where only one button may be active, or checkboxes, where any number of buttons may be active. View the Javascript docs for that.

Dropdowns in button groups

Heads up! Buttons with dropdowns must be individually wrapped in their own .btn-group within a .btn-toolbar for proper rendering.

Use any button to trigger a dropdown menu by placing it within a .btn-group and providing the proper menu markup.

  1. <div class="btn-group">
  2.  <a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
  3. Action
  4.  <span class="caret"></span>
  5.  </a>
  6.  <ul class="dropdown-menu">
  7.  <!-- dropdown menu links -->
  8.  </ul>
  9. </div>

Works with all button sizes

Button dropdowns work at any size: .btn-large, .btn-small, or .btn-mini.

Requires javascript

Button dropdowns require the Bootstrap dropdown plugin to function.

In some cases—like mobile—dropdown menus will extend outside the viewport. You need to resolve the alignment manually or with custom javascript.


Split button dropdowns

Building on the button group styles and markup, we can easily create a split button. Split buttons feature a standard action on the left and a dropdown toggle on the right with contextual links.

  1. <div class="btn-group">
  2.  <button class="btn">Action</button>
  3.  <button class="btn dropdown-toggle" data-toggle="dropdown">
  4.  <span class="caret"></span>
  5.  </button>
  6.  <ul class="dropdown-menu">
  7.  <!-- dropdown menu links -->
  8.  </ul>
  9. </div>

Sizes

Utilize the extra button classes .btn-mini, .btn-small, or .btn-large for sizing.

  1. <div class="btn-group">
  2.  <button class="btn btn-mini">Action</button>
  3.  <button class="btn btn-mini dropdown-toggle" data-toggle="dropdown">
  4.  <span class="caret"></span>
  5.  </button>
  6.  <ul class="dropdown-menu">
  7.  <!-- dropdown menu links -->
  8.  </ul>
  9. </div>

Dropup menus

Dropdown menus can also be toggled from the bottom up by adding a single class to the immediate parent of .dropdown-menu. It will flip the direction of the .caret and reposition the menu itself to move from the bottom up instead of top down.

  1. <div class="btn-group dropup">
  2.  <button class="btn">Dropup</button>
  3.  <button class="btn dropdown-toggle" data-toggle="dropdown">
  4.  <span class="caret"></span>
  5.  </button>
  6.  <ul class="dropdown-menu">
  7.  <!-- dropdown menu links -->
  8.  </ul>
  9. </div>