Compare commits

..

No commits in common. "530748663f02ac15597c78843a12cd1f9973c4c9" and "0623e818a49176ca7516a88943e07a882ba5262d" have entirely different histories.

3 changed files with 25 additions and 24 deletions

View file

@ -101,10 +101,7 @@ tfoot {
// Row // Row
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
tr { tr {
&.active {
color: config.$color_highlight_basic;
background-color: config.$color_action_basic;
}
} }
// Cells // Cells
@ -112,10 +109,6 @@ tr {
th, td { th, td {
@extend %basic; @extend %basic;
padding: config.$space_half; padding: config.$space_half;
&.rigid {
white-space: nowrap;
}
} }
th { th {

View file

@ -11,6 +11,25 @@
// General classes // General classes
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
%size_content {
box-sizing: content-box;
}
%size_content_solo {
@extend %size_content;
*,
::before,
::after {
box-sizing: config.$box_sizing;
}
}
%size_io_button {
border: config.$width_border_io solid transparent;
padding: config.$padding_basic;
}
.di_none { .di_none {
display: none !important; display: none !important;
} }

View file

@ -23,30 +23,19 @@ footer {
nav label, nav label,
.a_button { .a_button {
@extend %basic; @extend %basic;
border: config.$width_border_io solid transparent; @extend %size_io_button;
padding: config.$padding_basic;
} }
.a_button { .a_button {
@extend .button_io; @extend .button_io;
} }
.group-input { .group {
display: flex; display: flex;
flex-flow: row nowrap; flex-flow: row nowrap;
} }
.group-input-wrap { input:not([type="range"]) {
border: config.$width_border_io solid transparent;
padding: config.$padding_basic;
background-color: config.$color_back_io;
& > input {
margin: 0;
}
}
input:not([type="checkbox"], [type="range"]) {
@extend .input_io; @extend .input_io;
} }