Using `inherit` is IMHO more expressive since it means "use the color of
the parent element".
This is particularly useful for CONSUL installations using custom
styles. Consider the following code:
```
h2 {
color: $white;
a {
color: $white;
}
}
```
If we'd like to customize the way headings look, we'd have to override
two colors:
```
h2 {
color: $red;
a {
color: $red;
}
}
```
Consider the scenario where we use `inherit`:
```
h2 {
color: $white;
a {
color: inherit;
}
}
```
Now we only need to override one color to change the styles:
```
h2 {
color: $red;
}
```
101 lines
1.4 KiB
SCSS
101 lines
1.4 KiB
SCSS
// Overrides styles of jquery-ui/datepicker
|
|
//
|
|
|
|
.ui-datepicker-header {
|
|
@extend %brand-background;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.ui-datepicker-calendar {
|
|
|
|
.ui-state-default {
|
|
background: $highlight;
|
|
color: $text;
|
|
}
|
|
|
|
.ui-state-hover,
|
|
.ui-state-active {
|
|
@extend %brand-background;
|
|
}
|
|
|
|
thead {
|
|
|
|
tr th {
|
|
border: 1px solid $brand;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui-datepicker {
|
|
padding: 0;
|
|
z-index: 4 !important;
|
|
|
|
.ui-datepicker-prev,
|
|
.ui-datepicker-next {
|
|
color: inherit;
|
|
cursor: pointer;
|
|
font-family: "icons" !important;
|
|
font-size: rem-calc(24);
|
|
font-weight: normal;
|
|
height: rem-calc(30);
|
|
line-height: $line-height;
|
|
position: absolute;
|
|
top: 4px;
|
|
width: rem-calc(30);
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.ui-datepicker-prev::after {
|
|
content: "\62";
|
|
}
|
|
|
|
.ui-datepicker-next::after {
|
|
content: "\63";
|
|
}
|
|
|
|
table {
|
|
border: 1px solid $border;
|
|
border-top: 0;
|
|
}
|
|
|
|
tr {
|
|
border-bottom: 1px solid $border;
|
|
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
&:nth-child(odd) {
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
td {
|
|
padding: 0;
|
|
border-right: 1px solid $border;
|
|
|
|
&:last-child {
|
|
border-right: 0;
|
|
}
|
|
|
|
span,
|
|
a {
|
|
text-align: center;
|
|
line-height: $line-height;
|
|
color: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui-datepicker-unselectable.ui-state-disabled {
|
|
background: #fff;
|
|
|
|
.ui-state-default {
|
|
background: #f8f8f8;
|
|
color: $text-medium;
|
|
}
|
|
}
|