You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.7 KiB

  1. .openerp .search_filter {
  2. background: #F0F0F0;
  3. width: 100%;
  4. border: 1px solid #999;
  5. background: -moz-linear-gradient(top, #F0F0F0 0%, #C0C0C0 100%);
  6. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F0F0F0), color-stop(100%,#C0C0C0));
  7. }
  8. .openerp .oe_filter_label {
  9. background: #F0F0F0;
  10. width: 3.35%;
  11. border: 1px solid #999;
  12. background: -moz-linear-gradient(top, #F0F0F0 0%, #C0C0C0 100%);
  13. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F0F0F0), color-stop(100%,#C0C0C0));
  14. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F0F0F0', endColorstr='#C0C0C0',GradientType=0 );
  15. }
  16. .openerp .oe_filter_label:hover {
  17. background: #F0F0F0;
  18. background: -moz-linear-gradient(top, #F0F0F0 0%, #A1A7CE 100%);
  19. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F0F0F0), color-stop(100%,#A1A7CE));
  20. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F0F0F0', endColorstr='#A1A7CE',GradientType=0 );
  21. }
  22. .openerp .oe_filter_label:active {
  23. background: #aaa;
  24. background: -moz-linear-gradient(top, #999999 0%, #EEEEEE 100%);
  25. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999), color-stop(100%,#EEEEEE));
  26. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#EEEEEE',GradientType=0 );
  27. }
  28. .openerp .oe_filter_label.enabled {
  29. background: #aaa;
  30. filter: none;
  31. -moz-box-shadow: none;
  32. -webkit-box-shadow: none;
  33. -o-box-shadow: none;
  34. box-shadow: none;
  35. }
  36. .openerp .oe_filter_label {
  37. font-weight: bold;
  38. text-transform: uppercase;
  39. text-shadow: #EEE 0 1px 0;
  40. color: #4C4C4C;
  41. white-space: nowrap;
  42. margin: 0;
  43. }