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
29 lines
571 B
CSS
29 lines
571 B
CSS
/**
|
|
* VisualEditor user interface Inspector vector icon styles.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-icon-clear {
|
|
/* @embed */
|
|
background-image: url(images/icons/remove.svg);
|
|
}
|
|
|
|
.ve-ui-icon-down,
|
|
.ve-ui-linkInspector-location {
|
|
/* @embed */
|
|
background-image: url(images/icons/down.svg);
|
|
}
|
|
|
|
.ve-ui-inspector-close {
|
|
/* @embed */
|
|
background-image: url(images/icons/move-rtl.svg);
|
|
}
|
|
|
|
.ve-ui-icon-link {
|
|
/* @embed */
|
|
background-image: url(images/icons/link.svg);
|
|
}
|
|
|