mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
8b8b8e3620
* Add i18n javascript source file and Transifex configuration * Add npm requirements, React + entwine wrapper for CMS * Overload LeftAndMain::getSchema... methods in extension so they can be used * Refactor CSS to only the content review button
18 lines
415 B
SCSS
18 lines
415 B
SCSS
// The bell button, shows up next to the major actions (save, publish, etc) when
|
|
// viewing a page in the CMS
|
|
.content-review__button {
|
|
background: url("images/icon-bell.png") center center no-repeat;
|
|
background-position: 0 0;
|
|
display: inline-block;
|
|
height: 20px;
|
|
margin: 6px 4px 0 12px;
|
|
padding: 0;
|
|
text-indent: -9999px;
|
|
width: 20px;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background-position: 0 -20px;
|
|
}
|
|
}
|