mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
a63f812d52
ApiVisualEditor * Including notices in response to parse actions ve.init.mw.ViewPageTarget * Added styles for editNoticeButton and editNotices ve.init.mw.ViewPageTarget * Added toolbarEditNoticeButton and toolbarEditNotices * Combined toolbarEditNoticeButton and toolbarSaveButton setup * Moved toolbar buttons setup to onLoad (it could vary per-parse now) * Added tearDownToolbarButtons which fires on deactivate * Renamed some instances of teardown to tearDown * Added click handler for toolbarEditNoticeButton * Added toolbarEditNotices setup method, called on load * Made notices fade in and out, in by default on load if any * Made notices hide when save dialog is opened ve.init.mw.Target * Added storing of notices on parse icons, alert, ve.ui-Icons * Added alert icon VisualEditor.i18n, VisualEditor * Added notices button message Change-Id: I581bf5a005a9c18422f952d71064d17d0ba9b540
67 lines
1.3 KiB
CSS
67 lines
1.3 KiB
CSS
/**
|
|
* VisualEditor user interface vector icon styles.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-icon-alert {
|
|
/* @embed */
|
|
background-image: url(images/icons/alert.svg);
|
|
}
|
|
|
|
.ve-ui-icon-down {
|
|
/* @embed */
|
|
background-image: url(images/icons/down.svg);
|
|
}
|
|
|
|
.ve-ui-icon-undo:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/arched-arrow-rtl.svg);
|
|
}
|
|
|
|
.ve-ui-icon-redo:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/arched-arrow-ltr.svg);
|
|
}
|
|
|
|
.ve-ui-icon-bold:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/bold.svg);
|
|
}
|
|
|
|
.ve-ui-icon-italic:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/italic.svg);
|
|
}
|
|
|
|
.ve-ui-icon-link:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/link.svg);
|
|
}
|
|
|
|
.ve-ui-icon-clear:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/clear.svg);
|
|
}
|
|
|
|
.ve-ui-icon-number:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/number-list-ltr.svg);
|
|
}
|
|
|
|
.ve-ui-icon-bullet:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/bullet-list-ltr.svg);
|
|
}
|
|
|
|
.ve-ui-icon-indent:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/indent-list-ltr.svg);
|
|
}
|
|
|
|
.ve-ui-icon-outdent:before {
|
|
/* @embed */
|
|
background-image: url(images/icons/outdent-list-ltr.svg);
|
|
}
|