mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
9563f0880d
* Only show the inspector if the selected text has an inspectable annotation * Replace the inline menu with a toolbar containing inspectable annotations * Change the appearance of the inspector to match new mockups * Add the trash can icon for removing annotations * Move iframe handling code into a class that manages all that nonsense Change-Id: I840f72426f9a9e50054a28de950393f0e9913153
62 lines
1.2 KiB
CSS
62 lines
1.2 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-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);
|
|
}
|