mediawiki-skins-Citizen/skinStyles/jquery/ui.less

175 lines
3.9 KiB
Plaintext
Raw Normal View History

2019-12-30 19:59:22 +00:00
/*
* Citizen - jQuery UI Smoothness Theme
* https://starcitizen.tools
*/
2021-03-07 03:22:51 +00:00
/*!
* jQuery UI CSS Framework 1.9.2
*/
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
/* Component containers
---------------------------------- */
2021-03-07 03:22:51 +00:00
.ui {
&-dialog {
box-shadow: var( --box-shadow-drop-xx-large );
2019-12-30 19:59:22 +00:00
.ui-dialog-titlebar {
padding: var( --space-md );
}
2021-03-07 03:22:51 +00:00
&.ui-widget-content {
background: var( --color-surface-1 );
border-radius: var( --border-radius-medium );
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
}
2021-03-07 03:22:51 +00:00
&-widget {
font-family: var( --font-family-base );
font-size: var( --font-size-small );
2019-12-30 19:59:22 +00:00
/* Align with Codex styles */
input,
select,
textarea {
padding: var( --space-xxs ) var( --space-xs );
/* FIXME: Replace with line-height-small when we import Codex line height */
line-height: var( --line-height-sm );
color: var( --color-emphasized );
// Show background when hovered
background-color: transparent;
border-color: var( --border-color-interactive );
&:hover {
background-color: var( --color-surface-0 );
border-color: var( --color-progressive--hover );
}
&:focus {
background-color: var( --color-surface-0 );
border-color: var( --color-progressive );
outline: 0;
box-shadow: inset 0 0 0 1px var( --color-progressive );
}
}
2021-03-07 03:22:51 +00:00
input,
select,
textarea,
button {
font-family: var( --font-family-base );
border-radius: var( --border-radius-base );
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
&-content {
color: var( --color-base );
background: var( --color-surface-2 );
border-color: var( --border-color-base );
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
&-header {
font-size: 1rem;
font-weight: var( --font-weight-semibold );
color: var( --color-emphasized );
background: var( --color-surface-2--hover );
border: 0;
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
}
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
/* Interaction states
---------------------------------- */
2021-03-07 03:22:51 +00:00
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
font-weight: var( --font-weight-medium );
2021-03-07 03:22:51 +00:00
color: var( --color-base );
background: var( --color-surface-2 );
border-color: var( --border-color-base );
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
color: var( --color-base );
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
color: var( --color-emphasized );
background: var( --color-surface-2--hover );
border-color: transparent;
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
color: var( --color-emphasized );
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
color: var( --color-subtle );
background: var( --color-surface-2--active );
border-color: var( --color-surface-2--active );
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
color: var( --color-subtle );
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
/* Interaction Cues
---------------------------------- */
2021-03-07 03:22:51 +00:00
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
color: var( --color-progressive );
background: var( --background-color-progressive-subtle );
border-color: var( --border-color-base );
2021-03-07 03:22:51 +00:00
}
2019-12-30 19:59:22 +00:00
2021-03-07 03:22:51 +00:00
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
color: var( --color-progressive );
2021-03-07 03:22:51 +00:00
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
color: var( --color-destructive );
2024-07-01 03:50:21 +00:00
background: var( --background-color-destructive-subtle );
border-color: var( --border-color-base );
2021-03-07 03:22:51 +00:00
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
color: var( --color-destructive );
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
color: var( --color-destructive );
}
/* Overlays */
.ui-widget-overlay {
background: var( --background-color-backdrop-light );
2021-03-07 03:22:51 +00:00
opacity: 1;
}
2019-12-30 20:02:53 +00:00
.skin-theme-clientpref-night {
2019-12-30 20:02:53 +00:00
.ui-widget-header .ui-icon {
filter: invert( 1 ) hue-rotate( 180deg );
2019-12-30 20:02:53 +00:00
}
2019-12-30 19:59:22 +00:00
}