mediawiki-extensions-Visual.../modules/ve-mw/init/styles/ve.init.mw.DesktopArticleTarget.init-monobook.css
James D. Forrester 8c7ed92288 Update VE core submodule to master (eeaf1e2)
New changes:
c54a48a build: Fix watch list (csslint -> stylelint)
58ba3d9 Add stylelint rules for @-rules
3f8c75a Stylelint: Add rule for unsupported browser features
3b96ff3 Fix minimum Opera version (15 -> 12)
9a1110b Stylelint: No ID selectors
9800bb8 build: Remove remaining references to csslint
b6ab14a stylelint: Re-enable features by names
6cc1f3c Move stylelint to npm
1d15fa0 build: Bump stylelint version to v0.2.0
ccc1724 stylelint: Use the preset rather than extending

Change-Id: I22fa8098592338a5e912aba9ad21131b21d9c0ea
2016-05-18 07:06:53 +01:00

26 lines
1 KiB
CSS

/*!
* VisualEditor MediaWiki DesktopArticleTarget Monobook init styles.
*
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
.ve-init-mw-desktopArticleTarget-progress {
border: 1px solid #ccc;
background: #fff;
border-radius: 0.25em;
box-shadow: 0 0.1em 0.5em rgba( 0, 0, 0, 0.15 );
}
.ve-init-mw-desktopArticleTarget-progress-bar {
border-right: 1px solid #ccc;
background: #cde7f4;
/* stylelint-disable no-unsupported-browser-features */
filter: progid:DXImageTransform.Microsoft.gradient( GradientType=0, startColorstr='#eaf4fa', endColorstr='#b0d9ee' );
background-image: -webkit-gradient( linear, right top, right bottom, color-stop( 0%, #eaf4fa ), color-stop( 100%, #b0d9ee ) );
background-image: -webkit-linear-gradient( top, #eaf4fa 0%, #b0d9ee 100% );
background-image: -moz-linear-gradient( top, #eaf4fa 0%, #b0d9ee 100% );
background-image: linear-gradient( to bottom, #eaf4fa 0%, #b0d9ee 100% );
/* stylelint-enable no-unsupported-browser-features */
}