Added scss

This commit is contained in:
CHIEFSOFT\ameye
2024-12-05 10:41:45 -05:00
parent a0cf6db4b8
commit f023f1d77c
170 changed files with 32386 additions and 2 deletions
+54
View File
@@ -0,0 +1,54 @@
.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;
}
}