mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 23:05:35 +00:00
7044ec820f
Changes include: VisualEditor.i18n.php, VisualEditor.php * i18n labels for dialogs ve.init.mw.ViewPageTarget.js * Initial go at onOpenDialog and onCloseDialog methods ve.init.Target.js * Change calls to dialog hide & show to close & open ve.ui.MetaDialog.js, ve.ui.ContentDialog.js * Pass surface when constructing * Add static title message property ve.ui.Surface.css * Set high z-index for toolbar for shadow to overlap dialog. ve.ui.Dialog.js * Extends EventEmitter class. * Changed hide/show method names to open/close. * Create base ui elements. ve.Surface.js * Create instance of meta dialog. Change-Id: I867ca0546606eeb5e2ab7f612bb5af700ab877ec
29 lines
461 B
CSS
29 lines
461 B
CSS
.ve-ui-dialog {
|
|
position: absolute;
|
|
background: #FFFFFF;
|
|
line-height: 1em;
|
|
z-index: 99;
|
|
}
|
|
|
|
.ve-ui-dialog-title {
|
|
line-height: 2.6em;
|
|
height: 2em;
|
|
padding: 0 .75em;
|
|
display: inline-block;
|
|
border-right: solid 1px #f0f3f5;
|
|
vertical-align: middle;
|
|
color: #555;
|
|
}
|
|
|
|
.ve-ui-dialog-actions {
|
|
float: right;
|
|
padding: 0.25em;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.ve-ui-dialog-actions .ve-ui-buttonWidget {
|
|
margin-left: 0.25em;
|
|
margin-right: 0.25em;
|
|
margin-top: 0.2em;
|
|
}
|