New theme base for SuiteDesk
This commit is contained in:
parent
c1bbd9d6f5
commit
8cf3c56044
137 changed files with 12866 additions and 8 deletions
25
themes/zen/STARTERKIT/css/block-editing.css
Normal file
25
themes/zen/STARTERKIT/css/block-editing.css
Normal file
|
@ -0,0 +1,25 @@
|
|||
/**
|
||||
* @file
|
||||
* Zen's rollover edit links for blocks.
|
||||
*/
|
||||
|
||||
|
||||
div.block.with-block-editing {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div.block.with-block-editing div.edit {
|
||||
display: none;
|
||||
position: absolute;
|
||||
right: 0; /* LTR */
|
||||
top: 0;
|
||||
z-index: 40;
|
||||
border: 1px solid #eee;
|
||||
padding: 0 2px;
|
||||
font-size: 0.75em;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
div.block.with-block-editing:hover div.edit {
|
||||
display: block;
|
||||
}
|
Reference in a new issue