Browse Source

Rebuild dist

1.0
jlukic 10 years ago
parent
commit
2406023742
16 changed files with 70 additions and 56 deletions
  1. 2
      dist/components/checkbox.css
  2. 2
      dist/components/dropdown.css
  3. 4
      dist/components/modal.js
  4. 2
      dist/components/modal.min.js
  5. 5
      dist/components/popup.js
  6. 2
      dist/components/popup.min.js
  7. 14
      dist/components/reset.css
  8. 2
      dist/components/step.css
  9. 1
      dist/components/sticky.css
  10. 30
      dist/components/sticky.js
  11. 2
      dist/components/sticky.min.css
  12. 2
      dist/components/sticky.min.js
  13. 11
      dist/semantic.css
  14. 39
      dist/semantic.js
  15. 2
      dist/semantic.min.css
  16. 6
      dist/semantic.min.js

2
dist/components/checkbox.css

@ -464,7 +464,7 @@
}
.ui.checkbox label:after,
.ui.checkbox .box:after {
content: '\e800'
content: '\e800';
/* '' */
}

2
dist/components/dropdown.css

@ -472,7 +472,7 @@ select.ui.dropdown {
width: 100%;
outline: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
padding: inherit
padding: inherit;
/*Amazing trick */
}

4
dist/components/modal.js

