479326ad87009aa69668e240285a9156e42f9615
[wolnelektury.git] / src / wolnelektury / static / 2021 / css / utils / bourbon / helpers / _text-inputs-list.scss
1 @charset "UTF-8";
2
3 /// A list of all _text-based_ HTML inputs.
4 ///
5 /// @type list
6 ///
7 /// @access private
8
9 $_text-inputs-list: (
10   "[type='color']",
11   "[type='date']",
12   "[type='datetime']",
13   "[type='datetime-local']",
14   "[type='email']",
15   "[type='month']",
16   "[type='number']",
17   "[type='password']",
18   "[type='search']",
19   "[type='tel']",
20   "[type='text']",
21   "[type='time']",
22   "[type='url']",
23   "[type='week']",
24   "input:not([type])",
25   "textarea",
26 );