You are here

sticky-edit-actions.css in Sticky Edit Actions 7

.my-sticky-element {
  background-color: white;
  border-bottom: 1px #ccc solid;
  border-top: 1px #ccc solid;
  bottom: -8px;
  box-shadow: 0 0, 0px 4px 2px -2px rgba(167, 167, 167, 0.55);
  margin-bottom: 20px;
  margin-top: -11px;
  padding-top: 11px;
  position: fixed;
  width: 100%;
}

.my-sticky-element.unstuck {
  border-bottom: none;
  border-top: none;
  box-shadow: none;
  position: static;
}

File

css/sticky-edit-actions.css
View source
  1. .my-sticky-element {
  2. background-color: white;
  3. border-bottom: 1px #ccc solid;
  4. border-top: 1px #ccc solid;
  5. bottom: -8px;
  6. box-shadow: 0 0, 0px 4px 2px -2px rgba(167, 167, 167, 0.55);
  7. margin-bottom: 20px;
  8. margin-top: -11px;
  9. padding-top: 11px;
  10. position: fixed;
  11. width: 100%;
  12. }
  13. .my-sticky-element.unstuck {
  14. border-bottom: none;
  15. border-top: none;
  16. box-shadow: none;
  17. position: static;
  18. }