jenkins-bot has submitted this change and it was merged. (
https://gerrit.wikimedia.org/r/382732 )
Change subject: Replace abandoned colors wo WikimediaUI palette ones
......................................................................
Replace abandoned colors wo WikimediaUI palette ones
Aside of a few error color amendments (from `#f00` to `d33`) and
one minimal link color one (from `#06c` to `#36c`),
this patch cares about subtle changes of grey tones.
Change-Id: I210d861460c5b8ca57f51e20494217251378e2cd
---
M src/ce/styles/nodes/ve.ce.BranchNode.css
M src/ce/styles/nodes/ve.ce.FocusableNode.css
M src/ce/styles/nodes/ve.ce.ResizableNode.css
M src/ce/styles/nodes/ve.ce.TableCellNode.css
M src/ce/styles/nodes/ve.ce.TableNode.css
M src/ce/styles/ve.ce.Surface.css
M src/ui/styles/contextitems/ve.ui.CommentContextItem.css
M src/ui/styles/contextitems/ve.ui.LanguageContextItem.css
M src/ui/styles/contextitems/ve.ui.LinearContextItem.css
M src/ui/styles/dialogs/ve.ui.CommandHelpDialog.css
M src/ui/styles/dialogs/ve.ui.SpecialCharacterDialog.css
M src/ui/styles/dialogs/ve.ui.ToolbarDialog.css
M src/ui/styles/elements/ve.ui.DiffElement.css
M src/ui/styles/ve.ui.ContextItem.css
M src/ui/styles/ve.ui.DebugBar.css
M src/ui/styles/ve.ui.MobileContext.css
M src/ui/styles/widgets/ve.ui.ContextOptionWidget.css
M src/ui/styles/widgets/ve.ui.LanguageSearchWidget.css
18 files changed, 40 insertions(+), 40 deletions(-)
Approvals:
jenkins-bot: Verified
Jforrester: Looks good to me, approved
diff --git a/src/ce/styles/nodes/ve.ce.BranchNode.css
b/src/ce/styles/nodes/ve.ce.BranchNode.css
index 559ee3b..36af28f 100644
--- a/src/ce/styles/nodes/ve.ce.BranchNode.css
+++ b/src/ce/styles/nodes/ve.ce.BranchNode.css
@@ -21,7 +21,7 @@
.ve-ce-branchNode-blockSlug,
.ve-ce-branchNode-newSlug {
margin: -0.3em 0 -0.1em 0;
- outline: 1px dashed #ccc;
+ outline: 1px dashed #c8ccd1;
/* rgba( #f1f7fb, 0.75 ) */
background-color: rgba( 241, 247, 251, 0.75 );
}
diff --git a/src/ce/styles/nodes/ve.ce.FocusableNode.css
b/src/ce/styles/nodes/ve.ce.FocusableNode.css
index a260693..8cabab9 100644
--- a/src/ce/styles/nodes/ve.ce.FocusableNode.css
+++ b/src/ce/styles/nodes/ve.ce.FocusableNode.css
@@ -25,7 +25,7 @@
}
.ve-ce-focusableNode-highlight-error {
- background: #f00;
+ background: #d33;
}
.ve-ce-focusableNode-highlight-relocatable-marker {
diff --git a/src/ce/styles/nodes/ve.ce.ResizableNode.css
b/src/ce/styles/nodes/ve.ce.ResizableNode.css
index 4c06336..fa58f1d 100644
--- a/src/ce/styles/nodes/ve.ce.ResizableNode.css
+++ b/src/ce/styles/nodes/ve.ce.ResizableNode.css
@@ -81,7 +81,7 @@
.ve-ce-resizableNode-sizeText {
padding: 0.25em 0.5em;
- border: 1px solid #ccc;
+ border: 1px solid #c8ccd1;
background-color: #fff;
border-radius: 0.3em;
white-space: nowrap;
@@ -90,7 +90,7 @@
.ve-ce-resizableNode-sizeText span:not( :first-child ) {
margin-left: 0.4em;
padding-left: 0.4em;
- border-left: 1px solid #ccc;
+ border-left: 1px solid #c8ccd1;
}
.ve-ce-resizableNode-sizeText-warning {
diff --git a/src/ce/styles/nodes/ve.ce.TableCellNode.css
b/src/ce/styles/nodes/ve.ce.TableCellNode.css
index 9e86d7c..5bbe1de 100644
--- a/src/ce/styles/nodes/ve.ce.TableCellNode.css
+++ b/src/ce/styles/nodes/ve.ce.TableCellNode.css
@@ -5,7 +5,7 @@
*/
.ve-ce-tableCellableNode {
- border: 1px dotted #ccc;
+ border: 1px dotted #c8ccd1;
padding: 0.25em 0.5em;
min-width: 1em;
}
diff --git a/src/ce/styles/nodes/ve.ce.TableNode.css
b/src/ce/styles/nodes/ve.ce.TableNode.css
index 8e2ab79..1822fb2 100644
--- a/src/ce/styles/nodes/ve.ce.TableNode.css
+++ b/src/ce/styles/nodes/ve.ce.TableNode.css
@@ -15,7 +15,7 @@
}
.ve-ce-tableCaptionNode.ve-ce-activeNode-active {
- border: 1px dotted #ccc;
+ border: 1px dotted #c8ccd1;
border-bottom: 0;
margin-top: -1px;
}
diff --git a/src/ce/styles/ve.ce.Surface.css b/src/ce/styles/ve.ce.Surface.css
index 95d560e..ec76748 100644
--- a/src/ce/styles/ve.ce.Surface.css
+++ b/src/ce/styles/ve.ce.Surface.css
@@ -42,7 +42,7 @@
.ve-ce-surface-dropMarker {
height: 1px;
- background: #999;
+ background: #72777d;
pointer-events: none;
position: absolute;
}
@@ -106,8 +106,8 @@
/* Support: IE */
/* Prevent IE from wrapping link text in <u> and <font color> tags */
.ve-init-target-ie-or-edge .ve-ce-surface-paste a {
+ color: #36c;
text-decoration: underline !important; /* stylelint-disable-line
declaration-no-important */
- color: #06c;
}
.ve-ce-cursorHolder {
@@ -124,5 +124,5 @@
.ve-ce-cursorHolder-debug {
width: 2px;
height: 1em;
- border: 1px solid #f00;
+ border: 1px solid #d33;
}
diff --git a/src/ui/styles/contextitems/ve.ui.CommentContextItem.css
b/src/ui/styles/contextitems/ve.ui.CommentContextItem.css
index 545c682..75f8b37 100644
--- a/src/ui/styles/contextitems/ve.ui.CommentContextItem.css
+++ b/src/ui/styles/contextitems/ve.ui.CommentContextItem.css
@@ -5,6 +5,7 @@
*/
.ve-ui-commentContextItem .ve-ui-linearContextItem-body {
+ color: #54595d;
padding: 0.5em 0.5em 0 0.5em;
margin: 0 0.5em 1em 0.5em;
overflow: auto;
@@ -14,5 +15,4 @@
font-family: monospace, monospace;
white-space: pre-wrap;
line-height: 1.25em;
- color: #555;
}
diff --git a/src/ui/styles/contextitems/ve.ui.LanguageContextItem.css
b/src/ui/styles/contextitems/ve.ui.LanguageContextItem.css
index 649e2eb..adeeeec 100644
--- a/src/ui/styles/contextitems/ve.ui.LanguageContextItem.css
+++ b/src/ui/styles/contextitems/ve.ui.LanguageContextItem.css
@@ -5,8 +5,8 @@
*/
.ve-ui-languageContextItem .ve-ui-linearContextItem-body {
+ color: #54595d;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
- color: #555;
}
diff --git a/src/ui/styles/contextitems/ve.ui.LinearContextItem.css
b/src/ui/styles/contextitems/ve.ui.LinearContextItem.css
index fa64123..7b196e7 100644
--- a/src/ui/styles/contextitems/ve.ui.LinearContextItem.css
+++ b/src/ui/styles/contextitems/ve.ui.LinearContextItem.css
@@ -42,6 +42,7 @@
}
.ve-ui-linearContextItem-description {
+ color: #72777d;
position: absolute;
top: 0;
right: 0;
@@ -51,7 +52,6 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
- color: #888;
}
.ve-ui-linearContextItem-actions {
diff --git a/src/ui/styles/dialogs/ve.ui.CommandHelpDialog.css
b/src/ui/styles/dialogs/ve.ui.CommandHelpDialog.css
index 5b077c7..2deb381 100644
--- a/src/ui/styles/dialogs/ve.ui.CommandHelpDialog.css
+++ b/src/ui/styles/dialogs/ve.ui.CommandHelpDialog.css
@@ -68,12 +68,12 @@
}
.ve-ui-commandHelpDialog-list dt kbd > kbd {
+ background-color: #f8f9fa;
+ color: #222;
font-size: 1em; /* Prevent double shrinking */
- background-color: #f7f7f7;
- border: 1px solid #ccc;
+ border: 1px solid #c8ccd1;
border-radius: 3px;
box-shadow: 0 1px 0 rgba( 0, 0, 0, 0.2 ), 0 0 0 2px #fff inset;
- color: #333;
display: inline-block;
line-height: 1.4;
padding: 0.1em 0.4em;
diff --git a/src/ui/styles/dialogs/ve.ui.SpecialCharacterDialog.css
b/src/ui/styles/dialogs/ve.ui.SpecialCharacterDialog.css
index d75e773..30d8e97 100644
--- a/src/ui/styles/dialogs/ve.ui.SpecialCharacterDialog.css
+++ b/src/ui/styles/dialogs/ve.ui.SpecialCharacterDialog.css
@@ -26,8 +26,8 @@
}
.ve-ui-specialCharacterPage h3 {
+ color: #54595d;
margin: 0 0 0.5em 0;
- color: #888;
font-weight: normal;
font-size: 1em;
}
@@ -46,14 +46,14 @@
display: inline-block;
vertical-align: top;
margin: 0 3px 3px 0;
- border: 1px solid #e6e6e6;
+ border: 1px solid #eaecf0;
-webkit-transition: border-color 200ms;
-moz-transition: border-color 200ms;
transition: border-color 200ms;
}
.ve-ui-specialCharacterPage-character:hover {
- border-color: #ccc;
+ border-color: #c8ccd1;
}
.ve-ui-specialCharacterPage-character-source {
diff --git a/src/ui/styles/dialogs/ve.ui.ToolbarDialog.css
b/src/ui/styles/dialogs/ve.ui.ToolbarDialog.css
index 033e916..8bb2d7c 100644
--- a/src/ui/styles/dialogs/ve.ui.ToolbarDialog.css
+++ b/src/ui/styles/dialogs/ve.ui.ToolbarDialog.css
@@ -17,11 +17,11 @@
}
.oo-ui-toolbar-position-top .ve-ui-toolbarDialog-position-above {
- border-top: 1px solid #ddd;
+ border-top: 1px solid #c8ccd1;
}
.oo-ui-toolbar-position-bottom .ve-ui-toolbarDialog-position-above {
- border-bottom: 1px solid #ddd;
+ border-bottom: 1px solid #c8ccd1;
}
.ve-ui-toolbarDialog-position-above.oo-ui-window-ready {
@@ -33,7 +33,7 @@
position: absolute;
right: 0;
background: #fff;
- border-left: 1px solid #ddd;
+ border-left: 1px solid #c8ccd1;
overflow-x: hidden;
width: 0;
margin-top: 1px;
diff --git a/src/ui/styles/elements/ve.ui.DiffElement.css
b/src/ui/styles/elements/ve.ui.DiffElement.css
index 5d1eefb..8eec1fd 100644
--- a/src/ui/styles/elements/ve.ui.DiffElement.css
+++ b/src/ui/styles/elements/ve.ui.DiffElement.css
@@ -16,7 +16,7 @@
.ve-ui-diffElement-hasDescriptions .ve-ui-diffElement-content {
margin-right: 16em;
padding-right: 1em;
- border-right: 1px solid #ccc;
+ border-right: 1px solid #c8ccd1;
}
.ve-ui-diffElement-hasDescriptions .ve-ui-diffElement-sidebar {
diff --git a/src/ui/styles/ve.ui.ContextItem.css
b/src/ui/styles/ve.ui.ContextItem.css
index 3e9b239..7149f04 100644
--- a/src/ui/styles/ve.ui.ContextItem.css
+++ b/src/ui/styles/ve.ui.ContextItem.css
@@ -14,5 +14,5 @@
}
.ve-ui-contextItem + .ve-ui-contextItem {
- border-top: 1px solid #eee;
+ border-top: 1px solid #eaecf0;
}
diff --git a/src/ui/styles/ve.ui.DebugBar.css b/src/ui/styles/ve.ui.DebugBar.css
index 917ee8c..a24c18b 100644
--- a/src/ui/styles/ve.ui.DebugBar.css
+++ b/src/ui/styles/ve.ui.DebugBar.css
@@ -32,7 +32,7 @@
}
.ve-ui-debugBar-commands-divider {
- border-right: 1px solid #ddd;
+ border-right: 1px solid #c8ccd1;
width: 0;
}
@@ -41,10 +41,10 @@
}
.ve-ui-debugBar-dump > table {
+ background-color: #f8f9fa;
font-size: 0.85em;
- background-color: #f3f3f3;
width: 100%;
- border: 1px solid #ddd;
+ border: 1px solid #c8ccd1;
border-radius: 0;
border-top-right-radius: 0.25em;
border-top-left-radius: 0.25em;
@@ -55,8 +55,8 @@
}
.ve-ui-debugBar-dump td {
- padding: 0.25em 1em;
background-color: #fff;
+ padding: 0.25em 1em;
vertical-align: top;
}
@@ -66,33 +66,33 @@
}
.ve-ui-debugBar-dump th {
+ color: #54595d;
padding: 0.5em 1em;
- color: #555;
text-shadow: 0 1px 1px #fff;
}
.ve-ui-debugBar-dump ol {
+ color: #72777d;
padding-left: 1.5em;
- color: #999;
}
.ve-ui-debugBar-dump li > span {
+ background-color: #f8f9fa;
+ color: #000;
display: inline-block;
- background-color: #f3f3f3;
border-radius: 0.3em;
margin: 0.25em 0 0.25em 0;
padding: 0.125em 0.5em;
text-shadow: 0 1px 1px #fff;
- color: #000;
}
.ve-ui-debugBar-dump li > span > span {
- color: #aaa;
+ color: #a2a9b1;
text-shadow: 0 1px 1px #fff;
}
.ve-ui-debugBar-dump li .ve-ui-debugBar-dump-undefined {
- color: #aaa;
+ color: #a2a9b1;
}
.ve-ui-debugBar-dump li .ve-ui-debugBar-dump-element {
@@ -108,12 +108,12 @@
}
.ve-ui-debugBar-filibuster {
+ background-color: #f8f9fa;
font-size: 0.875em;
margin-top: 2em;
display: none;
- background-color: #f3f3f3;
width: 100%;
- border: 1px solid #ddd;
+ border: 1px solid #c8ccd1;
border-radius: 0;
border-top-right-radius: 0.25em;
border-top-left-radius: 0.25em;
@@ -124,7 +124,7 @@
}
.ve-ui-debugBar-transactions > ol > li {
- border-left: #f3f3f3 2em solid;
+ border-left: 2em solid #f8f9fa;
}
.ve-ui-debugBar-transactions ol ol {
diff --git a/src/ui/styles/ve.ui.MobileContext.css
b/src/ui/styles/ve.ui.MobileContext.css
index 03ac49d..5d9cd33 100644
--- a/src/ui/styles/ve.ui.MobileContext.css
+++ b/src/ui/styles/ve.ui.MobileContext.css
@@ -9,7 +9,7 @@
}
.ve-ui-mobileContext-menu {
- border-top: 1px solid #ddd;
+ border-top: 1px solid #c8ccd1;
}
.ve-ui-mobileContext .ve-ui-linearContextItem-label {
@@ -32,7 +32,7 @@
}
.ve-ui-mobileContext .ve-ui-linearContextItem-actions .oo-ui-buttonWidget {
- border-left: 1px solid #ddd;
+ border-left: 1px solid #c8ccd1;
vertical-align: top;
}
diff --git a/src/ui/styles/widgets/ve.ui.ContextOptionWidget.css
b/src/ui/styles/widgets/ve.ui.ContextOptionWidget.css
index bf1fd9a..67f63c9 100644
--- a/src/ui/styles/widgets/ve.ui.ContextOptionWidget.css
+++ b/src/ui/styles/widgets/ve.ui.ContextOptionWidget.css
@@ -9,7 +9,7 @@
}
.ve-ui-contextOptionWidget .oo-ui-labelElement-label {
- color: #666;
+ color: #54595d;
/* Size required to match menu and inspector widths */
max-width: 19.4em;
text-overflow: ellipsis;
diff --git a/src/ui/styles/widgets/ve.ui.LanguageSearchWidget.css
b/src/ui/styles/widgets/ve.ui.LanguageSearchWidget.css
index 2af8e39..214e8b5 100644
--- a/src/ui/styles/widgets/ve.ui.LanguageSearchWidget.css
+++ b/src/ui/styles/widgets/ve.ui.LanguageSearchWidget.css
@@ -7,8 +7,8 @@
/* ve.ui.LanguageResultWidget */
.ve-ui-languageResultWidget-otherMatch {
+ color: #72777d;
float: right;
- color: #777;
}
.ve-ui-languageResultWidget .oo-ui-labelWidget {
--
To view, visit https://gerrit.wikimedia.org/r/382732
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I210d861460c5b8ca57f51e20494217251378e2cd
Gerrit-PatchSet: 1
Gerrit-Project: VisualEditor/VisualEditor
Gerrit-Branch: master
Gerrit-Owner: VolkerE <[email protected]>
Gerrit-Reviewer: Jforrester <[email protected]>
Gerrit-Reviewer: jenkins-bot <>
_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits