mediawiki-extensions-Visual.../modules/oojs-ui/styles/OO.ui.css
Trevor Parscal d2dfb9ac4f Split oojs-ui from ve.ui
* Move and rename generic parts of ve.ui to OO.ui
* We now have a UI test suite because ve.Element (outside ve.ui)
  is now part of oojs-ui, so it needs a test suite.
* Added to the MW test run (just like we do for unicodejs).
* Updated csslint config (also added ve-mw and syntaxhighlight
  which were missing).

oojs-ui still depends on the TriggerRegistry in VE, this is addressed
in a follow-up commit.

Change-Id: Iec147155c1ddf20b73a4d15d87b8742207032312
2013-10-28 22:40:08 -07:00

74 lines
1.2 KiB
CSS

/*!
* ObjectOriented UserInterface styles.
*
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/*csslint vendor-prefix:false */
/* Textures */
.oo-ui-texture-pending {
/* @embed */
background-image: url(images/textures/pending.gif);
}
.oo-ui-texture-transparency {
/* @embed */
background-image: url(images/textures/transparency.png);
}
/* Animation */
@-webkit-keyframes oo-ui-zoom-in {
from { -webkit-transform: scale(0.5); }
to { -webkit-transform: scale(1); }
}
@-moz-keyframes oo-ui-zoom-in {
from { -moz-transform: scale(0.5); }
to { -moz-transform: scale(1); }
}
@-o-keyframes oo-ui-zoom-in {
from { -o-transform: scale(0.5); }
to { -o-transform: scale(1); }
}
@keyframes oo-ui-zoom-in {
from { transform: scale(0.5); }
to { transform: scale(1); }
}
@-webkit-keyframes oo-ui-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@-moz-keyframes oo-ui-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@-o-keyframes oo-ui-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes oo-ui-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
/* RTL Definitions */
/* @noflip */
.oo-ui-rtl {
direction: rtl;
}
/* @noflip */
.oo-ui-ltr {
direction: ltr;
}