feat: Additional content and style for table screen
- More columns with placeholder content - Special styles for textarea and td - New style for io module
This commit is contained in:
parent
4e4f8814d3
commit
0623e818a4
3 changed files with 26 additions and 1 deletions
|
|
@ -219,6 +219,9 @@ option {
|
||||||
// Textarea
|
// Textarea
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
textarea {
|
textarea {
|
||||||
|
&.fit {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.io_textarea {
|
.io_textarea {
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@
|
||||||
// th
|
// th
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Table
|
// Table
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
table {
|
table {
|
||||||
|
|
@ -120,6 +119,19 @@ th {
|
||||||
td {
|
td {
|
||||||
border-right: config.$border_basic;
|
border-right: config.$border_basic;
|
||||||
border-bottom: config.$border_basic;
|
border-bottom: config.$border_basic;
|
||||||
|
|
||||||
|
&.unit {
|
||||||
|
text-align: right;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.ellipsis {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
td:last-child {
|
td:last-child {
|
||||||
|
|
|
||||||
|
|
@ -71,3 +71,13 @@ footer {
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table .io nav {
|
||||||
|
@extend %flex-inline;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
align-items: stretch;
|
||||||
|
|
||||||
|
button {
|
||||||
|
margin: config.$margin_io;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue