Advertisement
Guest User

Untitled

a guest
May 28th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. .textBox{
  2.  
  3. height: 22px;
  4. background: white;
  5. color: black;
  6. font-style: normal;
  7. text-align: center;
  8. font-size: 12px;
  9. vertical-align: middle;
  10.  
  11. -moz-border-radius: 6px;
  12. -webkit-border-radius: 6px;
  13. -khtml-border-radius: 6px;
  14. border-radius: 6px;
  15. }
  16. .textBoxDisabled{
  17.  
  18. height: 22px;
  19. background: grey;
  20. color: black;
  21. font-style: normal;
  22. text-align: center;
  23. font-size: 12px;
  24. vertical-align: middle;
  25.  
  26. -moz-border-radius: 6px;
  27. -webkit-border-radius: 6px;
  28. -khtml-border-radius: 6px;
  29. border-radius: 6px;
  30. }
  31. .textBoxLcnValueChange{
  32.  
  33. height: 22px;
  34. font-style: normal;
  35. text-align: center;
  36. background: rgb(255,227,126);
  37. background: -moz-linear-gradient(top, rgb(255,227,126) 0%, rgb(231,171,21) 100%);
  38. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(255,227,126)), color-stop(100%,rgb(231,171,21)));
  39. background: -webkit-linear-gradient(top, rgb(255,227,126) 0%,rgb(231,171,21) 100%);
  40. background: -o-linear-gradient(top, rgb(255,227,126) 0%,rgb(231,171,21) 100%);
  41. background: -ms-linear-gradient(top, rgb(255,227,126) 0%,rgb(231,171,21) 100%);
  42. background: linear-gradient(to bottom, rgb(255,227,126) 0%,rgb(231,171,21) 100%);
  43. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe37e', endColorstr='#e7ab15',GradientType=0 );
  44. color: black;
  45. text-align: center;
  46. font-size: 12px;
  47. vertical-align: middle;
  48.  
  49. -moz-border-radius: 6px;
  50. -webkit-border-radius: 6px;
  51. -khtml-border-radius: 6px;
  52. border-radius: 6px;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement