WdatePicker.css 682 B

12345678910111213141516171819202122
  1. .Wdate{
  2. background:#fff url(clock.png) no-repeat right;
  3. display: block;
  4. width: 100%;
  5. height: 34px;
  6. padding: 6px 12px;
  7. font-size: 14px;
  8. line-height: 1.42857143;
  9. color: #555;
  10. border: 1px solid #ccc;
  11. border-radius: 4px;
  12. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  13. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  14. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  15. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  16. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  17. }
  18. .WdateFmtErr{
  19. font-weight:bold;
  20. color:red;
  21. }