2016-02-01 22:28:13 +00:00
|
|
|
|
/*!
|
2017-09-26 20:28:20 +00:00
|
|
|
|
* OOjs UI v0.23.2
|
2016-02-01 22:28:13 +00:00
|
|
|
|
* https://www.mediawiki.org/wiki/OOjs_UI
|
|
|
|
|
|
*
|
2017-01-04 00:27:21 +00:00
|
|
|
|
* Copyright 2011–2017 OOjs UI Team and other contributors.
|
2016-02-01 22:28:13 +00:00
|
|
|
|
* Released under the MIT license
|
|
|
|
|
|
* http://oojs.mit-license.org
|
|
|
|
|
|
*
|
2017-09-26 20:28:20 +00:00
|
|
|
|
* Date: 2017-09-26T20:18:47Z
|
2016-02-01 22:28:13 +00:00
|
|
|
|
*/
|
2017-08-01 20:32:18 +00:00
|
|
|
|
/**
|
|
|
|
|
|
* WikimediaUI Base v0.9.2
|
|
|
|
|
|
* Wikimedia Foundation user interface base variables
|
|
|
|
|
|
*/
|
|
|
|
|
|
/* Colors */
|
|
|
|
|
|
/* Positioning */
|
|
|
|
|
|
/* Box Model properties */
|
|
|
|
|
|
/* Max Widths */
|
|
|
|
|
|
/* Typography incl. print properties */
|
|
|
|
|
|
/* Other Properties */
|
|
|
|
|
|
/* Animation & Transition */
|
2016-09-13 18:48:04 +00:00
|
|
|
|
.oo-ui-tool.oo-ui-widget-enabled {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
-webkit-transition: background-color 100ms;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
-moz-transition: background-color 100ms;
|
|
|
|
|
|
transition: background-color 100ms;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-tool.oo-ui-widget-enabled .oo-ui-iconElement-icon {
|
|
|
|
|
|
opacity: 0.87;
|
|
|
|
|
|
-webkit-transition: opacity 100ms;
|
|
|
|
|
|
-moz-transition: opacity 100ms;
|
|
|
|
|
|
transition: opacity 100ms;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-tool.oo-ui-widget-enabled .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
-webkit-transition: color 100ms;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
-moz-transition: color 100ms;
|
|
|
|
|
|
transition: color 100ms;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-tool.oo-ui-widget-enabled:hover .oo-ui-iconElement-icon {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-tool.oo-ui-widget-disabled .oo-ui-iconElement-icon {
|
|
|
|
|
|
opacity: 0.34;
|
|
|
|
|
|
}
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-popupTool .oo-ui-popupWidget-popup,
|
|
|
|
|
|
.oo-ui-popupTool .oo-ui-popupWidget-anchor {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
z-index: 4;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolGroupTool > .oo-ui-toolGroup {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
border-right: 0;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolGroupTool > .oo-ui-popupToolGroup > .oo-ui-popupToolGroup-handle .oo-ui-iconElement-icon {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
height: 2.5em;
|
|
|
|
|
|
width: 1.875em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolGroup {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
border-right: 1px solid #c8ccd1;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolGroup-empty {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: none;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolGroup .oo-ui-tool-link {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
cursor: pointer;
|
2016-05-31 21:55:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolGroup.oo-ui-widget-disabled .oo-ui-tool-link,
|
|
|
|
|
|
.oo-ui-toolGroup .oo-ui-widget-disabled > .oo-ui-tool-link {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
outline: 0;
|
|
|
|
|
|
cursor: default;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-09-13 18:48:04 +00:00
|
|
|
|
.oo-ui-toolbar-actions .oo-ui-toolGroup {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
border-right: 0;
|
|
|
|
|
|
border-left: 1px solid #c8ccd1;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-toolGroup + .oo-ui-toolGroup {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin-left: 0;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-toolGroup.oo-ui-widget-disabled .oo-ui-indicatorElement-indicator,
|
|
|
|
|
|
.oo-ui-toolGroup.oo-ui-widget-disabled .oo-ui-iconElement-icon {
|
|
|
|
|
|
opacity: 0.34 !important;
|
|
|
|
|
|
}
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
vertical-align: top;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool > .oo-ui-tool-link {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: block;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool > .oo-ui-tool-link .oo-ui-tool-accel {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: none;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool.oo-ui-iconElement > .oo-ui-tool-link .oo-ui-iconElement-icon {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
|
vertical-align: top;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool.oo-ui-iconElement > .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: none;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool.oo-ui-iconElement.oo-ui-tool-with-label > .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: inline;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool > .oo-ui-tool-link {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
height: 1.875em;
|
|
|
|
|
|
padding: 0.625em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool > .oo-ui-tool-link .oo-ui-iconElement-icon {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
height: 1.875em;
|
|
|
|
|
|
width: 1.875em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool > .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
line-height: 2.1;
|
|
|
|
|
|
padding: 0 0.4em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup.oo-ui-widget-enabled > .oo-ui-toolGroup-tools > .oo-ui-tool.oo-ui-widget-enabled:hover {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: #eaecf0;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-barToolGroup.oo-ui-widget-enabled > .oo-ui-toolGroup-tools > .oo-ui-tool.oo-ui-widget-enabled > .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
color: #222;
|
|
|
|
|
|
-webkit-transition: color 100ms;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
-moz-transition: color 100ms;
|
|
|
|
|
|
transition: color 100ms;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-08-16 21:22:47 +00:00
|
|
|
|
.oo-ui-barToolGroup.oo-ui-widget-enabled > .oo-ui-toolGroup-tools > .oo-ui-tool.oo-ui-widget-enabled.oo-ui-tool-active {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: #eaf3ff;
|
|
|
|
|
|
box-shadow: inset 0 0.07em 0.07em 0 rgba(0, 0, 0, 0.07);
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-08-16 21:22:47 +00:00
|
|
|
|
.oo-ui-barToolGroup.oo-ui-widget-enabled > .oo-ui-toolGroup-tools > .oo-ui-tool.oo-ui-widget-enabled.oo-ui-tool-active:hover {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: rgba(41, 98, 204, 0.1);
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-09-13 18:48:04 +00:00
|
|
|
|
.oo-ui-barToolGroup.oo-ui-widget-enabled > .oo-ui-toolGroup-tools > .oo-ui-tool.oo-ui-widget-enabled.oo-ui-tool-active > .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
color: #36c;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-08-16 21:22:47 +00:00
|
|
|
|
.oo-ui-barToolGroup.oo-ui-widget-enabled .oo-ui-tool.oo-ui-widget-disabled > .oo-ui-tool-link .oo-ui-tool-title,
|
|
|
|
|
|
.oo-ui-barToolGroup.oo-ui-widget-disabled .oo-ui-tool > .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
color: #72777d;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
|
height: 3.125em;
|
|
|
|
|
|
min-width: 2em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup-handle {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: block;
|
|
|
|
|
|
cursor: pointer;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup-handle .oo-ui-indicatorElement-indicator,
|
|
|
|
|
|
.oo-ui-popupToolGroup-handle .oo-ui-iconElement-icon {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
position: absolute;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-disabled .oo-ui-popupToolGroup-handle {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
outline: 0;
|
|
|
|
|
|
cursor: default;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-toolGroup-tools {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: none;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
z-index: 4;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup-active.oo-ui-widget-enabled > .oo-ui-toolGroup-tools {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: block;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup-left > .oo-ui-toolGroup-tools {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
left: 0;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup-right > .oo-ui-toolGroup-tools {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
right: 0;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: table;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
white-space: nowrap;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link .oo-ui-iconElement-icon,
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link .oo-ui-tool-accel,
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: table-cell;
|
|
|
|
|
|
vertical-align: middle;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link .oo-ui-tool-accel {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
text-align: right;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-05-31 21:55:25 +00:00
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link .oo-ui-tool-accel:not( :empty ) {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
padding-left: 3em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-popupToolGroup {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
min-width: 1.875em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-iconElement {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
min-width: 3.125em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-popupToolGroup.oo-ui-iconElement {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
min-width: 2.5em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-indicatorElement.oo-ui-iconElement {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
min-width: 4.375em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-popupToolGroup.oo-ui-indicatorElement.oo-ui-iconElement {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
min-width: 3.75em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-labelElement .oo-ui-popupToolGroup-handle .oo-ui-labelElement-label {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
line-height: 2.6;
|
|
|
|
|
|
margin: 0 1em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-popupToolGroup.oo-ui-labelElement .oo-ui-popupToolGroup-handle .oo-ui-labelElement-label {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin: 0 0.5em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-labelElement.oo-ui-iconElement .oo-ui-popupToolGroup-handle .oo-ui-labelElement-label {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin-left: 3em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-popupToolGroup.oo-ui-labelElement.oo-ui-iconElement .oo-ui-popupToolGroup-handle .oo-ui-labelElement-label {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin-left: 2.5em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-labelElement.oo-ui-indicatorElement .oo-ui-popupToolGroup-handle .oo-ui-labelElement-label {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin-right: 2em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-popupToolGroup.oo-ui-labelElement.oo-ui-indicatorElement .oo-ui-popupToolGroup-handle .oo-ui-labelElement-label {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin-right: 1.75em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-labelElement:not( .oo-ui-indicatorElement ) .oo-ui-popupToolGroup-handle .oo-ui-labelElement-label {
|
|
|
|
|
|
margin: 0 0.5em;
|
|
|
|
|
|
}
|
2016-09-13 18:48:04 +00:00
|
|
|
|
.oo-ui-popupToolGroup-header {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
line-height: 2.6;
|
|
|
|
|
|
margin: 0 0.6em;
|
|
|
|
|
|
font-weight: bold;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-popupToolGroup-handle {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
height: 2.5em;
|
2017-09-20 00:58:44 +00:00
|
|
|
|
padding: 0.3125em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup-handle .oo-ui-indicatorElement-indicator {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
top: 0;
|
|
|
|
|
|
right: 0;
|
2017-03-28 23:25:58 +00:00
|
|
|
|
width: 0.9375em;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
margin: 0 0.5em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-popupToolGroup-handle .oo-ui-indicatorElement-indicator {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
right: -0.3125em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup-handle .oo-ui-iconElement-icon {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
width: 1.875em;
|
|
|
|
|
|
height: 2.6em;
|
|
|
|
|
|
margin: 0.25em;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0.3125em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-popupToolGroup-handle .oo-ui-iconElement-icon {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
left: 0;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup:not( .oo-ui-labelElement ):not( .oo-ui-iconElement ) .oo-ui-indicatorElement-indicator {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-toolGroup-tools {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin: 0 -1px;
|
|
|
|
|
|
border: 1px solid #c8ccd1;
|
|
|
|
|
|
background-color: #fff;
|
2017-01-18 00:12:07 +00:00
|
|
|
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
|
2016-11-09 01:22:51 +00:00
|
|
|
|
min-width: 16em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-02-01 23:30:46 +00:00
|
|
|
|
.oo-ui-toolbar-position-top .oo-ui-popupToolGroup .oo-ui-toolGroup-tools {
|
|
|
|
|
|
top: 3.125em;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-position-bottom .oo-ui-popupToolGroup .oo-ui-toolGroup-tools {
|
|
|
|
|
|
bottom: 3.125em;
|
|
|
|
|
|
}
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
padding: 0.4em 0.625em;
|
|
|
|
|
|
-webkit-box-sizing: border-box;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
|
box-sizing: border-box;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link .oo-ui-iconElement-icon {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
height: 2.5em;
|
|
|
|
|
|
width: 1.875em;
|
|
|
|
|
|
min-width: 1.875em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
padding-left: 0.5em;
|
|
|
|
|
|
color: #222;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup .oo-ui-tool-link .oo-ui-tool-accel {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
color: #72777d;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled.oo-ui-popupToolGroup-active {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
box-shadow: inset 0 0.07em 0.07em 0 rgba(0, 0, 0, 0.07);
|
|
|
|
|
|
background-color: #eaecf0;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled.oo-ui-popupToolGroup-active .oo-ui-tool-active.oo-ui-widget-enabled .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
color: #36c;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
2017-04-11 23:41:59 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle {
|
|
|
|
|
|
-webkit-transition: background-color 100ms, box-shadow 100ms;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
-moz-transition: background-color 100ms, box-shadow 100ms;
|
|
|
|
|
|
transition: background-color 100ms, box-shadow 100ms;
|
2017-04-11 23:41:59 +00:00
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle .oo-ui-iconElement-icon,
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle .oo-ui-indicatorElement-indicator {
|
|
|
|
|
|
opacity: 0.87;
|
|
|
|
|
|
-webkit-transition: opacity 100ms;
|
|
|
|
|
|
-moz-transition: opacity 100ms;
|
|
|
|
|
|
transition: opacity 100ms;
|
|
|
|
|
|
}
|
2017-04-11 23:41:59 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: #eaecf0;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
2017-04-11 23:41:59 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:active {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: #eaf3ff;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover .oo-ui-iconElement-icon,
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:active .oo-ui-iconElement-icon,
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:hover .oo-ui-indicatorElement-indicator,
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-widget-enabled > .oo-ui-popupToolGroup-handle:active .oo-ui-indicatorElement-indicator {
|
|
|
|
|
|
opacity: 1;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-progressive > .oo-ui-popupToolGroup-handle,
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-constructive > .oo-ui-popupToolGroup-handle {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
background-color: #36c;
|
|
|
|
|
|
border-color: #36c;
|
|
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-progressive > .oo-ui-popupToolGroup-handle:hover,
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-constructive > .oo-ui-popupToolGroup-handle:hover {
|
|
|
|
|
|
background-color: #447ff5;
|
|
|
|
|
|
border-color: #447ff5;
|
|
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-progressive > .oo-ui-popupToolGroup-handle:active,
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-constructive > .oo-ui-popupToolGroup-handle:active,
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-progressive > .oo-ui-popupToolGroup-handle:active:focus,
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-constructive > .oo-ui-popupToolGroup-handle:active:focus,
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-pressed > .oo-ui-popupToolGroup-handle,
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-constructive.oo-ui-buttonElement-pressed > .oo-ui-popupToolGroup-handle,
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-progressive.oo-ui-buttonElement-active > .oo-ui-popupToolGroup-handle,
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-constructive.oo-ui-buttonElement-active > .oo-ui-popupToolGroup-handle,
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-progressive.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle,
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-constructive.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
background-color: #2a4b8d;
|
|
|
|
|
|
border-color: #2a4b8d;
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-progressive > .oo-ui-popupToolGroup-handle:focus,
|
2017-04-18 23:41:08 +00:00
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-constructive > .oo-ui-popupToolGroup-handle:focus {
|
|
|
|
|
|
border-color: #36c;
|
|
|
|
|
|
box-shadow: inset 0 0 0 1px #36c, inset 0 0 0 2px #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-destructive > .oo-ui-popupToolGroup-handle {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
background-color: #d33;
|
|
|
|
|
|
border-color: #d33;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-destructive > .oo-ui-popupToolGroup-handle:hover {
|
|
|
|
|
|
background-color: #ff4242;
|
|
|
|
|
|
border-color: #ff4242;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-destructive > .oo-ui-popupToolGroup-handle:active,
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-destructive > .oo-ui-popupToolGroup-handle:active:focus,
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-destructive.oo-ui-buttonElement-pressed > .oo-ui-popupToolGroup-handle,
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-destructive.oo-ui-buttonElement-active > .oo-ui-popupToolGroup-handle,
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-destructive.oo-ui-popupToolGroup-active > .oo-ui-popupToolGroup-handle {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
background-color: #b32424;
|
|
|
|
|
|
border-color: #b32424;
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-popupToolGroup.oo-ui-flaggedElement-destructive > .oo-ui-popupToolGroup-handle:focus {
|
|
|
|
|
|
border-color: #d33;
|
|
|
|
|
|
box-shadow: inset 0 0 0 1px #d33, inset 0 0 0 2px #fff;
|
|
|
|
|
|
}
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-listToolGroup .oo-ui-tool {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: block;
|
|
|
|
|
|
-webkit-box-sizing: border-box;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
|
|
box-sizing: border-box;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-listToolGroup .oo-ui-tool.oo-ui-widget-enabled:hover {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: #eaecf0;
|
2017-09-20 00:58:44 +00:00
|
|
|
|
color: #000;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-listToolGroup .oo-ui-tool-active.oo-ui-widget-enabled {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: #eaf3ff;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-listToolGroup .oo-ui-tool-active.oo-ui-widget-enabled:first-child {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
box-shadow: inset 0 0.07em 0.07em 0 rgba(0, 0, 0, 0.07);
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-listToolGroup .oo-ui-tool-active.oo-ui-widget-enabled:hover {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: rgba(41, 98, 204, 0.1);
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-listToolGroup .oo-ui-tool-active.oo-ui-widget-enabled .oo-ui-tool-link .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
color: #36c;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-08-16 21:22:47 +00:00
|
|
|
|
.oo-ui-listToolGroup.oo-ui-widget-disabled,
|
2016-11-09 01:22:51 +00:00
|
|
|
|
.oo-ui-listToolGroup .oo-ui-tool.oo-ui-widget-disabled .oo-ui-tool-title {
|
|
|
|
|
|
color: #72777d;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-menuToolGroup .oo-ui-tool {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: block;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-menuToolGroup .oo-ui-popupToolGroup-handle {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
min-width: 10em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-menuToolGroup .oo-ui-popupToolGroup-handle {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
min-width: 8.125em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-menuToolGroup .oo-ui-tool-link .oo-ui-iconElement-icon {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-image: none;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-menuToolGroup .oo-ui-tool-active .oo-ui-tool-link .oo-ui-iconElement-icon {
|
2017-05-31 19:26:04 +00:00
|
|
|
|
background-image: url('themes/wikimediaui/images/icons/check-progressive.png');
|
|
|
|
|
|
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/check-progressive.svg');
|
|
|
|
|
|
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/check-progressive.svg');
|
|
|
|
|
|
background-image: -o-linear-gradient(transparent, transparent), url('themes/wikimediaui/images/icons/check-progressive.png');
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-size: contain;
|
|
|
|
|
|
background-position: center center;
|
|
|
|
|
|
background-repeat: no-repeat;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-menuToolGroup .oo-ui-tool.oo-ui-widget-enabled:hover {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: rgba(41, 98, 204, 0.1);
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-menuToolGroup .oo-ui-tool-name-menuTool.oo-ui-tool-active {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: #eaf3ff;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-08-16 21:22:47 +00:00
|
|
|
|
.oo-ui-menuToolGroup.oo-ui-widget-disabled,
|
|
|
|
|
|
.oo-ui-menuToolGroup .oo-ui-tool.oo-ui-widget-disabled .oo-ui-tool-title {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
color: #72777d;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
clear: both;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-bar {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
line-height: 1;
|
|
|
|
|
|
position: relative;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-09-13 18:48:04 +00:00
|
|
|
|
.oo-ui-toolbar-tools,
|
2017-02-08 00:50:58 +00:00
|
|
|
|
.oo-ui-toolbar-actions {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
|
|
-webkit-user-select: none;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
|
user-select: none;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-tools {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: inline;
|
|
|
|
|
|
white-space: nowrap;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-09-20 00:58:44 +00:00
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-toolbar-tools,
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-toolbar-tools .oo-ui-tool {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
white-space: normal;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2016-09-13 18:48:04 +00:00
|
|
|
|
.oo-ui-toolbar-actions {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
float: right;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-actions .oo-ui-toolbar {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
display: inline-block;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-actions .oo-ui-popupWidget {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
-webkit-touch-callout: default;
|
|
|
|
|
|
-webkit-user-select: all;
|
2017-04-18 23:41:08 +00:00
|
|
|
|
-moz-user-select: all;
|
|
|
|
|
|
-ms-user-select: all;
|
|
|
|
|
|
user-select: all;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-bar {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
color: #222;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-02-08 00:50:58 +00:00
|
|
|
|
.oo-ui-toolbar-position-top > .oo-ui-toolbar-bar {
|
2017-02-01 23:30:46 +00:00
|
|
|
|
border-bottom: 1px solid #c8ccd1;
|
2017-02-08 00:50:58 +00:00
|
|
|
|
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
|
2017-02-01 23:30:46 +00:00
|
|
|
|
}
|
2017-02-08 00:50:58 +00:00
|
|
|
|
.oo-ui-toolbar-position-bottom > .oo-ui-toolbar-bar {
|
2017-02-01 23:30:46 +00:00
|
|
|
|
border-top: 1px solid #c8ccd1;
|
2017-02-08 00:50:58 +00:00
|
|
|
|
box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.1);
|
2017-02-01 23:30:46 +00:00
|
|
|
|
}
|
2016-02-01 22:28:13 +00:00
|
|
|
|
.oo-ui-toolbar-bar .oo-ui-toolbar-bar {
|
2017-02-01 23:30:46 +00:00
|
|
|
|
border: 0;
|
2016-11-09 01:22:51 +00:00
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
box-shadow: none;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-04-11 23:41:59 +00:00
|
|
|
|
.oo-ui-toolbar-narrow .oo-ui-toolbar-bar:after {
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 3.125em;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 0;
|
|
|
|
|
|
border-bottom: 1px solid #c8ccd1;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonElement.oo-ui-labelElement,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonElement.oo-ui-indicatorElement,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonGroupWidget > .oo-ui-buttonElement.oo-ui-labelElement,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonGroupWidget > .oo-ui-buttonElement.oo-ui-indicatorElement {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin: 0;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-04-11 23:41:59 +00:00
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonElement.oo-ui-labelElement > .oo-ui-buttonElement-button,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonElement.oo-ui-indicatorElement > .oo-ui-buttonElement-button,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonGroupWidget > .oo-ui-buttonElement.oo-ui-labelElement > .oo-ui-buttonElement-button,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonGroupWidget > .oo-ui-buttonElement.oo-ui-indicatorElement > .oo-ui-buttonElement-button {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
border: 0;
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
padding: 0 0.3125em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-04-11 23:41:59 +00:00
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonElement.oo-ui-labelElement > .oo-ui-buttonElement-button > .oo-ui-labelElement-label,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonElement.oo-ui-indicatorElement > .oo-ui-buttonElement-button > .oo-ui-labelElement-label,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonGroupWidget > .oo-ui-buttonElement.oo-ui-labelElement > .oo-ui-buttonElement-button > .oo-ui-labelElement-label,
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonGroupWidget > .oo-ui-buttonElement.oo-ui-indicatorElement > .oo-ui-buttonElement-button > .oo-ui-labelElement-label {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
margin: 0 1em;
|
|
|
|
|
|
line-height: 3.125em;
|
2016-02-01 22:28:13 +00:00
|
|
|
|
}
|
2017-04-11 23:41:59 +00:00
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonGroupWidget > .oo-ui-buttonElement.oo-ui-indicatorElement:not( .oo-ui-labelElement ) > .oo-ui-buttonElement-button > .oo-ui-labelElement-label {
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-buttonGroupWidget > .oo-ui-buttonElement.oo-ui-indicatorElement:not( .oo-ui-labelElement ) > .oo-ui-buttonElement-button > .oo-ui-indicatorElement-indicator {
|
|
|
|
|
|
margin: 0 0.3125em;
|
|
|
|
|
|
}
|
2016-09-13 18:48:04 +00:00
|
|
|
|
.oo-ui-toolbar-actions > .oo-ui-toolbar:not( :last-child ) {
|
2016-11-09 01:22:51 +00:00
|
|
|
|
border-right: 1px solid #c8ccd1;
|
2016-09-13 18:48:04 +00:00
|
|
|
|
}
|