summaryrefslogtreecommitdiff
path: root/www/wiki/skins/Vector/components/search.less
blob: 308d557c842086ce45f9aadf6f2330f05f491463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import 'mediawiki.mixins';
@import 'mediawiki.ui/variables';

/* Search */
#p-search {
	float: left;
	margin-right: 0.5em;
	margin-left: 0.5em;

	h3 {
		.mixin-screen-reader-text;
	}

	form,
	input {
		margin: 0.4em 0 0;
	}
}

#simpleSearch {
	background-color: #fff;
	.background-image( 'images/search-fade.png' );
	background-position: top left;
	background-repeat: repeat-x;
	color: #000;
	display: block;
	width: 12.6em;
	width: 20vw; /* responsive width */
	min-width: 5em;
	max-width: 20em;
	padding-right: 1.4em;
	height: 1.4em;
	margin-top: 0.65em;
	position: relative;
	min-height: 1px; /* Gotta trigger hasLayout for IE7 */
	border: 1px solid @colorGray10;
	border-radius: @borderRadius;
	.transition( border-color 250ms );

	&:hover {
		border-color: @colorGray7;
	}

	// Styles for both the search input and the button
	input {
		background-color: transparent;
		color: #000;
		margin: 0;
		padding: 0;
		border: 0;
	}

	// The search input
	#searchInput {
		width: 100%;
		padding: 0.2em 0 0.2em 0.2em;
		font-size: 13px;
		direction: ltr;

		&:focus {
			outline: 0;
		}

		/* stylelint-disable indentation */
		.mixin-placeholder( {
			color: @colorGray7;
			opacity: 1;
		} );
		/* stylelint-enable indentation */

		// Undo the styles Webkit browsers apply to type=search fields,
		// we provide our own
		-webkit-appearance: textfield;

		&::-webkit-search-decoration,
		&::-webkit-search-cancel-button,
		&::-webkit-search-results-button,
		&::-webkit-search-results-decoration {
			-webkit-appearance: textfield;
		}
	}

	// The buttons. They are displayed in the same position, and if both are
	// present the fulltext search one obscures the 'Go' one.
	#searchButton,
	#mw-searchButton {
		position: absolute;
		top: 0;
		right: 0;
		width: 1.65em;
		height: 100%;
		cursor: pointer;
		/* Hide button text and replace it with the image. */
		text-indent: -99999px;
		/* Needed to make IE6 respect the text-indent. */
		line-height: 1;
		/* Opera 12 on RTL flips the text in a funny way without this. */
		/* @noflip */
		direction: ltr;
		white-space: nowrap;
		overflow: hidden;
	}

	#searchButton {
		.background-image-svg( 'images/search-ltr.svg', 'images/search-ltr.png' );
		background-position: center center;
		background-repeat: no-repeat;
	}

	#mw-searchButton {
		z-index: 1;
	}
}