feat: Change - to _ for selector names
This commit is contained in:
parent
89db97c358
commit
eb4349f9e5
5 changed files with 13 additions and 17 deletions
|
|
@ -302,7 +302,7 @@ div {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
&.inline {
|
&.inline {
|
||||||
@extend %flex-inline;
|
@extend %flex_inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.stretch {
|
&.stretch {
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
#mouse-overlay {
|
#mouse_overlay {
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
transition: background-color config.$duration_basic config.$timing_basic 0s !important;
|
transition: background-color config.$duration_basic config.$timing_basic 0s !important;
|
||||||
}
|
}
|
||||||
|
|
@ -244,7 +244,7 @@ header {
|
||||||
|
|
||||||
nav,
|
nav,
|
||||||
ul {
|
ul {
|
||||||
@extend %flex-inline;
|
@extend %flex_inline;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -276,7 +276,7 @@ header {
|
||||||
footer {
|
footer {
|
||||||
&.io {
|
&.io {
|
||||||
nav {
|
nav {
|
||||||
@extend %flex-inline;
|
@extend %flex_inline;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
|
||||||
input,
|
input,
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ table {
|
||||||
border: config.$width_border_basic solid transparent;
|
border: config.$width_border_basic solid transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.stripe {
|
&.striped {
|
||||||
td {
|
td {
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
|
|
@ -71,10 +71,6 @@ table {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.table_file_simple {
|
|
||||||
@extend .width_full;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.draggable tbody tr {
|
&.draggable tbody tr {
|
||||||
transition: opacity 0.2s;
|
transition: opacity 0.2s;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -163,7 +163,7 @@
|
||||||
|
|
||||||
// Flex & grid
|
// Flex & grid
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
%flex-inline {
|
%flex_inline {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
@ -172,18 +172,18 @@
|
||||||
gap: config.$space_half config.$space_basic;
|
gap: config.$space_half config.$space_basic;
|
||||||
}
|
}
|
||||||
|
|
||||||
%flex-column,
|
%flex_column,
|
||||||
%flex-row {
|
%flex_row {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
gap: config.$space_basic;
|
gap: config.$space_basic;
|
||||||
}
|
}
|
||||||
|
|
||||||
%flex-column {
|
%flex_column {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
%flex-row {
|
%flex_row {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -255,7 +255,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#mouse-overlay {
|
#mouse_overlay {
|
||||||
@extend %viewport_fixed;
|
@extend %viewport_fixed;
|
||||||
z-index: config.$z_heaven;
|
z-index: config.$z_heaven;
|
||||||
transition: background-color config.$duration_long config.$timing_basic config.$duration_long;
|
transition: background-color config.$duration_long config.$timing_basic config.$duration_long;
|
||||||
|
|
|
||||||
|
|
@ -78,13 +78,13 @@ aside {
|
||||||
header,
|
header,
|
||||||
footer {
|
footer {
|
||||||
&.io {
|
&.io {
|
||||||
@extend %flex-inline;
|
@extend %flex_inline;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
table .io nav {
|
table .io nav {
|
||||||
@extend %flex-inline;
|
@extend %flex_inline;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue