Dashboard sipadu mbip
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

bars-pill.css 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .br-theme-bars-pill .br-widget {
  2. white-space: nowrap;
  3. }
  4. .br-theme-bars-pill .br-widget a {
  5. padding: 7px 15px;
  6. background-color: #bef5e8;
  7. color: #50E3C2;
  8. text-decoration: none;
  9. font-size: 13px;
  10. line-height: 3;
  11. text-align: center;
  12. font-weight: 400;
  13. }
  14. .br-theme-bars-pill .br-widget a:first-child {
  15. -webkit-border-top-left-radius: 999px;
  16. -webkit-border-bottom-left-radius: 999px;
  17. -moz-border-radius-topleft: 999px;
  18. -moz-border-radius-bottomleft: 999px;
  19. border-top-left-radius: 999px;
  20. border-bottom-left-radius: 999px;
  21. }
  22. .br-theme-bars-pill .br-widget a:last-child {
  23. -webkit-border-top-right-radius: 999px;
  24. -webkit-border-bottom-right-radius: 999px;
  25. -moz-border-radius-topright: 999px;
  26. -moz-border-radius-bottomright: 999px;
  27. border-top-right-radius: 999px;
  28. border-bottom-right-radius: 999px;
  29. }
  30. .br-theme-bars-pill .br-widget a.br-active,
  31. .br-theme-bars-pill .br-widget a.br-selected {
  32. background-color: #50E3C2;
  33. color: white;
  34. }
  35. .br-theme-bars-pill .br-readonly a {
  36. cursor: default;
  37. }
  38. .br-theme-bars-pill .br-readonly a.br-active,
  39. .br-theme-bars-pill .br-readonly a.br-selected {
  40. background-color: #7cead1;
  41. }
  42. @media print {
  43. .br-theme-bars-pill .br-widget a {
  44. border: 1px solid #b3b3b3;
  45. border-left: none;
  46. background: white;
  47. -webkit-box-sizing: border-box;
  48. -moz-box-sizing: border-box;
  49. box-sizing: border-box;
  50. }
  51. .br-theme-bars-pill .br-widget a.br-active,
  52. .br-theme-bars-pill .br-widget a.br-selected {
  53. border: 1px solid black;
  54. border-left: none;
  55. background: white;
  56. color: black;
  57. }
  58. .br-theme-bars-pill .br-widget a:first-child {
  59. border-left: 1px solid black;
  60. }
  61. }