Issue #2352857 by thamas: Fixed Improve the display of trigger icon (pencil).

8.0.x
webchick 2014-10-09 11:38:58 -07:00
parent 3dfd41664d
commit b983fad158
1 changed files with 8 additions and 7 deletions

View File

@ -31,25 +31,26 @@
.contextual .trigger {
background-attachment: scroll;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 13px;
border: none;
border-radius: 14px;
box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
float: right; /* LTR */
margin: 0;
overflow: hidden;
padding: 0 2px;
position: relative;
right: 2px; /* LTR */
right: 6px; /* LTR */
cursor: pointer;
}
[dir="rtl"] .contextual .trigger {
float: left;
right: auto;
left: 2px;
left: 6px;
}
.contextual.open .trigger {
border: 1px solid #ddd;
border-bottom-color: transparent;
border-radius: 13px 13px 0 0;
border-radius: 14px 14px 0 0;
box-shadow: none;
z-index: 2;
}
@ -68,7 +69,7 @@
margin: 0;
padding: 0.25em 0;
position: relative;
right: 2px; /* LTR */
right: 6px; /* LTR */
text-align: left; /* LTR */
top: -1px;
white-space: nowrap;
@ -76,7 +77,7 @@
[dir="rtl"] .contextual-region .contextual .contextual-links {
border-radius: 0 4px 4px 4px;
float: left;
left: 2px;
left: 6px;
right: auto;
text-align: right;
}