2009-10-17 05:50:29 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contextual links regions.
|
|
|
|
*/
|
|
|
|
.contextual-links-region {
|
|
|
|
outline: none;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.contextual-links-region-active {
|
2009-12-01 13:27:27 +00:00
|
|
|
outline: #999 dashed 1px;
|
2009-10-17 05:50:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contextual links.
|
|
|
|
*/
|
2009-12-01 13:27:27 +00:00
|
|
|
div.contextual-links-wrapper {
|
|
|
|
display: none;
|
2009-10-17 05:50:29 +00:00
|
|
|
font-size: 90%;
|
2009-12-01 13:27:27 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 5px;
|
|
|
|
top: 0px;
|
|
|
|
z-index: 999;
|
|
|
|
}
|
|
|
|
html.js div.contextual-links-wrapper {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
a.contextual-links-trigger {
|
2009-12-13 13:00:32 +00:00
|
|
|
background: transparent url(images/gear-select.png) no-repeat top left;
|
2009-12-01 13:27:27 +00:00
|
|
|
display: none;
|
2009-12-13 13:00:32 +00:00
|
|
|
height: 18px;
|
|
|
|
margin: 2px 1px 0 1px;
|
2009-12-01 13:27:27 +00:00
|
|
|
outline: none;
|
|
|
|
text-indent: 34px;
|
2009-12-13 13:00:32 +00:00
|
|
|
width: 28px;
|
2009-12-01 13:27:27 +00:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
a.contextual-links-trigger:hover,
|
2009-12-13 13:00:32 +00:00
|
|
|
div.contextual-links-active a.contextual-links-trigger {
|
|
|
|
background-position: 0 -18px;
|
|
|
|
}
|
2009-12-01 13:27:27 +00:00
|
|
|
div.contextual-links-active a.contextual-links-trigger {
|
|
|
|
background-color: #fff;
|
2009-12-13 13:00:32 +00:00
|
|
|
border: #ccc 1px solid;
|
|
|
|
border-bottom: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 1px 0 0 0;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
border-radius-topleft: 4px;
|
|
|
|
border-radius-topright: 4px;
|
|
|
|
-moz-border-radius-topleft: 4px;
|
|
|
|
-moz-border-radius-topright: 4px;
|
|
|
|
-webkit-border-radius-topleft: 4px;
|
|
|
|
-webkit-border-radius-topright: 4px;
|
2009-12-01 13:27:27 +00:00
|
|
|
}
|
|
|
|
div.contextual-links-wrapper ul.contextual-links {
|
2009-12-13 13:00:32 +00:00
|
|
|
background-color: #fff;
|
|
|
|
border: #ccc 1px solid;
|
2009-12-01 13:27:27 +00:00
|
|
|
display: none;
|
2009-10-17 05:50:29 +00:00
|
|
|
margin: 0;
|
2009-12-13 13:00:32 +00:00
|
|
|
padding: 0.25em 0;
|
2009-12-01 13:27:27 +00:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
2009-12-13 13:00:32 +00:00
|
|
|
top: 19px;
|
2009-12-01 13:27:27 +00:00
|
|
|
white-space: nowrap;
|
2009-12-13 13:00:32 +00:00
|
|
|
-moz-border-radius: 4px;
|
|
|
|
-moz-border-radius-topright: 0;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
-webkit-border-radius-topright: 0;
|
|
|
|
border-radius: 4px;
|
|
|
|
border-radius-topright: 0;
|
2009-12-01 13:27:27 +00:00
|
|
|
}
|
|
|
|
.contextual-links-region:hover a.contextual-links-trigger,
|
|
|
|
div.contextual-links-active a.contextual-links-trigger,
|
|
|
|
div.contextual-links-active ul.contextual-links {
|
2009-12-13 13:00:32 +00:00
|
|
|
display: block;
|
2009-10-17 05:50:29 +00:00
|
|
|
}
|
|
|
|
ul.contextual-links li {
|
|
|
|
line-height: 100%;
|
|
|
|
list-style: none;
|
2009-12-01 13:27:27 +00:00
|
|
|
list-style-image: none;
|
2009-10-17 05:50:29 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2009-12-01 13:27:27 +00:00
|
|
|
div.contextual-links-wrapper a {
|
2009-10-17 05:50:29 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2009-12-01 13:27:27 +00:00
|
|
|
ul.contextual-links li a {
|
2009-12-13 13:00:32 +00:00
|
|
|
color: #333;
|
2009-12-01 13:27:27 +00:00
|
|
|
display: block;
|
2009-12-13 13:00:32 +00:00
|
|
|
margin: 0.25em 0;
|
|
|
|
padding: 0.25em;
|
2009-12-01 13:27:27 +00:00
|
|
|
}
|
|
|
|
ul.contextual-links li a:hover {
|
2009-12-13 13:00:32 +00:00
|
|
|
background-color: #bfdcee;
|
2009-12-01 13:27:27 +00:00
|
|
|
}
|