2011-08-19 02:32:31 +02:00
|
|
|
/**
|
|
|
|
* Style custom to the CMSMain admin interface. CMSMain extends the built in
|
|
|
|
* sapphire admin section styles. As much as possible we want to use those
|
|
|
|
* built in styles. If anything in this file can be implemented in a generic
|
|
|
|
* way then it should be include in the admin scss files.
|
|
|
|
*
|
|
|
|
* @package cms
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** ------------------------------------------------------------------
|
|
|
|
* Page History Section.
|
|
|
|
* ----------------------------------------------------------------- */
|
|
|
|
#cms-page-history-versions {
|
|
|
|
tr {
|
|
|
|
&.loading {
|
|
|
|
color: #999;
|
|
|
|
|
|
|
|
td {
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2011-09-29 02:10:47 +02:00
|
|
|
}
|
|
|
|
|
2011-10-29 20:46:00 +02:00
|
|
|
.CMSPageHistoryController {
|
|
|
|
ins {
|
|
|
|
background-color: #DFD;
|
|
|
|
padding: 2px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
del {
|
|
|
|
background-color: #FDD;
|
|
|
|
padding: 2px;
|
|
|
|
color: darken(#FDD, 30%);
|
|
|
|
}
|
|
|
|
}
|