@ -97,7 +97,6 @@ $.fn.modal = function(parameters) {
$dimmer = $dimmable.dimmer('get dimmer');
$otherModals = $module.siblings(selector.modal);
$allModals = $otherModals.add($module);
module.cacheSizes();
module.verbose('Attaching close events', $close);
module.bind.events();
@ -272,6 +271,7 @@ $.fn.modal = function(parameters) {
$.proxy(settings.onShow, element)();
if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
module.debug('Showing modal with css animations');
module.cacheSizes();
module.set.position();
module.set.screenHeight();
module.set.type();
@ -476,7 +476,7 @@ $.fn.modal = function(parameters) {
var
modalHeight = $module.outerHeight()
;
if(modalHeight !== 0) {
if(module.cache === undefined || modalHeight !== 0) {
module.cache = {
pageHeight : $(document).outerHeight(),
height : modalHeight + settings.offset,

2
dist/components/modal.min.js
File diff suppressed because it is too large
View File

5
dist/components/popup.js

@ -628,7 +628,7 @@ $.fn.popup = function(parameters) {
;
}
else {
module.error(error.recursion, element);
module.debug('Popup could not find a position onstage', $popup);
searchDepth = 0;
module.reset();
$popup.removeClass(className.loading);
@ -965,8 +965,7 @@ $.fn.popup.settings = {
error: {
invalidPosition : 'The position you specified is not a valid position',
method : 'The method you called is not defined.',
recursion : 'Popup attempted to reposition element to fit, but could not find an adequate position.'
method : 'The method you called is not defined.'
},
metadata: {

2
dist/components/popup.min.js
File diff suppressed because it is too large
View File

14
dist/components/reset.css

@ -29,7 +29,7 @@ input[type="email"],
input[type="search"],
input[type="password"] {
-webkit-appearance: none;
-moz-appearance: none
-moz-appearance: none;
/* mobile firefox too! */
}
@ -56,7 +56,7 @@ html {
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%
-webkit-text-size-adjust: 100%;
/* 2 */
}
@ -99,7 +99,7 @@ video {
display: inline-block;
/* 1 */
vertical-align: baseline
vertical-align: baseline;
/* 2 */
}
@ -265,7 +265,7 @@ textarea {
font: inherit;
/* 2 */
margin: 0
margin: 0;
/* 3 */
}
@ -299,7 +299,7 @@ input[type="submit"] {
-webkit-appearance: button;
/* 2 */
cursor: pointer
cursor: pointer;
/* 3 */
}
@ -337,7 +337,7 @@ input[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0
padding: 0;
/* 2 */
}
@ -388,7 +388,7 @@ legend {
border: 0;
/* 1 */
padding: 0
padding: 0;
/* 2 */
}

2
dist/components/step.css

@ -348,7 +348,7 @@
.ui.steps .step.completed > .icon:before,
.ui.ordered.steps .step.completed:before {
font-family: 'Step';
content: '\e800'
content: '\e800';
/* '' */
}

1
dist/components/sticky.css

@ -19,6 +19,7 @@
position: static;
-webkit-transition: width 0.2s ease, height 0.2s ease, top 0.2s ease, bottom 0.2s ease;
transition: width 0.2s ease, height 0.2s ease, top 0.2s ease, bottom 0.2s ease;
z-index: 800;
}

30
dist/components/sticky.js

@ -362,9 +362,12 @@ $.fn.sticky = function(parameters) {
element = cache.element,
window = cache.window,
context = cache.context,
offset = (module.is.bottom() && settings.pushing)
? settings.bottomOffset
: settings.offset,
scroll = {
top : $scroll.scrollTop() + settings.offset,
bottom : $scroll.scrollTop() + settings.offset + window.height
top : $scroll.scrollTop() + offset,
bottom : $scroll.scrollTop() + offset + window.height
},
direction = module.get.direction(scroll.top),
elementScroll = module.get.elementScroll(scroll.top),
@ -424,19 +427,16 @@ $.fn.sticky = function(parameters) {
}
}
else if( module.is.bottom() ) {
// fix to bottom of screen on way back up
if( module.is.bottom() ) {
if(settings.pushing) {
if(module.is.bound() && scroll.bottom < context.bottom ) {
module.debug('Fixing bottom attached element to bottom of browser.');
module.fixBottom();
}
if(settings.pushing) {
if(module.is.bound() && scroll.bottom < context.bottom ) {
module.debug('Fixing bottom attached element to bottom of browser.');
module.fixBottom();
}
else {
if(module.is.bound() && (scroll.top < context.bottom - element.height) ) {
module.debug('Fixing bottom attached element to top of browser.');
module.fixTop();
}
}
else {
if(module.is.bound() && (scroll.top < context.bottom - element.height) ) {
module.debug('Fixing bottom attached element to top of browser.');
module.fixTop();
}
}
}
@ -738,7 +738,9 @@ $.fn.sticky.settings = {
context : false,
scrollContext : window,
offset : 0,
bottomOffset : 0,
onReposition : function(){},
onScroll : function(){},

2
dist/components/sticky.min.css

@ -8,4 +8,4 @@
* http://opensource.org/licenses/MIT
*
*/
.ui.sticky{position:static;-webkit-transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease;transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}
.ui.sticky{position:static;-webkit-transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease;transition:width .2s ease,height .2s ease,top .2s ease,bottom .2s ease;z-index:800}.ui.sticky.bound{position:absolute;left:auto;right:auto}.ui.sticky.fixed{position:fixed;left:auto;right:auto}.ui.sticky.bound.top,.ui.sticky.fixed.top{top:0;bottom:auto}.ui.sticky.bound.bottom,.ui.sticky.fixed.bottom{top:auto;bottom:0}.ui.native.sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}

2
dist/components/sticky.min.js
File diff suppressed because it is too large
View File

11
dist/semantic.css

@ -5280,6 +5280,7 @@ a.ui.card:hover,
.ui.checkbox label:after,
.ui.checkbox .box:after {
content: '\e800';
/* '' */
}
/* UTF Reference
@ -6513,6 +6514,7 @@ select.ui.dropdown {
outline: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
padding: inherit;
/*Amazing trick */
}
/* Search Selection */
@ -21754,6 +21756,7 @@ input[type="search"],
input[type="password"] {
-webkit-appearance: none;
-moz-appearance: none;
/* mobile firefox too! */
}
/*******************************
@ -21780,6 +21783,7 @@ html {
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */
}
/**
@ -21826,6 +21830,7 @@ video {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */
}
/**
@ -22027,6 +22032,7 @@ textarea {
font: inherit;
/* 2 */
margin: 0;
/* 3 */
}
/**
@ -22064,6 +22070,7 @@ input[type="submit"] {
-webkit-appearance: button;
/* 2 */
cursor: pointer;
/* 3 */
}
/**
@ -22107,6 +22114,7 @@ input[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */
}
/**
@ -22163,6 +22171,7 @@ legend {
border: 0;
/* 1 */
padding: 0;
/* 2 */
}
/**
@ -25199,6 +25208,7 @@ a:hover {
.ui.ordered.steps .step.completed:before {
font-family: 'Step';
content: '\e800';
/* '' */
}
/*******************************
@ -25224,6 +25234,7 @@ a:hover {
position: static;
-webkit-transition: width 0.2s ease, height 0.2s ease, top 0.2s ease, bottom 0.2s ease;
transition: width 0.2s ease, height 0.2s ease, top 0.2s ease, bottom 0.2s ease;
z-index: 800;
}
/*******************************

39
dist/semantic.js

@ -5847,7 +5847,6 @@ $.fn.modal = function(parameters) {
$dimmer = $dimmable.dimmer('get dimmer');
$otherModals = $module.siblings(selector.modal);
$allModals = $otherModals.add($module);
module.cacheSizes();
module.verbose('Attaching close events', $close);
module.bind.events();
@ -6022,6 +6021,7 @@ $.fn.modal = function(parameters) {
$.proxy(settings.onShow, element)();
if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
module.debug('Showing modal with css animations');
module.cacheSizes();
module.set.position();
module.set.screenHeight();
module.set.type();
@ -6226,7 +6226,7 @@ $.fn.modal = function(parameters) {
var
modalHeight = $module.outerHeight()
;
if(modalHeight !== 0) {
if(module.cache === undefined || modalHeight !== 0) {
module.cache = {
pageHeight : $(document).outerHeight(),
height : modalHeight + settings.offset,
@ -7668,7 +7668,7 @@ $.fn.popup = function(parameters) {
;
}
else {
module.error(error.recursion, element);
module.debug('Popup could not find a position onstage', $popup);
searchDepth = 0;
module.reset();
$popup.removeClass(className.loading);
@ -8005,8 +8005,7 @@ $.fn.popup.settings = {
error: {
invalidPosition : 'The position you specified is not a valid position',
method : 'The method you called is not defined.',
recursion : 'Popup attempted to reposition element to fit, but could not find an adequate position.'
method : 'The method you called is not defined.'
},
metadata: {
@ -13385,9 +13384,12 @@ $.fn.sticky = function(parameters) {
element = cache.element,
window = cache.window,
context = cache.context,
offset = (module.is.bottom() && settings.pushing)
? settings.bottomOffset
: settings.offset,
scroll = {
top : $scroll.scrollTop() + settings.offset,
bottom : $scroll.scrollTop() + settings.offset + window.height
top : $scroll.scrollTop() + offset,
bottom : $scroll.scrollTop() + offset + window.height
},
direction = module.get.direction(scroll.top),
elementScroll = module.get.elementScroll(scroll.top),
@ -13447,19 +13449,16 @@ $.fn.sticky = function(parameters) {
}
}
else if( module.is.bottom() ) {
// fix to bottom of screen on way back up
if( module.is.bottom() ) {
if(settings.pushing) {
if(module.is.bound() && scroll.bottom < context.bottom ) {
module.debug('Fixing bottom attached element to bottom of browser.');
module.fixBottom();
}
if(settings.pushing) {
if(module.is.bound() && scroll.bottom < context.bottom ) {
module.debug('Fixing bottom attached element to bottom of browser.');
module.fixBottom();
}
else {
if(module.is.bound() && (scroll.top < context.bottom - element.height) ) {
module.debug('Fixing bottom attached element to top of browser.');
module.fixTop();
}
}
else {
if(module.is.bound() && (scroll.top < context.bottom - element.height) ) {
module.debug('Fixing bottom attached element to top of browser.');
module.fixTop();
}
}
}
@ -13761,7 +13760,9 @@ $.fn.sticky.settings = {
context : false,
scrollContext : window,
offset : 0,
bottomOffset : 0,
onReposition : function(){},
onScroll : function(){},

2
dist/semantic.min.css
File diff suppressed because it is too large
View File

6
dist/semantic.min.js
File diff suppressed because it is too large
View File

Loading…
Cancel
Save