Compare commits
3 commits
b4c5632006
...
b42c8cdd7e
| Author | SHA1 | Date | |
|---|---|---|---|
| b42c8cdd7e | |||
| eb4349f9e5 | |||
| 89db97c358 |
5 changed files with 45 additions and 29 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;
|
||||||
|
|
@ -54,8 +54,21 @@ table {
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.table_file_simple {
|
&.flexible {
|
||||||
@extend .width_full;
|
tr {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row nowrap;
|
||||||
|
align-items: stretch;
|
||||||
|
|
||||||
|
&:last-child td {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.truncate {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.draggable tbody tr {
|
&.draggable tbody tr {
|
||||||
|
|
@ -192,6 +205,12 @@ th, td {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.pre {
|
||||||
|
// border-right-width: $width_border_4;
|
||||||
|
// border-right-color: color.scale($color_back_basic, $lightness: $color_diff_basic);
|
||||||
|
background-color: color.scale(config.$color_back_basic, $lightness: config.$color_diff_tiny);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
|
|
@ -213,8 +232,6 @@ td {
|
||||||
}
|
}
|
||||||
|
|
||||||
&.ellipsis {
|
&.ellipsis {
|
||||||
width: 100%;
|
|
||||||
max-width: 0;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
@ -234,7 +251,6 @@ td {
|
||||||
max-height: 44px;
|
max-height: 44px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
td:last-child {
|
td:last-child {
|
||||||
|
|
@ -244,9 +260,3 @@ td:last-child {
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cell_pre {
|
|
||||||
// border-right-width: $width_border_4;
|
|
||||||
// border-right-color: color.scale($color_back_basic, $lightness: $color_diff_basic);
|
|
||||||
background-color: color.scale(config.$color_back_basic, $lightness: config.$color_diff_tiny);
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -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,17 +78,23 @@ aside {
|
||||||
header,
|
header,
|
||||||
footer {
|
footer {
|
||||||
&.io {
|
&.io {
|
||||||
@extend %flex-inline;
|
@extend %flex_inline;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
table .io nav {
|
table {
|
||||||
@extend %flex-inline;
|
.io nav {
|
||||||
flex-wrap: nowrap;
|
@extend %flex_inline;
|
||||||
align-items: stretch;
|
flex-wrap: nowrap;
|
||||||
|
align-items: stretch;
|
||||||
|
|
||||||
button {
|
button {
|
||||||
margin: config.$margin_io;
|
margin: config.$margin_io;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.io:last-child nav {
|
||||||
|
justify-content: flex-end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue