mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-27 04:20:22 +08:00
- Fixed CSS so it also applies to widgets within modals
- Added docked modal style
This commit is contained in:
parent
32a8d43afc
commit
d21426d461
@ -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;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user