mediawiki-skins-Citizen/resources/skins.citizen.styles/common/common.less

136 lines
2 KiB
Plaintext
Raw Normal View History

2019-08-15 17:40:13 +00:00
/*
* Framework
*/
html {
// Not ideal but it works
scroll-padding-top: 6rem;
2019-08-15 17:40:13 +00:00
}
html,
body {
min-height: 100vh;
2020-02-06 19:44:22 +00:00
padding: 0;
margin: 0;
accent-color: var( --color-primary );
background: var( --color-surface-0 );
color: var( --color-base );
2019-08-15 17:40:13 +00:00
}
:focus {
outline-color: var( --color-primary );
}
input,
select,
textarea {
2021-07-27 19:58:55 +00:00
border: 1px solid var( --border-color-base );
background-color: var( --color-surface-1 );
color: inherit;
}
2019-08-15 17:40:13 +00:00
textarea {
2020-02-06 19:44:22 +00:00
width: 100%;
}
2022-11-24 01:52:44 +00:00
label {
color: var( --color-base--subtle );
font-size: 0.875rem;
}
blockquote {
margin: var( --space-md );
2021-02-21 05:43:39 +00:00
color: var( --color-base--subtle );
2020-02-06 19:44:22 +00:00
cite {
display: block;
margin-top: var( --space-sm );
&:before {
2020-02-06 19:56:27 +00:00
content: '— ';
}
2020-02-06 19:44:22 +00:00
}
2019-08-15 17:40:13 +00:00
}
2021-06-10 23:26:05 +00:00
sup,
sub {
line-height: 1;
}
2019-08-15 17:40:13 +00:00
td {
2020-02-06 19:44:22 +00:00
> p,
> ul,
> ol {
&:first-child {
margin-top: 0; // Remove margin for the first element in td
}
}
2019-08-15 17:40:13 +00:00
}
2019-12-11 05:53:49 +00:00
.nowrap {
2020-02-06 19:44:22 +00:00
white-space: nowrap;
2019-12-11 05:53:49 +00:00
}
2019-08-15 17:40:13 +00:00
/*
* Content
*/
.mw-body,
.parsoid-body {
2020-02-06 19:44:22 +00:00
direction: ltr;
2019-08-15 17:40:13 +00:00
}
// TODO: Think of better places to put indicators;
2020-06-12 17:44:24 +00:00
.mw-indicators {
display: flex;
align-items: center;
2021-01-26 20:38:27 +00:00
padding-left: 10px;
border-left: 1px solid var( --border-color-base );
margin-left: 10px;
font-size: 0.875rem;
2020-06-12 17:44:24 +00:00
}
2020-02-06 19:44:22 +00:00
2021-03-13 17:57:59 +00:00
video {
max-width: 100%; // Prevent overflow
}
.skin-citizen-dark {
color-scheme: dark;
2021-01-26 20:38:27 +00:00
.mw-indicator {
filter: invert( 1 ) hue-rotate( 180deg );
// Have to hardcode the color since the filter breaks the color
a {
color: @color-primary;
&:hover {
color: @color-primary--hover;
}
&:active {
color: @color-primary--active;
}
}
2021-01-26 20:38:27 +00:00
}
}
@media ( max-width: @width-breakpoint-tablet ) {
.mw-body,
.parsoid-body {
overflow-x: hidden; // fallback if clip is not supported
overflow-x: clip; // avoid breaking layout in smaller screen sizes
}
table {
display: block;
}
}
@media ( min-width: @width-breakpoint-tablet ) {
// Delay scroll animation won't happen on load
// Use it only for larger viewport as it is very costly
// on mobile devices
html.citizen-animations-ready {
scroll-behavior: smooth;
}
}