mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
MWSaveDialog: Fix styling of border radii
Remove bottom border radii from the <textarea> and apply to the options bar instead. Apply different values for Apex and MediaWiki themes. Change-Id: If727863a87547692ee499d2141c0418658609412
This commit is contained in:
parent
59f55fbb9b
commit
926d39d54d
|
@ -1000,6 +1000,14 @@
|
|||
"modules/ve-mw/ui/styles/widgets/ve.ui.MWTocWidget.css",
|
||||
"modules/ve-mw/ui/styles/tools/ve.ui.MWEducationPopupTool.css"
|
||||
],
|
||||
"skinStyles": {
|
||||
"vector": [
|
||||
"modules/ve-mw/themes/mediawiki/widgets.css"
|
||||
],
|
||||
"monobook": [
|
||||
"modules/ve-mw/themes/apex/widgets.css"
|
||||
]
|
||||
},
|
||||
"dependencies": [
|
||||
"ext.visualEditor.core",
|
||||
"mediawiki.Title",
|
||||
|
|
17
modules/ve-mw/themes/apex/widgets.css
Normal file
17
modules/ve-mw/themes/apex/widgets.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*!
|
||||
* VisualEditor Apex theme widget customizations.
|
||||
*
|
||||
* @copyright 2011-2015 VisualEditor Team and others; see http://ve.mit-license.org
|
||||
*/
|
||||
|
||||
/* ve.ui.MWSaveDialog summary */
|
||||
|
||||
.ve-ui-mwSaveDialog-summary textarea {
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.ve-ui-mwSaveDialog-options {
|
||||
border-bottom-right-radius: 0.25em;
|
||||
border-bottom-left-radius: 0.25em;
|
||||
}
|
17
modules/ve-mw/themes/mediawiki/widgets.css
Normal file
17
modules/ve-mw/themes/mediawiki/widgets.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*!
|
||||
* VisualEditor MediaWiki theme widget customizations.
|
||||
*
|
||||
* @copyright 2011-2015 VisualEditor Team and others; see http://ve.mit-license.org
|
||||
*/
|
||||
|
||||
/* ve.ui.MWSaveDialog summary */
|
||||
|
||||
.ve-ui-mwSaveDialog-summary textarea {
|
||||
border-bottom-right-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
.ve-ui-mwSaveDialog-options {
|
||||
border-bottom-right-radius: 0.1em;
|
||||
border-bottom-left-radius: 0.1em;
|
||||
}
|
Loading…
Reference in a new issue