feat: Rename io classes
This leads to more renaming. - io_input is now input_io - io_button is now button_io
This commit is contained in:
parent
a1a4bd408b
commit
3eab0f0956
2 changed files with 21 additions and 8 deletions
|
|
@ -157,6 +157,19 @@ $width_border_8: $width_border_basic * 8;
|
|||
|
||||
$radius_basic: $space_tiny * 2 !default;
|
||||
|
||||
$z-indexes: (
|
||||
"default": 0,
|
||||
"content-bottom": 1,
|
||||
"content-low": 2,
|
||||
"content-med": 3,
|
||||
"content-high": 4,
|
||||
"content-top": 10,
|
||||
"modal-low": 11,
|
||||
"modal-med": 12,
|
||||
"modal-high": 13,
|
||||
"toast": 100
|
||||
);
|
||||
|
||||
|
||||
|
||||
// IO
|
||||
|
|
@ -177,11 +190,11 @@ $io_input_list: 'input[type="text"]',
|
|||
'input[type="search"]',
|
||||
'input:not([type])';
|
||||
|
||||
$io_date_list: '.io_input[type="date"]',
|
||||
'.io_input[type="time"]',
|
||||
'.io_input[type="datetime-local"]',
|
||||
'.io_input[type="month"]',
|
||||
'.io_input[type="week"]';
|
||||
$io_date_list: '.input_io[type="date"]',
|
||||
'.input_io[type="time"]',
|
||||
'.input_io[type="datetime-local"]',
|
||||
'.input_io[type="month"]',
|
||||
'.input_io[type="week"]';
|
||||
|
||||
$io_button_list: 'button',
|
||||
'input[type="button"]',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue