2018-06-28 12:43:59 +00:00
|
|
|
@import "effects";
|
2019-02-10 21:52:35 +00:00
|
|
|
@import "variables";
|
2018-06-28 12:43:59 +00:00
|
|
|
|
|
|
|
vn-table {
|
2019-01-27 23:26:01 +00:00
|
|
|
display: block;
|
2018-06-28 12:43:59 +00:00
|
|
|
width: 100%;
|
2019-11-14 14:05:56 +00:00
|
|
|
overflow: auto;
|
2019-10-11 15:38:04 +00:00
|
|
|
}
|
|
|
|
.vn-table {
|
|
|
|
width: 100%;
|
|
|
|
display: table;
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
|
|
& > vn-thead,
|
|
|
|
& > thead {
|
|
|
|
display: table-header-group;
|
2020-04-02 12:52:02 +00:00
|
|
|
border-bottom: 2px solid $color-spacer;
|
2018-06-28 12:43:59 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
& > * > th {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
& > * > vn-th[field] {
|
|
|
|
position: relative;
|
|
|
|
overflow: visible;
|
|
|
|
cursor: pointer;
|
2018-06-28 12:43:59 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
&.active > :after {
|
|
|
|
color: $color-font;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
&.desc > :after {
|
|
|
|
content: 'arrow_drop_down';
|
|
|
|
}
|
|
|
|
&.asc > :after {
|
|
|
|
content: 'arrow_drop_up';
|
|
|
|
}
|
|
|
|
& > :after {
|
|
|
|
font-family: 'Material Icons';
|
|
|
|
content: 'arrow_drop_down';
|
|
|
|
position: absolute;
|
|
|
|
color: $color-spacer;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
&:hover > :after {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
& > vn-tbody,
|
|
|
|
& > tbody {
|
|
|
|
display: table-row-group;
|
|
|
|
}
|
|
|
|
& > vn-tfoot,
|
|
|
|
& > tfoot {
|
2020-04-02 12:52:02 +00:00
|
|
|
border-top: 2px solid $color-spacer;
|
2019-10-11 15:38:04 +00:00
|
|
|
display: table-footer-group
|
|
|
|
}
|
|
|
|
& > * > vn-tr,
|
|
|
|
& > * > a.vn-tr,
|
|
|
|
& > * > tr {
|
|
|
|
display: table-row;
|
2020-04-02 12:20:57 +00:00
|
|
|
height: 48px;
|
2019-10-11 15:38:04 +00:00
|
|
|
}
|
|
|
|
vn-thead, vn-tbody, vn-tfoot,
|
|
|
|
thead, tbody, tfoot {
|
|
|
|
& > * {
|
|
|
|
display: table-row;
|
2018-06-28 12:43:59 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
& > vn-th,
|
|
|
|
& > th {
|
|
|
|
color: $color-font-light;
|
2020-04-02 12:20:57 +00:00
|
|
|
padding-top: 16px;
|
|
|
|
padding-bottom: 12px;
|
2019-10-11 15:38:04 +00:00
|
|
|
}
|
|
|
|
& > vn-th,
|
|
|
|
& > vn-td,
|
|
|
|
& > th,
|
|
|
|
& > td {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
& > vn-th,
|
|
|
|
& > vn-td,
|
|
|
|
& > vn-td-editable,
|
|
|
|
& > th,
|
|
|
|
& > td {
|
|
|
|
vertical-align: middle;
|
|
|
|
display: table-cell;
|
|
|
|
text-align: left;
|
2020-04-02 12:20:57 +00:00
|
|
|
padding: 9px 8px;
|
2019-10-11 15:38:04 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2020-04-02 12:20:57 +00:00
|
|
|
max-width: 80px;
|
2019-02-10 21:52:35 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
&[number] {
|
|
|
|
text-align: right;
|
2020-04-02 12:20:57 +00:00
|
|
|
width: 96px;
|
2019-02-10 21:52:35 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
&[center] {
|
|
|
|
text-align: center;
|
2019-02-10 21:52:35 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
&[shrink] {
|
|
|
|
width: 1px;
|
|
|
|
text-align: center;
|
2019-02-10 21:52:35 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
&[expand] {
|
2020-04-02 12:52:02 +00:00
|
|
|
max-width: 400px;
|
2019-10-11 15:38:04 +00:00
|
|
|
min-width: 0;
|
2019-02-10 21:52:35 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
vn-icon.bright, i.bright {
|
|
|
|
color: #f7931e;
|
2019-02-10 21:52:35 +00:00
|
|
|
}
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
& > :last-child {
|
2020-04-02 12:52:02 +00:00
|
|
|
padding-right: 22px;
|
2019-10-11 15:38:04 +00:00
|
|
|
}
|
|
|
|
& > :first-child {
|
2020-04-02 12:52:02 +00:00
|
|
|
padding-left: 22px;
|
2019-10-11 15:38:04 +00:00
|
|
|
}
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
& > a.vn-tr {
|
|
|
|
color: inherit;
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
}
|
|
|
|
vn-tbody > *,
|
|
|
|
tbody > * {
|
2020-04-02 12:20:57 +00:00
|
|
|
border-bottom: 1px solid $color-spacer-light;
|
2019-10-11 15:38:04 +00:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none;
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
&.clickable {
|
|
|
|
@extend %clickable;
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
& > vn-td,
|
|
|
|
& > td {
|
|
|
|
.chip {
|
2020-04-02 12:20:57 +00:00
|
|
|
padding: 4px;
|
|
|
|
border-radius: 4px;
|
2019-10-11 15:38:04 +00:00
|
|
|
color: $color-font-bg;
|
2019-02-13 13:01:37 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
&.notice {
|
|
|
|
background-color: $color-notice-medium
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
&.success {
|
|
|
|
background-color: $color-success-medium;
|
2019-07-02 10:12:15 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
&.warning {
|
|
|
|
background-color: $color-main-medium;
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
&.alert {
|
|
|
|
background-color: $color-alert-medium;
|
2019-02-10 21:52:35 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
&.message {
|
|
|
|
color: $color-font-dark;
|
|
|
|
background-color: $color-bg-dark
|
2019-02-10 21:52:35 +00:00
|
|
|
}
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
vn-icon-menu {
|
2019-07-15 09:40:11 +00:00
|
|
|
display: inline-block;
|
|
|
|
color: $color-main;
|
2020-04-02 12:52:02 +00:00
|
|
|
padding: 4px
|
2019-07-15 09:40:11 +00:00
|
|
|
}
|
2019-10-11 15:38:04 +00:00
|
|
|
}
|
|
|
|
& > [actions] {
|
|
|
|
width: 1px;
|
2019-07-15 09:40:11 +00:00
|
|
|
|
2019-10-11 15:38:04 +00:00
|
|
|
& > * {
|
|
|
|
vertical-align: middle;
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-20 08:22:07 +00:00
|
|
|
}
|
2019-10-28 16:31:33 +00:00
|
|
|
.vn-textfield {
|
2018-12-20 08:22:07 +00:00
|
|
|
float: right;
|
|
|
|
margin: 0!important;
|
|
|
|
}
|
2019-10-28 16:31:33 +00:00
|
|
|
.vn-check {
|
2019-02-22 07:52:30 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
2018-06-28 12:43:59 +00:00
|
|
|
}
|