edit.module.css

/**
 * Animations.
 */
.edit-animate-invisible {
  opacity: 0;
}

.edit-animate-fast {
-webkit-transition: all .2s ease;
   -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
     -o-transition: all .2s ease;
        transition: all .2s ease;
}

.edit-animate-default {
  -webkit-transition: all .4s ease;
     -moz-transition: all .4s ease;
      -ms-transition: all .4s ease;
       -o-transition: all .4s ease;
          transition: all .4s ease;
}

.edit-animate-slow {
-webkit-transition: all .6s ease;
   -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
     -o-transition: all .6s ease;
        transition: all .6s ease;
}

.edit-animate-delay-veryfast {
  -webkit-transition-delay: .05s;
     -moz-transition-delay: .05s;
      -ms-transition-delay: .05s;
       -o-transition-delay: .05s;
          transition-delay: .05s;
}

.edit-animate-delay-fast {
  -webkit-transition-delay: .2s;
     -moz-transition-delay: .2s;
      -ms-transition-delay: .2s;
       -o-transition-delay: .2s;
          transition-delay: .2s;
}

.edit-animate-disable-width {
  -webkit-transition: width 0s;
     -moz-transition: width 0s;
      -ms-transition: width 0s;
       -o-transition: width 0s;
          transition: width 0s;
}

.edit-animate-only-visibility {
  -webkit-transition: opacity .2s ease;
     -moz-transition: opacity .2s ease;
      -ms-transition: opacity .2s ease;
       -o-transition: opacity .2s ease;
          transition: opacity .2s ease;
}

.edit-animate-only-background-and-padding {
  -webkit-transition: background, padding .2s ease;
     -moz-transition: background, padding .2s ease;
      -ms-transition: background, padding .2s ease;
       -o-transition: background, padding .2s ease;
          transition: background, padding .2s ease;
}




/**
 * Candidate editables + editables being edited.
 *
 * Note: every class is prefixed with "edit-" to prevent collisions with modules
 * or themes. In IPE-specific DOM subtrees, this is not necessary.
 */

/* Editable. */
.edit-editable {
  z-index: 300;
  position: relative;
}
.edit-editable:focus {
  outline: none;
}
.edit-field.edit-editable,
.edit-field .edit-editable {
  box-shadow: 0 0 1px 1px #4d9de9;
}

/* Highlighted (hovered) editable. */
.edit-editable.edit-highlighted {
  z-index: 305;
  min-width: 200px;
}
.edit-field.edit-editable.edit-highlighted,
.edit-form.edit-editable.edit-highlighted,
.edit-field .edit-editable.edit-highlighted {
  box-shadow: 0 0 1px 1px #0199ff, 0 0 3px 3px rgba(153, 153, 153, .5);
}
.edit-field.edit-editable.edit-highlighted.edit-validation-error,
.edit-form.edit-editable.edit-highlighted.edit-validation-error,
.edit-field .edit-editable.edit-highlighted.edit-validation-error {
  box-shadow: 0 0 1px 1px red, 0 0 3px 3px rgba(153, 153, 153, .5);
}
.edit-form.edit-editable .form-item .error {
  border: 1px solid #eea0a0;
}


/* Editing (focused) editable. */
.edit-form.edit-editable.edit-editing,
.edit-field .edit-editable.edit-editing {
  /* In the latest design, there's no special styling when editing as opposed to
   * just hovering.
   * This will be necessary again for http://drupal.org/node/1844220.
   */
}




/**
 * Edit mode: modal.
 */
#edit_modal {
  z-index: 350;
  position: fixed;
  top: 40%;
  left: 40%;
  box-shadow: 3px 3px 5px #333;
  background-color: white;
  border: 1px solid #0199ff;
  font-family: 'Droid sans', 'Lucida Grande', sans-serif;
}

#edit_modal .main {
  font-size: 130%;
  margin: 25px;
  padding-left: 40px;
  background: transparent url('../images/attention.png') no-repeat;
}

#edit_modal .actions {
  border-top: 1px solid #ddd;
  padding: 3px inherit;
  text-align: right;
  background: #f5f5f5;
}




/**
 * Edit mode: type=direct.
 */
.edit-validation-errors {
  z-index: 300;
  position: relative;
}

.edit-validation-errors .messages.error {
  position: absolute;
  top: 6px;
  left: -5px;
  margin: 0;
  border: none;
  box-shadow: 0 0 1px 1px red, 0 0 3px 3px rgba(153, 153, 153, .5);
  background-color: white;
}




/**
 * Edit mode: type=form.
 */
#edit_backstage {
  display: none;
}

.edit-form {
  position: absolute;
  z-index: 300;
  box-shadow: 0 0 30px 4px #4f4f4f;
  max-width: 35em;
  background-color: white;
}

.edit-form .placeholder {
  min-height: 22px;
}

/* Default form styling overrides. */
.edit-form form { padding: 1em; }
.edit-form .form-item { margin: 0; }
.edit-form .form-wrapper { margin: .5em; }
.edit-form .form-wrapper .form-wrapper { margin: inherit; }
.edit-form .form-actions { display: none; }
.edit-form input { max-width: 100%; }




/**
 * Edit mode: toolbars
 */

/* Trick: wrap statically positioned elements in relatively positioned element
   without changing its location. This allows us to absolutely position the
   toolbar.
*/
.edit-toolbar-container,
.edit-form-container {
  position: relative;
  padding: 0;
  border: 0;
  margin: 0;
  vertical-align: baseline;
  z-index: 310;
}
.edit-toolbar-container {
  -webkit-user-select: none;
   -khtml-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
}

.edit-toolbar-heightfaker {
  height: auto;
  position: absolute;
  bottom: 1px;
  box-shadow: 0 0 1px 1px #0199ff, 0 0 3px 3px rgba(153, 153, 153, .5);
  background: #fff;
  display: none;
}
.edit-highlighted .edit-toolbar-heightfaker {
  display: block;
}

/* The toolbar; these are not necessarily visible. */
.edit-toolbar {
  position: relative;
  height: 100%;
  font-family: 'Droid sans', 'Lucida Grande', sans-serif;
}
.edit-toolbar-heightfaker {
  clip: rect(-1000px, 1000px, auto, -1000px); /* Remove bottom box-shadow. */
}
/* Exception: when the toolbar is instructed to be "full width". */
.edit-toolbar-fullwidth .edit-toolbar-heightfaker {
  width: 100%;
  clip: auto;
}


/* The toolbar contains toolgroups; these are visible. */
.edit-toolgroup {
  float: left; /* LTR */
}

/* Info toolgroup. */
.edit-toolgroup.info {
  float: left; /* LTR */
  font-weight: bolder;
  padding: 0 5px;
  background: #fff url('../images/throbber.gif') no-repeat -60px 60px;
}
.edit-toolgroup.info.loading {
  padding-right: 35px;
  background-position: 90% 50%;
}

/* Operations toolgroup. */
.edit-toolgroup.ops {
  float: right; /* LTR */
  margin-left: 5px;
}

.edit-toolgroup.wysiwyg-floated {
  float: right;
}
.edit-toolgroup.wysiwyg-main {
  clear: left;
  width: 100%;
  padding-left: 0;
}



/**
 * Edit mode: buttons (in both modal and toolbar).
 */
#edit_modal button,
.edit-toolbar button {
  float: left; /* LTR */
  display: block;
  height: 29px;
  min-width: 29px;
  padding: 3px 6px 6px 6px;
  margin: 4px 5px 1px 0;
  border: 1px solid #fff;
  border-radius: 3px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  cursor: pointer;
}
#edit_modal button {
  float: none;
  display: inline-block;
}

/* Button with icons. */
#edit_modal button span,
.edit-toolbar button span {
  width: 22px;
  height: 19px;
  display: block;
  float: left;
}
.edit-toolbar span.close {
  background: url('../images/close.png') no-repeat 3px 2px;
  text-indent: -999em;
  direction: ltr;
}

.edit-toolbar button.blank-button {
  color: black;
  background-color: #fff;
  font-weight: bolder;
}

