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.
71 lines
1.9 KiB
71 lines
1.9 KiB
4 years ago
|
/**
|
||
|
* @file
|
||
|
* Right-to-Left jQuery Rules UI stylesheet fix for the Seven theme.
|
||
|
*/
|
||
|
|
||
|
.ui-corner-tl {
|
||
|
-moz-border-radius-topleft: 0;
|
||
|
-webkit-border-top-left-radius: 0;
|
||
|
border-top-left-radius: 0;
|
||
|
-moz-border-radius-topright: 4px;
|
||
|
-webkit-border-top-right-radius: 4px;
|
||
|
border-top-right-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.ui-corner-tr {
|
||
|
-moz-border-radius-topright: 0;
|
||
|
-webkit-border-top-right-radius: 0;
|
||
|
border-top-right-radius: 0;
|
||
|
-moz-border-radius-topleft: 4px;
|
||
|
-webkit-border-top-left-radius: 4px;
|
||
|
border-top-left-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.ui-corner-bl {
|
||
|
-moz-border-radius-bottomleft: 0;
|
||
|
-webkit-border-bottom-left-radius: 0;
|
||
|
border-bottom-left-radius: 0;
|
||
|
-moz-border-radius-bottomright: 4px;
|
||
|
-webkit-border-bottom-right-radius: 4px;
|
||
|
border-bottom-right-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.ui-corner-br {
|
||
|
-moz-border-radius-bottomright: 0;
|
||
|
-webkit-border-bottom-right-radius: 0;
|
||
|
border-bottom-right-radius: 0;
|
||
|
-moz-border-radius-bottomleft: 4px;
|
||
|
-webkit-border-bottom-left-radius: 4px;
|
||
|
border-bottom-left-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.ui-corner-right {
|
||
|
-moz-border-radius-bottomright: 0;
|
||
|
-moz-border-radius-topright: 0;
|
||
|
-webkit-border-bottom-right-radius: 0;
|
||
|
-webkit-border-top-right-radius: 0;
|
||
|
border-bottom-right-radius: 0;
|
||
|
border-top-right-radius: 0;
|
||
|
-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-left {
|
||
|
-moz-border-radius-bottomleft: 0;
|
||
|
-moz-border-radius-topleft: 0;
|
||
|
-webkit-border-bottom-left-radius: 0;
|
||
|
-webkit-border-top-left-radius: 0;
|
||
|
border-bottom-left-radius: 0;
|
||
|
border-top-left-radius: 0;
|
||
|
-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;
|
||
|
}
|