- Fixed CSS so it also applies to widgets within modals

- Added docked modal style
This commit is contained in:
Jonathan Frederic 2013-12-06 01:08:44 +00:00
parent 32a8d43afc
commit d21426d461

View File

@ -24,6 +24,10 @@ The widget area typically looks something like this:
.border-box-sizing(); .border-box-sizing();
.vbox(); .vbox();
.box-flex2(); .box-flex2();
}
}
/* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM */
/* Horizontal Label */ /* Horizontal Label */
.widget-hlabel { .widget-hlabel {
@ -208,11 +212,6 @@ The widget area typically looks something like this:
.vbox(); .vbox();
width: 30px; width: 30px;
} }
}
}
/* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM */
/* ContainerWidget - ModalView */ /* ContainerWidget - ModalView */
.widget-modal { .widget-modal {
overflow: hidden; overflow: hidden;
@ -231,3 +230,12 @@ The widget area typically looks something like this:
.widget-container { .widget-container {
.border-box-sizing(); .border-box-sizing();
} }
/* Horizontal Label */
.docked-widget-modal {
overflow: hidden;
position: relative !important;
top: 0px !important;
left: 0px !important;
margin-left: 0px !important;
}