55 lines
809 B
SCSS
55 lines
809 B
SCSS
|
|
.tableexport-caption {
|
|
display: table-caption;
|
|
padding:0;
|
|
margin-bottom:15px;
|
|
.btn{
|
|
line-height: 1;
|
|
background-color: $primary;
|
|
color:#fff;
|
|
padding: 9px 10px;
|
|
margin:0;
|
|
margin-right:10px;
|
|
&:first-child{
|
|
margin-left:0px;
|
|
}
|
|
&.xlsx{
|
|
&:before{
|
|
background:url('../img/export/xlsx.svg') no-repeat center;
|
|
}
|
|
}
|
|
&.csv{
|
|
&:before{
|
|
background:url('../img/export/csv.svg') no-repeat center;
|
|
}
|
|
}
|
|
&.txt{
|
|
&:before{
|
|
background:url('../img/export/txt.svg') no-repeat center;
|
|
}
|
|
}
|
|
&:focus{
|
|
box-shadow:none;
|
|
}
|
|
|
|
@include mobile-portrait-sm {
|
|
margin:0 0 5px 0;
|
|
}
|
|
@include mobile-portrait-xs {
|
|
margin:0 0 5px 0;
|
|
}
|
|
}
|
|
}
|
|
.csv, .txt, .xls, .xlsx{
|
|
&:before{
|
|
box-shadow:none;
|
|
padding: 4px 10px 4px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|