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

1
src/definitions/modules/popup.js

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

Loading…
Cancel
Save