#edit_modal button.blue-button,
.edit-toolbar button.blue-button {
  color: white;
  background-image: -webkit-linear-gradient(top, #6fc2f2 0%, #4e97c0 100%);
  background-image: -moz-linear-gradient(top, #6fc2f2 0%, #4e97c0 100%);
  background-image: linear-gradient(top, #6fc2f2 0%, #4e97c0 100%);
  border-radius: 5px;
}

#edit_modal button.gray-button,
.edit-toolbar button.gray-button {
  color: #666;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #ccc 100%);
  background-image: -moz-linear-gradient(top, #f5f5f5 0%, #ccc 100%);
  background-image: linear-gradient(top, #f5f5f5 0%, #ccc 100%);
  border-radius: 5px;
}

#edit_modal button.blue-button:hover,
.edit-toolbar button.blue-button:hover,
#edit_modal button.blue-button:active,
.edit-toolbar button.blue-button:active {
  border: 1px solid #55a5d3;
  box-shadow: 0 2px 1px rgba(0,0,0,0.2);
}

#edit_modal button.gray-button:hover,
.edit-toolbar button.gray-button:hover,
#edit_modal button.gray-button:active,
.edit-toolbar button.gray-button:active {
  border: 1px solid #cdcdcd;
  box-shadow: 0 2px 1px rgba(0,0,0,0.1);
}

File

drupal/core/modules/edit/css/edit.module.css
View source
  1. /**
  2. * Animations.
  3. */
  4. .edit-animate-invisible {
  5. opacity: 0;
  6. }
  7. .edit-animate-fast {
  8. -webkit-transition: all .2s ease;
  9. -moz-transition: all .2s ease;
  10. -ms-transition: all .2s ease;
  11. -o-transition: all .2s ease;
  12. transition: all .2s ease;
  13. }
  14. .edit-animate-default {
  15. -webkit-transition: all .4s ease;
  16. -moz-transition: all .4s ease;
  17. -ms-transition: all .4s ease;
  18. -o-transition: all .4s ease;
  19. transition: all .4s ease;
  20. }
  21. .edit-animate-slow {
  22. -webkit-transition: all .6s ease;
  23. -moz-transition: all .6s ease;
  24. -ms-transition: all .6s ease;
  25. -o-transition: all .6s ease;
  26. transition: all .6s ease;
  27. }
  28. .edit-animate-delay-veryfast {
  29. -webkit-transition-delay: .05s;
  30. -moz-transition-delay: .05s;
  31. -ms-transition-delay: .05s;
  32. -o-transition-delay: .05s;
  33. transition-delay: .05s;
  34. }
  35. .edit-animate-delay-fast {
  36. -webkit-transition-delay: .2s;
  37. -moz-transition-delay: .2s;
  38. -ms-transition-delay: .2s;
  39. -o-transition-delay: .2s;
  40. transition-delay: .2s;
  41. }
  42. .edit-animate-disable-width {
  43. -webkit-transition: width 0s;
  44. -moz-transition: width 0s;
  45. -ms-transition: width 0s;
  46. -o-transition: width 0s;
  47. transition: width 0s;
  48. }
  49. .edit-animate-only-visibility {
  50. -webkit-transition: opacity .2s ease;
  51. -moz-transition: opacity .2s ease;
  52. -ms-transition: opacity .2s ease;
  53. -o-transition: opacity .2s ease;
  54. transition: opacity .2s ease;
  55. }
  56. .edit-animate-only-background-and-padding {
  57. -webkit-transition: background, padding .2s ease;
  58. -moz-transition: background, padding .2s ease;
  59. -ms-transition: background, padding .2s ease;
  60. -o-transition: background, padding .2s ease;
  61. transition: background, padding .2s ease;
  62. }
  63. /**
  64. * Candidate editables + editables being edited.
  65. *
  66. * Note: every class is prefixed with "edit-" to prevent collisions with modules
  67. * or themes. In IPE-specific DOM subtrees, this is not necessary.
  68. */
  69. /* Editable. */
  70. .edit-editable {
  71. z-index: 300;
  72. position: relative;
  73. }
  74. .edit-editable:focus {
  75. outline: none;
  76. }
  77. .edit-field.edit-editable,
  78. .edit-field .edit-editable {
  79. box-shadow: 0 0 1px 1px #4d9de9;
  80. }
  81. /* Highlighted (hovered) editable. */
  82. .edit-editable.edit-highlighted {
  83. z-index: 305;
  84. min-width: 200px;
  85. }
  86. .edit-field.edit-editable.edit-highlighted,
  87. .edit-form.edit-editable.edit-highlighted,
  88. .edit-field .edit-editable.edit-highlighted {
  89. box-shadow: 0 0 1px 1px #0199ff, 0 0 3px 3px rgba(153, 153, 153, .5);
  90. }
  91. .edit-field.edit-editable.edit-highlighted.edit-validation-error,
  92. .edit-form.edit-editable.edit-highlighted.edit-validation-error,
  93. .edit-field .edit-editable.edit-highlighted.edit-validation-error {
  94. box-shadow: 0 0 1px 1px red, 0 0 3px 3px rgba(153, 153, 153, .5);
  95. }
  96. .edit-form.edit-editable .form-item .error {
  97. border: 1px solid #eea0a0;
  98. }
  99. /* Editing (focused) editable. */
  100. .edit-form.edit-editable.edit-editing,
  101. .edit-field .edit-editable.edit-editing {
  102. /* In the latest design, there's no special styling when editing as opposed to
  103. * just hovering.
  104. * This will be necessary again for http://drupal.org/node/1844220.
  105. */
  106. }
  107. /**
  108. * Edit mode: modal.
  109. */
  110. #edit_modal {
  111. z-index: 350;
  112. position: fixed;
  113. top: 40%;
  114. left: 40%;
  115. box-shadow: 3px 3px 5px #333;
  116. background-color: white;
  117. border: 1px solid #0199ff;
  118. font-family: 'Droid sans', 'Lucida Grande', sans-serif;
  119. }
  120. #edit_modal .main {
  121. font-size: 130%;
  122. margin: 25px;
  123. padding-left: 40px;
  124. background: transparent url('../images/attention.png') no-repeat;
  125. }
  126. #edit_modal .actions {
  127. border-top: 1px solid #ddd;
  128. padding: 3px inherit;
  129. text-align: right;
  130. background: #f5f5f5;
  131. }
  132. /**
  133. * Edit mode: type=direct.
  134. */
  135. .edit-validation-errors {
  136. z-index: 300;
  137. position: relative;
  138. }
  139. .edit-validation-errors .messages.error {
  140. position: absolute;
  141. top: 6px;
  142. left: -5px;
  143. margin: 0;
  144. border: none;
  145. box-shadow: 0 0 1px 1px red, 0 0 3px 3px rgba(153, 153, 153, .5);
  146. background-color: white;
  147. }
  148. /**
  149. * Edit mode: type=form.
  150. */
  151. #edit_backstage {
  152. display: none;
  153. }
  154. .edit-form {
  155. position: absolute;
  156. z-index: 300;
  157. box-shadow: 0 0 30px 4px #4f4f4f;
  158. max-width: 35em;
  159. background-color: white;
  160. }
  161. .edit-form .placeholder {
  162. min-height: 22px;
  163. }
  164. /* Default form styling overrides. */
  165. .edit-form form { padding: 1em; }
  166. .edit-form .form-item { margin: 0; }
  167. .edit-form .form-wrapper { margin: .5em; }
  168. .edit-form .form-wrapper .form-wrapper { margin: inherit; }
  169. .edit-form .form-actions { display: none; }
  170. .edit-form input { max-width: 100%; }
  171. /**
  172. * Edit mode: toolbars
  173. */
  174. /* Trick: wrap statically positioned elements in relatively positioned element
  175. without changing its location. This allows us to absolutely position the
  176. toolbar.
  177. */
  178. .edit-toolbar-container,
  179. .edit-form-container {
  180. position: relative;
  181. padding: 0;
  182. border: 0;
  183. margin: 0;
  184. vertical-align: baseline;
  185. z-index: 310;
  186. }
  187. .edit-toolbar-container {
  188. -webkit-user-select: none;
  189. -khtml-user-select: none;
  190. -moz-user-select: none;
  191. -ms-user-select: none;
  192. -o-user-select: none;
  193. user-select: none;
  194. }
  195. .edit-toolbar-heightfaker {
  196. height: auto;
  197. position: absolute;
  198. bottom: 1px;
  199. box-shadow: 0 0 1px 1px #0199ff, 0 0 3px 3px rgba(153, 153, 153, .5);
  200. background: #fff;
  201. display: none;
  202. }
  203. .edit-highlighted .edit-toolbar-heightfaker {
  204. display: block;
  205. }
  206. /* The toolbar; these are not necessarily visible. */
  207. .edit-toolbar {
  208. position: relative;
  209. height: 100%;
  210. font-family: 'Droid sans', 'Lucida Grande', sans-serif;
  211. }
  212. .edit-toolbar-heightfaker {
  213. clip: rect(-1000px, 1000px, auto, -1000px); /* Remove bottom box-shadow. */
  214. }
  215. /* Exception: when the toolbar is instructed to be "full width". */
  216. .edit-toolbar-fullwidth .edit-toolbar-heightfaker {
  217. width: 100%;
  218. clip: auto;
  219. }
  220. /* The toolbar contains toolgroups; these are visible. */
  221. .edit-toolgroup {
  222. float: left; /* LTR */
  223. }
  224. /* Info toolgroup. */
  225. .edit-toolgroup.info {
  226. float: left; /* LTR */
  227. font-weight: bolder;
  228. padding: 0 5px;
  229. background: #fff url('../images/throbber.gif') no-repeat -60px 60px;
  230. }
  231. .edit-toolgroup.info.loading {
  232. padding-right: 35px;
  233. background-position: 90% 50%;
  234. }
  235. /* Operations toolgroup. */
  236. .edit-toolgroup.ops {
  237. float: right; /* LTR */
  238. margin-left: 5px;
  239. }
  240. .edit-toolgroup.wysiwyg-floated {
  241. float: right;
  242. }
  243. .edit-toolgroup.wysiwyg-main {
  244. clear: left;
  245. width: 100%;
  246. padding-left: 0;
  247. }
  248. /**
  249. * Edit mode: buttons (in both modal and toolbar).
  250. */
  251. #edit_modal button,
  252. .edit-toolbar button {
  253. float: left; /* LTR */
  254. display: block;
  255. height: 29px;
  256. min-width: 29px;
  257. padding: 3px 6px 6px 6px;
  258. margin: 4px 5px 1px 0;
  259. border: 1px solid #fff;
  260. border-radius: 3px;
  261. color: white;
  262. text-decoration: none;
  263. font-size: 13px;
  264. cursor: pointer;
  265. }
  266. #edit_modal button {
  267. float: none;
  268. display: inline-block;
  269. }
  270. /* Button with icons. */
  271. #edit_modal button span,
  272. .edit-toolbar button span {
  273. width: 22px;
  274. height: 19px;
  275. display: block;
  276. float: left;
  277. }
  278. .edit-toolbar span.close {
  279. background: url('../images/close.png') no-repeat 3px 2px;
  280. text-indent: -999em;
  281. direction: ltr;
  282. }
  283. .edit-toolbar button.blank-button {
  284. color: black;
  285. background-color: #fff;
  286. font-weight: bolder;
  287. }
  288. #edit_modal button.blue-button,
  289. .edit-toolbar button.blue-button {
  290. color: white;
  291. background-image: -webkit-linear-gradient(top, #6fc2f2 0%, #4e97c0 100%);
  292. background-image: -moz-linear-gradient(top, #6fc2f2 0%, #4e97c0 100%);
  293. background-image: linear-gradient(top, #6fc2f2 0%, #4e97c0 100%);
  294. border-radius: 5px;
  295. }
  296. #edit_modal button.gray-button,
  297. .edit-toolbar button.gray-button {
  298. color: #666;
  299. background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #ccc 100%);
  300. background-image: -moz-linear-gradient(top, #f5f5f5 0%, #ccc 100%);
  301. background-image: linear-gradient(top, #f5f5f5 0%, #ccc 100%);
  302. border-radius: 5px;
  303. }
  304. #edit_modal button.blue-button:hover,
  305. .edit-toolbar button.blue-button:hover,
  306. #edit_modal button.blue-button:active,
  307. .edit-toolbar button.blue-button:active {
  308. border: 1px solid #55a5d3;
  309. box-shadow: 0 2px 1px rgba(0,0,0,0.2);
  310. }
  311. #edit_modal button.gray-button:hover,
  312. .edit-toolbar button.gray-button:hover,
  313. #edit_modal button.gray-button:active,
  314. .edit-toolbar button.gray-button:active {
  315. border: 1px solid #cdcdcd;
  316. box-shadow: 0 2px 1px rgba(0,0,0,0.1);
  317. }