Compare commits
No commits in common. "530748663f02ac15597c78843a12cd1f9973c4c9" and "0623e818a49176ca7516a88943e07a882ba5262d" have entirely different histories.
530748663f
...
0623e818a4
3 changed files with 25 additions and 24 deletions
|
|
@ -101,10 +101,7 @@ tfoot {
|
|||
// Row
|
||||
// -----------------------------------------------------------------------------
|
||||
tr {
|
||||
&.active {
|
||||
color: config.$color_highlight_basic;
|
||||
background-color: config.$color_action_basic;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Cells
|
||||
|
|
@ -112,10 +109,6 @@ tr {
|
|||
th, td {
|
||||
@extend %basic;
|
||||
padding: config.$space_half;
|
||||
|
||||
&.rigid {
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
th {
|
||||
|
|
|
|||
|
|
@ -11,6 +11,25 @@
|
|||
|
||||
// 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 {
|
||||
display: none !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,30 +23,19 @@ footer {
|
|||
nav label,
|
||||
.a_button {
|
||||
@extend %basic;
|
||||
border: config.$width_border_io solid transparent;
|
||||
padding: config.$padding_basic;
|
||||
@extend %size_io_button;
|
||||
}
|
||||
|
||||
.a_button {
|
||||
@extend .button_io;
|
||||
}
|
||||
|
||||
.group-input {
|
||||
.group {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
}
|
||||
|
||||
.group-input-wrap {
|
||||
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"]) {
|
||||
input:not([type="range"]) {
|
||||
@extend .input_io;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue