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.
 
 

59 regels
1.3 KiB

  1. const customTabsStyle = {
  2. cardTitle: {
  3. float: "left",
  4. padding: "10px 10px 10px 0px",
  5. lineHeight: "24px"
  6. },
  7. cardTitleRTL: {
  8. float: "right",
  9. padding: "10px 0px 10px 10px !important"
  10. },
  11. displayNone: {
  12. display: "none !important"
  13. },
  14. tabsRoot: {
  15. minHeight: "unset !important"
  16. },
  17. tabRootButton: {
  18. minHeight: "unset !important",
  19. minWidth: "unset !important",
  20. width: "unset !important",
  21. height: "unset !important",
  22. maxWidth: "unset !important",
  23. maxHeight: "unset !important",
  24. padding: "10px 15px",
  25. borderRadius: "3px",
  26. lineHeight: "24px",
  27. border: "0 !important",
  28. color: "#fff !important",
  29. marginLeft: "4px",
  30. fontWeight: "500",
  31. fontSize: "12px",
  32. "&:last-child": {
  33. marginLeft: "0px"
  34. }
  35. },
  36. tabSelected: {
  37. backgroundColor: "rgba(255, 255, 255, 0.2)",
  38. transition: "0.2s background-color 0.1s"
  39. },
  40. tabWrapper: {
  41. display: "inline-block",
  42. minHeight: "unset !important",
  43. minWidth: "unset !important",
  44. width: "unset !important",
  45. height: "unset !important",
  46. maxWidth: "unset !important",
  47. maxHeight: "unset !important",
  48. "& > svg": {
  49. verticalAlign: "middle",
  50. margin: "-1.55px 5px 0 0 !important"
  51. },
  52. "&,& *": {
  53. letterSpacing: "normal !important"
  54. }
  55. }
  56. };
  57. export default customTabsStyle;