summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/reindeer/textfield/textfield.scss
blob: 6c3d4000faa11bffa34266e4536939f5e0f9d829 (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
114
115
116
117
118
119
120
@mixin reindeer-textfield($name : v-textfield) {

/* Textfield on blue background */
.blue .#{$name},
.blue .v-textarea {
	border-color: #92a2aa;
	border-top-color: #7c8a90;
	border-bottom-color: #a1b3bc;
}
/* Default & white background */
.#{$name},
.v-textarea,
.white .#{$name},
.white .v-textarea {
	border: 1px solid #bcbdbe;
	border-top-color: #a2a3a4;
	border-bottom-color: #d2d3d4;
	background: #fff;
	background-repeat: repeat-x;
	background-image: url(img/bg.png); /** sprite-ref: verticals; sprite-alignment: repeat; sprite-margin-bottom: 22px */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin: 0;
	height: 23px;
	line-height: normal;
}
.v-textarea,
.white .v-textarea {
	background-image: none;
	height: auto;
}
/* Need more specific selector because of #2384 fixes in base/common/common.css */
&.v-app input.#{$name},
.v-window input.#{$name},
&.v-app textarea.v-textarea,
.v-window textarea.v-textarea  {
	padding: 3px 3px 4px;
}
&.v-app input.#{$name}.v-widget,
.v-window input.#{$name}.v-widget {
	height: 24px;
}
&.v-app .#{$name}-focus,
.v-window .#{$name}-focus,
.v-popupview-popup .#{$name}-focus,
&.v-app .v-textarea-focus,
.v-window .v-textarea-focus,
.v-popupview-popup .v-textarea-focus {
	border-color: #5b97d0;
	border-top-color: #4f83b4;
	border-bottom-color: #5ca0df;
	outline: none;
	background-color: #fff;
}
input.#{$name}-prompt,
textarea.v-textarea-prompt {
	font-style: normal;
	color: #999;
}
/* Small style textfield */
&.v-app input.#{$name}-small {
	font-size: 11px;
	line-height: normal;
	height: auto;
	padding: 2px;
}
&.v-app textarea.v-textarea-small {
	font-size: 11px;
}
&.v-app .v-table  input.#{$name}.v-widget,
.v-window .v-table input.#{$name}.v-widget {
	padding: 1px 2px;
	height: auto;
	line-height: normal;
}
.v-table-cell-wrapper > input.#{$name} {
	margin-top: -2px;
	margin-bottom: -2px;
}
/* Textfield on black background */
.black .#{$name},
.black .v-textarea {
	border-color: #38393a;
	border-top-color: #2c2d2e;
	border-bottom-color: #3e3f3f;
	background: #151717;
	background-image: url(img/bg-black.png); /** sprite-ref: black-verticals; sprite-alignment: repeat; sprite-margin-bottom: 22px */
	color: #c9ccce;
	text-shadow: #000 0 0 1px;
}
.black .v-textarea {
	background-image: none;
}
&.v-app .black .#{$name}-focus,
.v-window-black .#{$name}-focus,
.v-window .black .#{$name}-focus,
.v-popupview-popup .black .#{$name}-focus,
&.v-app .black .v-textarea-focus,
.v-window-black .v-textarea-focus,
.v-window .black .v-textarea-focus,
.v-popupview-popup .black .v-textarea-focus {
	border-color: #4b7192;
	border-top-color: #3b5a75;
	border-bottom-color: #507596;
	background-color: #151717;
}
.black input.#{$name}-prompt {
	color: #5f6366;
}
/* Readonly */
input.#{$name}-readonly,
.black input.#{$name}-readonly,
textarea.v-textarea-readonly,
.black textarea.v-textarea-readonly {
	border: none;
	background: transparent;
}

}