미디어위키:Gadget-Shortdesc-helper.css

항공위키

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
  • 오페라: Ctrl-F5를 입력.
/*  _____________________________________________________________________________
 * |                                                                             |
 * |                    === WARNING: GLOBAL GADGET FILE ===                      |
 * |                  Changes to this page affect many users.                    |
 * | Please discuss changes on the talk page or on [[WT:Gadget]] before editing. |
 * |_____________________________________________________________________________|
 *
 */
/* v3.4.5 */

/* Stylings for missing description and links to wikidata */
.sdh-missing-description {
	color: DarkRed; /* Using DarkRed rather than previous Red to meet WCAG AA */
}

.sdh-wikidata-description a {
	color: MediumVioletRed; /* Using MediumVioletRed rather than previous HotPink to meet WCAG AA */
}

/**
 * Interestingly, Vector's stylesheet makes <a> elements without href have a pointer automatically
 * This is for other skins.
*/
.sdh-clicky a {
	cursor: pointer;
}

.sdh-clicky-disabled a {
	pointer-events: none;
}

/* Brackets and seperators for clickies */
.sdh-clicky + .sdh-clicky::before {
	content: ' · ';
}

.sdh-clickies::before {
	content: ' (';
}

.sdh-clickies::after {
	content: ')';
}

/* Used to hide display of description when switching to editing box */
.sdh-showdescrip-hidden {
	display: none;
}

/* Styling for editing bar */
#sdh-editbox {
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100% /* Fix for Firefox so that element fills the max-width */
}

/* Styling for processing animation */
@keyframes wave {
	0% { transform: translateY( 0 ); }
	20% { transform: translateY( -0.25em ); }
	40% { transform: translateY( 0 ); }
	100% { transform: translateY( 0 ); }
}

.sdh-processing {
	display: inline-block;
	margin-left: 0.5em;
}

.sdh-processing-dot {
	display: inline-block;
	animation: wave 1s ease-out infinite;
}

.sdh-processing-dot-1 {
	animation-delay: 200ms;
}

.sdh-processing-dot-2 {
	animation-delay: 400ms;
}

.sdh-processing-dot-3 {
	animation-delay: 600ms;
}