Changeset 93586 in spip-zone
- Timestamp:
- Dec 12, 2015, 10:04:36 AM (5 years ago)
- Location:
- _plugins_/bootstrap/trunk
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/bootstrap/trunk/bootstrap/css/bootstrap.less
r93178 r93586 1 1 /*! 2 * Bootstrap v3.3. 5(http://getbootstrap.com)2 * Bootstrap v3.3.6 (http://getbootstrap.com) 3 3 * Copyright 2011-2015 Twitter, Inc. 4 4 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) -
_plugins_/bootstrap/trunk/bootstrap/css/button-groups.less
r90741 r93586 174 174 } 175 175 &:first-child:not(:last-child) { 176 border-top-right-radius: @btn-border-radius-base;176 .border-top-radius(@btn-border-radius-base); 177 177 .border-bottom-radius(0); 178 178 } 179 179 &:last-child:not(:first-child) { 180 border-bottom-left-radius: @btn-border-radius-base;181 180 .border-top-radius(0); 181 .border-bottom-radius(@btn-border-radius-base); 182 182 } 183 183 } -
_plugins_/bootstrap/trunk/bootstrap/css/carousel.less
r90741 r93586 102 102 text-align: center; 103 103 text-shadow: @carousel-text-shadow; 104 background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug 104 105 // We can't have this transition here because WebKit cancels the carousel 105 106 // animation if you trip this while in the middle of another animation. … … 241 242 .icon-prev, 242 243 .icon-next { 243 width: 30px;244 height: 30px;245 margin-top: -15px;246 font-size: 30px;244 width: (@carousel-control-font-size * 1.5); 245 height: (@carousel-control-font-size * 1.5); 246 margin-top: (@carousel-control-font-size / -2); 247 font-size: (@carousel-control-font-size * 1.5); 247 248 } 248 249 .glyphicon-chevron-left, 249 250 .icon-prev { 250 margin-left: -15px;251 margin-left: (@carousel-control-font-size / -2); 251 252 } 252 253 .glyphicon-chevron-right, 253 254 .icon-next { 254 margin-right: -15px;255 margin-right: (@carousel-control-font-size / -2); 255 256 } 256 257 } -
_plugins_/bootstrap/trunk/bootstrap/css/forms.less
r90741 r93586 133 133 .placeholder(); 134 134 135 // Unstyle the caret on `<select>`s in IE10+. 136 &::-ms-expand { 137 border: 0; 138 background-color: transparent; 139 } 140 135 141 // Disabled and read-only inputs 136 142 // … … 434 440 435 441 & ~ .form-control-feedback { 436 442 top: (@line-height-computed + 5); // Height of the `label` and its margin 437 443 } 438 444 &.sr-only ~ .form-control-feedback { 439 445 top: 0; 440 446 } 441 447 } … … 592 598 @media (min-width: @screen-sm-min) { 593 599 .control-label { 594 padding-top: ( (@padding-large-vertical * @line-height-large)+ 1);600 padding-top: (@padding-large-vertical + 1); 595 601 font-size: @font-size-large; 596 602 } -
_plugins_/bootstrap/trunk/bootstrap/css/glyphicons.less
r90741 r93586 33 33 34 34 // Individual icons 35 .glyphicon-asterisk { &:before { content: "\ 2a"; } }36 .glyphicon-plus { &:before { content: "\ 2b"; } }35 .glyphicon-asterisk { &:before { content: "\002a"; } } 36 .glyphicon-plus { &:before { content: "\002b"; } } 37 37 .glyphicon-euro, 38 38 .glyphicon-eur { &:before { content: "\20ac"; } } -
_plugins_/bootstrap/trunk/bootstrap/css/input-groups.less
r90741 r93586 30 30 width: 100%; 31 31 margin-bottom: 0; 32 33 &:focus { 34 z-index: 3; 35 } 32 36 } 33 37 } … … 80 84 background-color: @input-group-addon-bg; 81 85 border: 1px solid @input-group-addon-border-color; 82 border-radius: @ border-radius-base;86 border-radius: @input-border-radius; 83 87 84 88 // Sizing … … 86 90 padding: @padding-small-vertical @padding-small-horizontal; 87 91 font-size: @font-size-small; 88 border-radius: @ border-radius-small;92 border-radius: @input-border-radius-small; 89 93 } 90 94 &.input-lg { 91 95 padding: @padding-large-vertical @padding-large-horizontal; 92 96 font-size: @font-size-large; 93 border-radius: @ border-radius-large;97 border-radius: @input-border-radius-large; 94 98 } 95 99 -
_plugins_/bootstrap/trunk/bootstrap/css/jumbotron.less
r90741 r93586 29 29 .container-fluid & { 30 30 border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container 31 padding-left: (@grid-gutter-width / 2); 32 padding-right: (@grid-gutter-width / 2); 31 33 } 32 34 -
_plugins_/bootstrap/trunk/bootstrap/css/mixins/buttons.less
r90741 r93586 43 43 &[disabled], 44 44 fieldset[disabled] & { 45 &,46 45 &:hover, 47 46 &:focus, 48 &.focus, 49 &:active, 50 &.active { 47 &.focus { 51 48 background-color: @background; 52 49 border-color: @border; -
_plugins_/bootstrap/trunk/bootstrap/css/mixins/grid.less
r90741 r93586 7 7 margin-right: auto; 8 8 margin-left: auto; 9 padding-left: (@gutter / 2);10 padding-right: (@gutter / 2);9 padding-left: floor((@gutter / 2)); 10 padding-right: ceil((@gutter / 2)); 11 11 &:extend(.clearfix all); 12 12 } -
_plugins_/bootstrap/trunk/bootstrap/css/mixins/hide-text.less
r90741 r93586 7 7 // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 8 9 // Deprecated as of v3.0.1 ( will beremoved in v4)9 // Deprecated as of v3.0.1 (has been removed in v4) 10 10 .hide-text() { 11 11 font: ~"0/0" a; -
_plugins_/bootstrap/trunk/bootstrap/css/mixins/vendor-prefixes.less
r90741 r93586 2 2 // 3 3 // All vendor mixins are deprecated as of v3.2.0 due to the introduction of 4 // Autoprefixer in our Gruntfile. They will beremoved in v4.4 // Autoprefixer in our Gruntfile. They have been removed in v4. 5 5 6 6 // - Animations … … 55 55 // Default value is `visible`, but can be changed to `hidden` 56 56 57 .backface-visibility(@visibility) {57 .backface-visibility(@visibility) { 58 58 -webkit-backface-visibility: @visibility; 59 59 -moz-backface-visibility: @visibility; -
_plugins_/bootstrap/trunk/bootstrap/css/modals.less
r90741 r93586 80 80 padding: @modal-title-padding; 81 81 border-bottom: 1px solid @modal-header-border-color; 82 min-height: (@modal-title-padding + @modal-title-line-height);82 &:extend(.clearfix all); 83 83 } 84 84 // Close icon -
_plugins_/bootstrap/trunk/bootstrap/css/pagination.less
r90741 r93586 41 41 &:hover, 42 42 &:focus { 43 z-index: 3;43 z-index: 2; 44 44 color: @pagination-hover-color; 45 45 background-color: @pagination-hover-bg; … … 53 53 &:hover, 54 54 &:focus { 55 z-index: 2;55 z-index: 3; 56 56 color: @pagination-active-color; 57 57 background-color: @pagination-active-bg; -
_plugins_/bootstrap/trunk/bootstrap/css/theme-dist.less
r92810 r93586 9 9 // -------------------------------------------------- 10 10 11 @import "css/ variables.less";12 @import "css/ mixins.less";11 @import "css/css/variables.less"; 12 @import "css/css/mixins.less"; 13 13 14 14 -
_plugins_/bootstrap/trunk/bootstrap/css/type.less
r90741 r93586 212 212 } 213 213 214 @media (min-width: @ grid-float-breakpoint) {214 @media (min-width: @dl-horizontal-breakpoint) { 215 215 dt { 216 216 float: left; -
_plugins_/bootstrap/trunk/bootstrap/css/variables.less
r90741 r93586 864 864 //** Width of horizontal description list titles 865 865 @dl-horizontal-offset: @component-offset-horizontal; 866 //** Point at which .dl-horizontal becomes horizontal 867 @dl-horizontal-breakpoint: @grid-float-breakpoint; 866 868 //** Horizontal line color. 867 869 @hr-border: @gray-lighter; -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-affix.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: affix.js v3.3. 52 * Bootstrap: affix.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#affix 4 4 * ======================================================================== … … 29 29 } 30 30 31 Affix.VERSION = '3.3. 5'31 Affix.VERSION = '3.3.6' 32 32 33 33 Affix.RESET = 'affix affix-top affix-bottom' -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-alert.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: alert.js v3.3. 52 * Bootstrap: alert.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#alerts 4 4 * ======================================================================== … … 19 19 } 20 20 21 Alert.VERSION = '3.3. 5'21 Alert.VERSION = '3.3.6' 22 22 23 23 Alert.TRANSITION_DURATION = 150 -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-button.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: button.js v3.3. 52 * Bootstrap: button.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#buttons 4 4 * ======================================================================== … … 20 20 } 21 21 22 Button.VERSION = '3.3. 5'22 Button.VERSION = '3.3.6' 23 23 24 24 Button.DEFAULTS = { -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-carousel.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: carousel.js v3.3. 52 * Bootstrap: carousel.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#carousel 4 4 * ======================================================================== … … 31 31 } 32 32 33 Carousel.VERSION = '3.3. 5'33 Carousel.VERSION = '3.3.6' 34 34 35 35 Carousel.TRANSITION_DURATION = 600 -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-collapse.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: collapse.js v3.3. 52 * Bootstrap: collapse.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#collapse 4 4 * ======================================================================== … … 30 30 } 31 31 32 Collapse.VERSION = '3.3. 5'32 Collapse.VERSION = '3.3.6' 33 33 34 34 Collapse.TRANSITION_DURATION = 350 -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-dropdown.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: dropdown.js v3.3. 52 * Bootstrap: dropdown.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#dropdowns 4 4 * ======================================================================== … … 20 20 } 21 21 22 Dropdown.VERSION = '3.3. 5'22 Dropdown.VERSION = '3.3.6' 23 23 24 24 function getParent($this) { … … 52 52 53 53 $this.attr('aria-expanded', 'false') 54 $parent.removeClass('open').trigger( 'hidden.bs.dropdown', relatedTarget)54 $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget)) 55 55 }) 56 56 } … … 86 86 $parent 87 87 .toggleClass('open') 88 .trigger( 'shown.bs.dropdown', relatedTarget)88 .trigger($.Event('shown.bs.dropdown', relatedTarget)) 89 89 } 90 90 -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-modal.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: modal.js v3.3. 52 * Bootstrap: modal.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#modals 4 4 * ======================================================================== … … 34 34 } 35 35 36 Modal.VERSION = '3.3. 5'36 Modal.VERSION = '3.3.6' 37 37 38 38 Modal.TRANSITION_DURATION = 300 -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-popover.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: popover.js v3.3. 52 * Bootstrap: popover.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#popovers 4 4 * ======================================================================== … … 20 20 if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') 21 21 22 Popover.VERSION = '3.3. 5'22 Popover.VERSION = '3.3.6' 23 23 24 24 Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-scrollspy.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: scrollspy.js v3.3. 52 * Bootstrap: scrollspy.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#scrollspy 4 4 * ======================================================================== … … 29 29 } 30 30 31 ScrollSpy.VERSION = '3.3. 5'31 ScrollSpy.VERSION = '3.3.6' 32 32 33 33 ScrollSpy.DEFAULTS = { -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-tab.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: tab.js v3.3. 52 * Bootstrap: tab.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#tabs 4 4 * ======================================================================== … … 20 20 } 21 21 22 Tab.VERSION = '3.3. 5'22 Tab.VERSION = '3.3.6' 23 23 24 24 Tab.TRANSITION_DURATION = 150 -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-tooltip.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: tooltip.js v3.3. 52 * Bootstrap: tooltip.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#tooltip 4 4 * Inspired by the original jQuery.tipsy by Jason Frame … … 27 27 } 28 28 29 Tooltip.VERSION = '3.3. 5'29 Tooltip.VERSION = '3.3.6' 30 30 31 31 Tooltip.TRANSITION_DURATION = 150 -
_plugins_/bootstrap/trunk/bootstrap/js/bootstrap-transition.js
r92814 r93586 1 1 /* ======================================================================== 2 * Bootstrap: transition.js v3.3. 52 * Bootstrap: transition.js v3.3.6 3 3 * http://getbootstrap.com/javascript/#transitions 4 4 * ======================================================================== -
_plugins_/bootstrap/trunk/bootstrap2spip/css/type.less
r93448 r93586 157 157 // Horizontal layout (like forms) 158 158 .dl-horizontal { 159 160 &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present161 }162 163 @media (min-width: @grid-float-breakpoint) {164 dt {165 float: left;166 width: (@dl-horizontal-offset - 20);167 clear: left;168 text-align: right;169 .text-overflow();170 }171 dd {172 margin-left: @dl-horizontal-offset;173 }174 }159 dd { 160 &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present 161 } 162 163 @media (min-width: @dl-horizontal-breakpoint) { 164 dt { 165 float: left; 166 width: (@dl-horizontal-offset - 20); 167 clear: left; 168 text-align: right; 169 .text-overflow(); 170 } 171 dd { 172 margin-left: @dl-horizontal-offset; 173 } 174 } 175 175 } 176 176 -
_plugins_/bootstrap/trunk/bootstrap2spip/css/variables.less
r93448 r93586 864 864 //** Width of horizontal description list titles 865 865 @dl-horizontal-offset: @component-offset-horizontal; 866 //** Point at which .dl-horizontal becomes horizontal 867 @dl-horizontal-breakpoint: @grid-float-breakpoint; 866 868 //** Horizontal line color. 867 869 @hr-border: @gray-lighter; -
_plugins_/bootstrap/trunk/paquet.xml
r93585 r93586 2 2 prefix="bootstrap3" 3 3 categorie="outil" 4 version="3.0. 0"4 version="3.0.1" 5 5 etat="test" 6 6 compatibilite="[3.0.2;3.1.*]" … … 22 22 <necessite nom="lesscss" compatibilite="[1.0.0;1.*.*]" /> 23 23 <necessite nom="jquery" compatibilite="[1.9.1;]" /> 24 <procure nom="bootstrap" version="3.3. 5" />24 <procure nom="bootstrap" version="3.3.6" /> 25 25 26 26 <chemin path="bootstrap" type="public" />
Note: See TracChangeset
for help on using the changeset viewer.