rules.ui.seven.css
JQuery Rules UI stylesheet fix for the Seven theme.
File
View source
- /**
- * @file
- * JQuery Rules UI stylesheet fix for the Seven theme.
- */
-
- .ui-button {
- border: 1px solid #cccccc;
- background: #e6e6e6;
- }
-
- .ui-state-hover,
- .ui-state-focus {
- border: 1px solid #bbbbbb;
- }
-
- .ui-button.ui-state-active {
- border: 1px solid #777777;
- font-weight: bold;
- }
-
- /**
- * Corner radius
- */
- .ui-corner-tl {
- -moz-border-radius-topleft: 4px; /* LTR */
- -webkit-border-top-left-radius: 4px; /* LTR */
- border-top-left-radius: 4px; /* LTR */
- }
-
- .ui-corner-tr {
- -moz-border-radius-topright: 4px; /* LTR */
- -webkit-border-top-right-radius: 4px; /* LTR */
- border-top-right-radius: 4px; /* LTR */
- }
-
- .ui-corner-bl {
- -moz-border-radius-bottomleft: 4px; /* LTR */
- -webkit-border-bottom-left-radius: 4px; /* LTR */
- border-bottom-left-radius: 4px; /* LTR */
- }
-
- .ui-corner-br {
- -moz-border-radius-bottomright: 4px; /* LTR */
- -webkit-border-bottom-right-radius: 4px; /* LTR */
- border-bottom-right-radius: 4px; /* LTR */
- }
-
- .ui-corner-top {
- -moz-border-radius-topleft: 4px;
- -moz-border-radius-topright: 4px;
- -webkit-border-top-left-radius: 4px;
- -webkit-border-top-right-radius: 4px;
- border-top-left-radius: 4px;
- border-top-right-radius: 4px;
- }
-
- .ui-corner-bottom {
- -moz-border-radius-bottomleft: 4px;
- -moz-border-radius-bottomright: 4px;
- -webkit-border-bottom-left-radius: 4px;
- -webkit-border-bottom-right-radius: 4px;
- border-bottom-left-radius: 4px;
- border-bottom-right-radius: 4px;
- }
-
- .ui-corner-right {
- -moz-border-radius-bottomright: 4px; /* LTR */
- -moz-border-radius-topright: 4px; /* LTR */
- -webkit-border-bottom-right-radius: 4px; /* LTR */
- -webkit-border-top-right-radius: 4px; /* LTR */
- border-bottom-right-radius: 4px; /* LTR */
- border-top-right-radius: 4px; /* LTR */
- }
-
- .ui-corner-left {
- -moz-border-radius-bottomleft: 4px; /* LTR */
- -moz-border-radius-topleft: 4px; /* LTR */
- -webkit-border-bottom-left-radius: 4px; /* LTR */
- -webkit-border-top-left-radius: 4px; /* LTR */
- border-bottom-left-radius: 4px; /* LTR */
- border-top-left-radius: 4px; /* LTR */
- }
-
- .ui-corner-all {
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- }
-
- /**
- * Fix the position of the core-autocomplete popup when shown in the settings
- * fieldset.
- */
- .form-item-settings-tags {
- position: relative;
- }