Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue #2617224 by Wim Leers: Move around/fix some documentation.
This commit is contained in:
parent
4afb23bbd3
commit
7784f4c23d
929 changed files with 19798 additions and 5304 deletions
74
core/themes/stable/css/quickedit/quickedit.icons.theme.css
Normal file
74
core/themes/stable/css/quickedit/quickedit.icons.theme.css
Normal file
|
@ -0,0 +1,74 @@
|
|||
/**
|
||||
* @file
|
||||
* Icons for Quick Edit module.
|
||||
*/
|
||||
|
||||
.quickedit .icon {
|
||||
min-height: 1em;
|
||||
min-width: 2.5em;
|
||||
position: relative;
|
||||
}
|
||||
.quickedit .icon.icon-only {
|
||||
text-indent: -9999px;
|
||||
}
|
||||
.quickedit .icon.icon-end {
|
||||
padding-right: 2.5em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .quickedit .icon.icon-end {
|
||||
padding-left: 2.5em;
|
||||
padding-right: 0;
|
||||
}
|
||||
.quickedit .icon:before {
|
||||
background-attachment: scroll;
|
||||
background-color: transparent;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
content: '';
|
||||
display: block;
|
||||
height: 100%;
|
||||
left: 0; /* LTR */
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
[dir="rtl"] .quickedit .icon:before {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
.quickedit .icon-end:before {
|
||||
left: auto; /* LTR */
|
||||
right: 0.5em; /* LTR */
|
||||
width: 18px;
|
||||
}
|
||||
[dir="rtl"] .quickedit .icon-end:before {
|
||||
left: 0.5em;
|
||||
right: auto;
|
||||
}
|
||||
.quickedit button.icon {
|
||||
font-size: 1em;
|
||||
}
|
||||
.quickedit .icon-pencil {
|
||||
margin-left: .5em;
|
||||
padding-left: 1.5em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Images.
|
||||
*/
|
||||
.quickedit .icon-close:before {
|
||||
background-image: url(../../images/core/icons/787878/ex.svg);
|
||||
height: 12px;
|
||||
top: 10px;
|
||||
}
|
||||
.quickedit .icon-close:hover:before,
|
||||
.quickedit .icon-close:active:before {
|
||||
background-image: url(../../images/core/icons/000000/ex.svg);
|
||||
}
|
||||
.quickedit .icon-throbber:before {
|
||||
background-image: url(../../images/quickedit/icon-throbber.gif);
|
||||
}
|
||||
.quickedit .icon-pencil:before {
|
||||
background-image: url(../../images/core/icons/5181c6/pencil.svg);
|
||||
background-position: left center;
|
||||
background-size: 1.3em;
|
||||
}
|
Reference in a new issue