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