File tree Expand file tree Collapse file tree
javascripts/semantic_ui/definitions/modules
lib/less/rails/semantic_ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ $.fn.search = function(parameters) {
305305 if ( content [ field ] . match ( searchRegExp ) ) {
306306 results . push ( content ) ;
307307 }
308- else if ( settings . searchFullText && content [ field ] . match ( content [ field ] ) ) {
308+ else if ( settings . searchFullText && content [ field ] . match ( fullTextRegExp ) ) {
309309 fullTextResults . push ( content ) ;
310310 }
311311 }
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ $.fn.sidebar = function(parameters) {
8383 transitionEvent = module . get . transitionEvent ( ) ;
8484
8585 // cache on initialize
86- if ( module . is . legacy ( ) || settings . legacy ) {
86+ if ( ( module . useLegacy == 'auto' && module . is . legacy ( ) ) || settings . useLegacy ) {
8787 settings . transition = 'overlay' ;
8888 settings . useLegacy = true ;
8989 }
@@ -991,7 +991,7 @@ $.fn.sidebar.settings = {
991991 scrollLock : false ,
992992 returnScroll : false ,
993993
994- useLegacy : false ,
994+ useLegacy : 'auto' ,
995995 duration : 500 ,
996996 easing : 'easeInOutQuint' ,
997997
Original file line number Diff line number Diff line change 228228.ui.animated.button {
229229 position : relative ;
230230 overflow : hidden ;
231+ vertical-align : @animatedVerticalAlign ;
231232 padding-right : 0em !important ;
232233}
233234
Original file line number Diff line number Diff line change 258258@floatedMargin: 0.25em;
259259
260260/* Animated */
261+ @animatedVerticalAlign: middle;
261262@animationDuration: 0.3s;
262263@animationEasing: ease;
263264@fadeScaleHigh: 1.5;
Original file line number Diff line number Diff line change 11module Less
22 module Rails
33 module SemanticUI
4- VERSION = '1.5.0 .0'
4+ VERSION = '1.5.1 .0'
55 end
66 end
77end
You can’t perform that action at this time.
0 commit comments