Browse Source

Rebuild dist

dimmer-flex
jlukic 9 years ago
parent
commit
17e0b1aaf4
12 changed files with 78 additions and 42 deletions
  1. 6
      dist/components/dropdown.css
  2. 2
      dist/components/dropdown.min.css
  3. 19
      dist/components/list.css
  4. 2
      dist/components/list.min.css
  5. 7
      dist/components/menu.css
  6. 2
      dist/components/menu.min.css
  7. 14
      dist/components/sticky.js
  8. 2
      dist/components/sticky.min.js
  9. 33
      dist/semantic.css
  10. 14
      dist/semantic.js
  11. 2
      dist/semantic.min.css
  12. 17
      dist/semantic.min.js

6
dist/components/dropdown.css

@ -1027,7 +1027,8 @@ select.ui.dropdown {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-overflow-scrolling: touch;
width: 100% !important;
min-width: 100% !important;
width: auto !important;
}
.ui.dropdown .scrolling.menu {
position: static;
@ -1036,7 +1037,8 @@ select.ui.dropdown {
box-shadow: none !important;
border-radius: 0 !important;
margin: 0 !important;
width: 100% !important;
min-width: 100% !important;
width: auto !important;
border-top: 1px solid rgba(34, 36, 38, 0.15);
}
.ui.scrolling.dropdown .menu .item.item.item,

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

19
dist/components/list.css

@ -357,17 +357,20 @@ ol.ui.list ol,
Aligned
--------------------*/
.ui.list[class*="top aligned"],
.ui.list[class*="top aligned"] .image,
.ui.list[class*="top aligned"] .content,
.ui.list [class*="top aligned"] {
vertical-align: top;
vertical-align: top !important;
}
.ui.list[class*="middle aligned"],
.ui.list[class*="middle aligned"] .image,
.ui.list[class*="middle aligned"] .content,
.ui.list [class*="middle aligned"] {
vertical-align: middle;
vertical-align: middle !important;
}
.ui.list[class*="bottom aligned"],
.ui.list[class*="bottom aligned"] .image,
.ui.list[class*="bottom aligned"] .content,
.ui.list [class*="bottom aligned"] {
vertical-align: bottom;
vertical-align: bottom !important;
}
/*-------------------
@ -483,8 +486,8 @@ ol.ui.list ol,
--------------------*/
.ui.animated.list > .item {
-webkit-transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease;
transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease;
-webkit-transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s;
transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s;
}
.ui.animated.list:not(.horizontal) > .item:hover {
padding-left: 1em;

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

7
dist/components/menu.css

@ -1113,6 +1113,7 @@ Floated Menu / Item
/* Item Icon Only */
.ui.menu .icon.item > .icon {
width: auto;
margin: 0em;
}
/*--- inverted ---*/
@ -1166,10 +1167,14 @@ Floated Menu / Item
-ms-flex-direction: column;
flex-direction: column;
}
.ui.stackable.menu .item {
width: 100% !important;
}
.ui.stackable.menu .item:before {
position: absolute;
content: '';
top: 0%;
top: auto;
bottom: 0px;
left: 0px;
width: 100%;
background: rgba(34, 36, 38, 0.1);

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

14
dist/components/sticky.js

@ -43,8 +43,8 @@ $.fn.sticky = function(parameters) {
$module = $(this),
$window = $(window),
$container = $module.offsetParent(),
$scroll = $(settings.scrollContext),
$container,
$context,
selector = $module.selector || '',
@ -65,6 +65,7 @@ $.fn.sticky = function(parameters) {
initialize: function() {
module.determineContainer();
module.determineContext();
module.verbose('Initializing sticky', settings, $container);
@ -126,6 +127,10 @@ $.fn.sticky = function(parameters) {
}
},
determineContainer: function() {
$container = $module.offsetParent();
},
determineContext: function() {
if(settings.context) {
$context = $(settings.context);
@ -187,8 +192,11 @@ $.fn.sticky = function(parameters) {
refresh: function(hardRefresh) {
module.reset();
if(!settings.context) {
module.determineContext();
}
if(hardRefresh) {
$container = $module.offsetParent();
module.determineContainer();
}
module.save.positions();
module.stick();
@ -334,7 +342,7 @@ $.fn.sticky = function(parameters) {
if(tagName === 'HTML' || tagName == 'body') {
// this can trigger for too many reasons
//module.error(error.container, tagName, $module);
$container = $module.offsetParent();
module.determineContainer();
}
else {
if( Math.abs($container.height() - module.cache.context.height) > 5) {

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

33
dist/semantic.css

@ -12629,19 +12629,22 @@ ol.ui.list ol,
Aligned
--------------------*/
.ui.list[class*="top aligned"],
.ui.list[class*="top aligned"] .image,
.ui.list[class*="top aligned"] .content,
.ui.list [class*="top aligned"] {
vertical-align: top;
vertical-align: top !important;
}
.ui.list[class*="middle aligned"],
.ui.list[class*="middle aligned"] .image,
.ui.list[class*="middle aligned"] .content,
.ui.list [class*="middle aligned"] {
vertical-align: middle;
vertical-align: middle !important;
}
.ui.list[class*="bottom aligned"],
.ui.list[class*="bottom aligned"] .image,
.ui.list[class*="bottom aligned"] .content,
.ui.list [class*="bottom aligned"] {
vertical-align: bottom;
vertical-align: bottom !important;
}
/*-------------------
@ -12773,8 +12776,8 @@ ol.ui.list ol,
--------------------*/
.ui.animated.list > .item {
-webkit-transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease;
transition: 0.1s color ease, 0.1s padding-left ease, 0.1s background-color ease;
-webkit-transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s;
transition: 0.25s color ease 0.1s, 0.25s padding-left ease 0.1s, 0.25s background-color ease 0.1s;
}
.ui.animated.list:not(.horizontal) > .item:hover {
@ -19734,6 +19737,7 @@ Floated Menu / Item
.ui.menu .icon.item > .icon {
width: auto;
margin: 0em;
}
/*--- inverted ---*/
@ -19791,10 +19795,15 @@ Floated Menu / Item
flex-direction: column;
}
.ui.stackable.menu .item {
width: 100% !important;
}
.ui.stackable.menu .item:before {
position: absolute;
content: '';
top: 0%;
top: auto;
bottom: 0px;
left: 0px;
width: 100%;
background: rgba(34, 36, 38, 0.1);
@ -27483,7 +27492,8 @@ select.ui.dropdown {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-overflow-scrolling: touch;
width: 100% !important;
min-width: 100% !important;
width: auto !important;
}
.ui.dropdown .scrolling.menu {
@ -27493,7 +27503,8 @@ select.ui.dropdown {
box-shadow: none !important;
border-radius: 0 !important;
margin: 0 !important;
width: 100% !important;
min-width: 100% !important;
width: auto !important;
border-top: 1px solid rgba(34, 36, 38, 0.15);
}

14
dist/semantic.js

@ -14450,8 +14450,8 @@ $.fn.sticky = function(parameters) {
$module = $(this),
$window = $(window),
$container = $module.offsetParent(),
$scroll = $(settings.scrollContext),
$container,
$context,
selector = $module.selector || '',
@ -14472,6 +14472,7 @@ $.fn.sticky = function(parameters) {
initialize: function() {
module.determineContainer();
module.determineContext();
module.verbose('Initializing sticky', settings, $container);
@ -14533,6 +14534,10 @@ $.fn.sticky = function(parameters) {
}
},
determineContainer: function() {
$container = $module.offsetParent();
},
determineContext: function() {
if(settings.context) {
$context = $(settings.context);
@ -14594,8 +14599,11 @@ $.fn.sticky = function(parameters) {
refresh: function(hardRefresh) {
module.reset();
if(!settings.context) {
module.determineContext();
}
if(hardRefresh) {
$container = $module.offsetParent();
module.determineContainer();
}
module.save.positions();
module.stick();
@ -14741,7 +14749,7 @@ $.fn.sticky = function(parameters) {
if(tagName === 'HTML' || tagName == 'body') {
// this can trigger for too many reasons
//module.error(error.container, tagName, $module);
$container = $module.offsetParent();
module.determineContainer();
}
else {
if( Math.abs($container.height() - module.cache.context.height) > 5) {

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

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

Loading…
Cancel
Save