You are here

jeditable.css in jEditable inline content editing 7

Same filename and directory in other branches
  1. 6.2 jeditable.css
  2. 6 jeditable.css
.jeditable {
	cursor:pointer;
	display:block;
	padding:0.3em;
  margin:-0.3em;
	transition:background-color 0.2s ;
	-webkit-transition:background-color 0.2s;
  -moz-transition:background-color 0.2s;
}

.jeditable:hover {
	background:#f6f6f2;;
}

.jeditable,
.jeditable * {
		box-sizing:border-box;
}

.jeditable button {
	height:30px;
	cursor:pointer;
}

.jeditable-textfield form input {
	min-height:30px;
	max-height:30px;
	min-width:300px;
	max-width:300px;
}

.jeditable-textarea form textarea {
	min-height:300px;
	max-height:300px;
	resize:none;
}

.jeditable-select form select {
	min-height:30px;
}

File

jeditable.css
View source
  1. .jeditable {
  2. cursor:pointer;
  3. display:block;
  4. padding:0.3em;
  5. margin:-0.3em;
  6. transition:background-color 0.2s ;
  7. -webkit-transition:background-color 0.2s;
  8. -moz-transition:background-color 0.2s;
  9. }
  10. .jeditable:hover {
  11. background:#f6f6f2;;
  12. }
  13. .jeditable,
  14. .jeditable * {
  15. box-sizing:border-box;
  16. }
  17. .jeditable button {
  18. height:30px;
  19. cursor:pointer;
  20. }
  21. .jeditable-textfield form input {
  22. min-height:30px;
  23. max-height:30px;
  24. min-width:300px;
  25. max-width:300px;
  26. }
  27. .jeditable-textarea form textarea {
  28. min-height:300px;
  29. max-height:300px;
  30. resize:none;
  31. }
  32. .jeditable-select form select {
  33. min-height:30px;
  34. }