2021-03-07 20:19:18 +00:00
|
|
|
@import '../../../resources/variables.less';
|
2021-03-07 19:55:48 +00:00
|
|
|
|
2021-03-07 20:19:18 +00:00
|
|
|
.skin-citizen {
|
|
|
|
.mw-dismissable-notice {
|
|
|
|
&-close {
|
|
|
|
font-size: 0; // hide brackets
|
2021-03-07 19:55:48 +00:00
|
|
|
|
2021-03-07 20:19:18 +00:00
|
|
|
> a {
|
|
|
|
display: block;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
display: block;
|
|
|
|
color: var( --color-base );
|
|
|
|
content: '\00d7'; // close icon
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 1;
|
|
|
|
text-align: center;
|
2022-05-01 23:14:17 +00:00
|
|
|
transition: @transition-color;
|
2021-03-07 20:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
&:before {
|
|
|
|
color: var( --color-base--emphasized );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
&:before {
|
|
|
|
color: var( --color-base--subtle );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-body {
|
|
|
|
// Default has top and bottom margin
|
|
|
|
// So bottom margin is added to respect it
|
2022-11-16 23:06:23 +00:00
|
|
|
margin: 0 0 var( --space-md ) 0;
|
2021-03-07 20:19:18 +00:00
|
|
|
}
|
2021-03-07 19:55:48 +00:00
|
|
|
}
|
|
|
|
}
|