96 lines
2.0 KiB
CSS
96 lines
2.0 KiB
CSS
/**
|
|
* JQuery UI style sheet 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;
|
|
-webkit-border-top-left-radius: 4px;
|
|
border-top-left-radius: 4px;
|
|
}
|
|
|
|
.ui-corner-tr {
|
|
-moz-border-radius-topright: 4px;
|
|
-webkit-border-top-right-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
.ui-corner-bl {
|
|
-moz-border-radius-bottomleft: 4px;
|
|
-webkit-border-bottom-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
|
|
.ui-corner-br {
|
|
-moz-border-radius-bottomright: 4px;
|
|
-webkit-border-bottom-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
|
|
.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;
|
|
-moz-border-radius-topright: 4px;
|
|
-webkit-border-bottom-right-radius: 4px;
|
|
-webkit-border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
.ui-corner-left {
|
|
-moz-border-radius-bottomleft: 4px;
|
|
-moz-border-radius-topleft: 4px;
|
|
-webkit-border-bottom-left-radius: 4px;
|
|
-webkit-border-top-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
border-top-left-radius: 4px;
|
|
}
|
|
|
|
.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;
|
|
}
|