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
|
|
@ -79,7 +79,7 @@ td > textarea {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.io_input, .io_textarea, .io_select {
|
.input_io, .io_textarea, .io_select {
|
||||||
padding: $space_half;
|
padding: $space_half;
|
||||||
color: $color_text_io;
|
color: $color_text_io;
|
||||||
background-color: $color_back_io;
|
background-color: $color_back_io;
|
||||||
|
|
@ -114,7 +114,7 @@ td > textarea {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.io_input, .io_textarea {
|
.input_io, .io_textarea {
|
||||||
border: $border_io;
|
border: $border_io;
|
||||||
|
|
||||||
&[readonly="readonly"],
|
&[readonly="readonly"],
|
||||||
|
|
@ -149,7 +149,7 @@ button {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.io_button {
|
.button_io {
|
||||||
@extend %basic_button;
|
@extend %basic_button;
|
||||||
border: $width_border_io solid $color_border_button;
|
border: $width_border_io solid $color_border_button;
|
||||||
padding: $padding_basic;
|
padding: $padding_basic;
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,19 @@ $width_border_8: $width_border_basic * 8;
|
||||||
|
|
||||||
$radius_basic: $space_tiny * 2 !default;
|
$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
|
// IO
|
||||||
|
|
@ -177,11 +190,11 @@ $io_input_list: 'input[type="text"]',
|
||||||
'input[type="search"]',
|
'input[type="search"]',
|
||||||
'input:not([type])';
|
'input:not([type])';
|
||||||
|
|
||||||
$io_date_list: '.io_input[type="date"]',
|
$io_date_list: '.input_io[type="date"]',
|
||||||
'.io_input[type="time"]',
|
'.input_io[type="time"]',
|
||||||
'.io_input[type="datetime-local"]',
|
'.input_io[type="datetime-local"]',
|
||||||
'.io_input[type="month"]',
|
'.input_io[type="month"]',
|
||||||
'.io_input[type="week"]';
|
'.input_io[type="week"]';
|
||||||
|
|
||||||
$io_button_list: 'button',
|
$io_button_list: 'button',
|
||||||
'input[type="button"]',
|
'input[type="button"]',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue