Browse Source

Fixes #1256, adds better handling of settings.popup, and fluid

1.0
jlukic 10 years ago
parent
commit
70a62a9803
2 changed files with 2 additions and 1 deletions
  1. 2
      src/definitions/collections/grid.less
  2. 1
      src/definitions/modules/popup.js

2
src/definitions/collections/grid.less

@ -72,6 +72,7 @@
/* Standard 16 column */
.ui.grid > .column:not(.row),
.ui.grid > .row > .column {
position: relative;
display: inline-block;
text-align: left;
font-size: 1rem;
@ -92,6 +93,7 @@
--------------------*/
.ui.grid > .row {
position: relative;
display: block;
width: auto !important;
padding: 0rem;

1
src/definitions/modules/popup.js

@ -612,7 +612,6 @@ $.fn.popup = function(parameters) {
.addClass(position)
.addClass(className.loading)
;
console.log('here1');
// check if is offstage
offstagePosition = module.get.offstagePosition(position);

Loading…
Cancel
Save