rules.ui.seven.css

JQuery Rules UI stylesheet fix for the Seven theme.

File

ui/rules.ui.seven.css

View source
  1. /**
  2. * @file
  3. * JQuery Rules UI stylesheet fix for the Seven theme.
  4. */
  5. .ui-button {
  6. border: 1px solid #cccccc;
  7. background: #e6e6e6;
  8. }
  9. .ui-state-hover,
  10. .ui-state-focus {
  11. border: 1px solid #bbbbbb;
  12. }
  13. .ui-button.ui-state-active {
  14. border: 1px solid #777777;
  15. font-weight: bold;
  16. }
  17. /**
  18. * Corner radius
  19. */
  20. .ui-corner-tl {
  21. -moz-border-radius-topleft: 4px; /* LTR */
  22. -webkit-border-top-left-radius: 4px; /* LTR */
  23. border-top-left-radius: 4px; /* LTR */
  24. }
  25. .ui-corner-tr {
  26. -moz-border-radius-topright: 4px; /* LTR */
  27. -webkit-border-top-right-radius: 4px; /* LTR */
  28. border-top-right-radius: 4px; /* LTR */
  29. }
  30. .ui-corner-bl {
  31. -moz-border-radius-bottomleft: 4px; /* LTR */
  32. -webkit-border-bottom-left-radius: 4px; /* LTR */
  33. border-bottom-left-radius: 4px; /* LTR */
  34. }
  35. .ui-corner-br {
  36. -moz-border-radius-bottomright: 4px; /* LTR */
  37. -webkit-border-bottom-right-radius: 4px; /* LTR */
  38. border-bottom-right-radius: 4px; /* LTR */
  39. }
  40. .ui-corner-top {
  41. -moz-border-radius-topleft: 4px;
  42. -moz-border-radius-topright: 4px;
  43. -webkit-border-top-left-radius: 4px;
  44. -webkit-border-top-right-radius: 4px;
  45. border-top-left-radius: 4px;
  46. border-top-right-radius: 4px;
  47. }
  48. .ui-corner-bottom {
  49. -moz-border-radius-bottomleft: 4px;
  50. -moz-border-radius-bottomright: 4px;
  51. -webkit-border-bottom-left-radius: 4px;
  52. -webkit-border-bottom-right-radius: 4px;
  53. border-bottom-left-radius: 4px;
  54. border-bottom-right-radius: 4px;
  55. }
  56. .ui-corner-right {
  57. -moz-border-radius-bottomright: 4px; /* LTR */
  58. -moz-border-radius-topright: 4px; /* LTR */
  59. -webkit-border-bottom-right-radius: 4px; /* LTR */
  60. -webkit-border-top-right-radius: 4px; /* LTR */
  61. border-bottom-right-radius: 4px; /* LTR */
  62. border-top-right-radius: 4px; /* LTR */
  63. }
  64. .ui-corner-left {
  65. -moz-border-radius-bottomleft: 4px; /* LTR */
  66. -moz-border-radius-topleft: 4px; /* LTR */
  67. -webkit-border-bottom-left-radius: 4px; /* LTR */
  68. -webkit-border-top-left-radius: 4px; /* LTR */
  69. border-bottom-left-radius: 4px; /* LTR */
  70. border-top-left-radius: 4px; /* LTR */
  71. }
  72. .ui-corner-all {
  73. -moz-border-radius: 4px;
  74. -webkit-border-radius: 4px;
  75. border-radius: 4px;
  76. }
  77. /**
  78. * Fix the position of the core-autocomplete popup when shown in the settings
  79. * fieldset.
  80. */
  81. .form-item-settings-tags {
  82. position: relative;
  83. }